Tips & Tricks – Dark Zone (Final Fantasy Record Keeper) – 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.

Dark Zone is an ability from Final Fantasy Record Keeper that deals dark damage to all enemies. However, if the user casting Dark Zone is affected by Doom, then the damage is amplified! Here’s how to recreate the effect in RPG Maker MV!

You can grab the copy/paste code here: Insert the following code into your Dark Zone skill’s notebox. Chance the values in red to fit your game’s settings.

<Pre-Damage Eval>
// Get the state ID of the Doom state.
var doom = 190;
// Check if the user is affected by Doom.
if (user.isStateAffected(doom)) {
  // Then inflate the damage to 150% of its current value!
  value = Math.ceil(value * 1.50);
}
</Pre-Damage Eval>

Enjoy!

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