Mana Burn (MV Plugin Tips & Tricks)
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.
Mana Burn is a recurring skill from the WarCraft series. It deals damage to the target’s Mana and then deals proportional damage to the target’s HP. Here’s how you can do the same with RPG Maker MV!
Required Plugins
The following plugin(s) is required to create this Tips & Tricks effect:
For help on how to install plugins, click here.
For help on how to update plugins, click here.
About
This is a Tips & Tricks effect created for RPG Maker MV. Tips & Tricks are not to be confused with plugins. Instead, they are usually customized code created for the sake of producing unique features/effects that do not require an entire plugin to do.
Yanfly Engine Plugins
This Tips & Tricks effect is made possible due to the Yanfly Engine Plugins library.
Click here if you want to help support Team Yanfly on Patreon.
Instructions
Follow video instructions.
- MP Damage version.
<Bypass Armor Scaling> <Damage Formula> // Calculate 10% of target's current MP. var mp = Math.ceil(b.mp * 0.10); // Calculate the cap: 20% of user's MaxMP. var cap = Math.ceil(a.mmp * 0.20); // Determine if the MP cap is to be used. mp = Math.min(mp, cap); // Target loses MP. b.gainMp(-mp); // Damage is equal to 50% of MP damage dealt. value = Math.ceil(mp * 0.50); </Damage Formula>
- TP Damage version.
<Bypass Armor Scaling> <Damage Formula> // Calculate 10% of target's current TP. var tp = Math.ceil(b.tp * 0.10); // Calculate the cap: 20% of user's MaxTP. var cap = Math.ceil(a.maxTp() * 0.20); // Determine if the TP cap is to be used. tp = Math.min(tp, cap); // Target loses TP. b.gainTp(-tp); // Damage is equal to 50% of TP damage dealt. value = Math.ceil(tp * 0.50); </Damage Formula>
Happy Mana Burning!