- Joined
- Nov 3, 2015
- Messages
- 14
- Reaction score
- 7
- First Language
- English
- Primarily Uses
Just a small thing I did in case anybody is interested. Inspired by the Fire Emblem skill 'Lucky Seven' (increase accuracy and avoid during the first 7 turns of battle), I made my own state. I had to look into the rpg_objects.js to find the turn code. This skill makes it so the user regenerates Health and TP during the first 7 turns, hence the help text.
Code:
<Help Description>
The user regenerates \m[HP] and \m[TP] for the first 7 turns of battle..
</Help Description>
<Custom Passive Condition>
if ($gameParty.inBattle()) {
condition = $gameTroop.turnCount() <= 7;
} else {
condition = false;
}
</Custom Passive Condition>
Last edited by a moderator:


