Magic Guard (MV Plugin Tips & Tricks)
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.
Magic Guard is a status effect that reduces incoming damage by displacing 85% of it through MP. If MP reaches 0, then the Magic Guard effect will wear off.
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.
Here is the copy and paste version of the code:
<Custom React Effect> if (value > 0 && this.isHpEffect()) { var mpDmg = Math.floor(value * 0.85); mpDmg = Math.min(mpDmg, target.mp); target.gainMp(-mpDmg); value -= mpDmg; if (target.mp === 0) { target.removeState(71); } } </Custom React Effect>
Have fun everybody!