Tips & Tricks – Aura of Ebon Destruction (Champions Online) – 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.

The Aura of Ebon Destruction is an aura effect from Champions Online. It is used for allies to increase the amount of damage they deal and inflict more damage on critical hits, too!

You can grab the copy/paste code here: Insert the following code into your Ebon Aura effect state’s notebox. Change the values in red to reflect the settings of your game.

<Custom Confirm Effect>
// If current action deals HP damage...
if (this.isHpEffect() && value > 0) {
  // ...set the bonus damage to +20%
  var bonusRate = 0.20;
  // Add the bonus damage to the current damage.
  value += Math.ceil(value * bonusRate);
  // Check if a critical hit happened.
  if (target.result().critical) {
    // Add a flat +200 damage bonus.
    value += 200;
  }
  // Play an animation on the target.
  target.startAnimation(2);
}
</Custom Confirm Effect>

Enjoy!

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