Tips & Tricks – Wish (Final Fantasy Tactics) – RPG Maker MV

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.

Wish is a skill in Final Fantasy Tactics that consumes half of the user’s current HP and then restores a target ally’s HP for double the amount. Here’s how to recreate that effect in RPG Maker MV!

You can grab the copy/paste code here: 

Insert the following as the Wish skill’s damage formula:

a.hp * 2

Insert the following code into the Wish skill’s notebox. Change the values in red to fit your game’s needs.

<Custom HP Cost>
cost = Math.ceil(a.hp / 2);
</Custom HP Cost>

<Select Conditions>
Not User
</Select Conditions>

Enjoy!

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