Tips & Tricks – Gehenna (Digimon Cyber Sleuth) – 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.

For Digimon Cyber Sleuth, Lucemon has a rather unique ability. The party would receive 10% less magical damage and recover 10% of the damage healed, too. The effect can be quite useful for damage mitigation purposes!

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

<Custom React Effect>
// Check if the current action deals magical HP damage.
if (this.isMagical() && this.isHpEffect() && value > 0) {
  // Calculate 10% of the damage to be received.
  var reduce = Math.floor(value * 0.10);
  // Reduce the current damage from it.
  value -= reduce;
  // Heal the target for the reduction amount.
  target.gainHp(reduce);
  // Display the damage popup.
  target.startDamagePopup();
  // Clear the results.
  target.clearResult();
}
</Custom React Effect>

Enjoy!


These Tips & Tricks ideas are made possible thanks to our creative patrons on Patreon! The majority of our Tips & Tricks ideas are placed within the Patreon-exclusive Sample Project for quick and easy access! If you’d like to make a Tips & Tricks suggestion, Yanfly’s Patreon-based Suggestion Box a visit here:

Happy RPG Making!

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