Tips & Tricks – Rod of Ages

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 Rod of Ages is a weapon from League of Legends whose stats grow as time progresses in battle. The effect is transferred over to RPG Maker MV where the item provides a bigger bonus stat as turns occur in each battle.

You can grab the copy and paste here:

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

For the standard version~

<Custom Parameters>
if ($gameParty.inBattle()) {
  var turns = user.turnCount();
  var charges = Math.floor(turns / 2);
  maxhp = 20 * charges;
  maxmp = 40 * charges;
  mat = 4 * charges;
}
</Custom Parameters>

For those who’d like a maximum cap of 10 charges:

<Custom Parameters>
if ($gameParty.inBattle()) {
  var turns = user.turnCount();
  var charges = Math.floor(turns / 2);
  charges = Math.min(charges, 10);
  maxhp = 20 * charges;
  maxmp = 40 * charges;
  mat = 4 * charges;
}
</Custom Parameters>

Enjoy!