Yanfly Engine Plugins is a plugin library made for RPG Maker MV, a wonderful piece of software to help you make that role playing game of your dreams. You can find out more about RPG Maker MV here.
White Wind is a recurring enemy skill in the Final Fantasy series. It heals the whole party for an amount equal to the user’s current HP. However, in RPG Maker MV, this might present a problem if the user gets heal midway as it will mess up the calculations. Here’s how to fix it!
You can grab the copy/paste code here: Insert the following code into your skill’s notebox.
<damage formula>
// Check if the heal amount hasn't been calculated
if (this._healAmount === undefined) {
// Calculate Wind Wind's healing equal to the user's HP
this._healAmount = a.hp;
}
// Set the value equal to the calculated heal amount
value = this._healAmount;
</damage formula>
Enjoy!
Please wait while you are redirected...or Click Here if you do not want to wait.