Tips & Tricks – Undead (Final Fantasy)

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.

Ever wanted to make undead monsters take damage from healing abilities? With the Selection Control plugin made, the ability to select enemies with healing skills is now possible! And that means it’s time to do our Undead effect!

For the copy/paste code, you can find it here: 

Copy this into your Undead state!

<Custom React Effect>
// Check if the action is a recovery skill.
if (this.isHpRecover()) {
  // If it is, let's convert the value into damage!
  value = Math.abs(value);
}
</Custom React Effect>

Happy Undead Hunting!~

Please wait while you are redirected...or Click Here if you do not want to wait.