- Oct 15, 2021
- 2,543
- 4,147
Afaik there is no "Trait" section, it is called "Stats". If you enable "Flat/Rate Trait Boost" option it allows editing values in "Stats" section.Interesting, where can I access the trait section from?
Edicts are inI am trying to make the research combat edicts be available from the start without needing to clear floor 2.
RemtairyEdicts.js
. You should be able to do it by changing a little bit of a code, for example, this:
Code:
Game_Actor.prototype.showLevelTwoSubjugatedEdicts = function() {
return !Prison.prisonLevelTwoIsUnknown() && !Prison.prisonLevelTwoIsAnarchy();
};
Code:
Game_Actor.prototype.showLevelTwoSubjugatedEdicts = function() {
return true;
};