- Joined
- Mar 15, 2015
- Messages
- 233
- Reaction score
- 27
- First Language
- English
- Primarily Uses
- RMMV
Yanfly link is here:
My formula is here:
My question is how would I go about making this a specific element? Like element id 4 (Fire), for example.
My formula is here:
<Custom Apply Effect>
target._damageBurn = Math.ceil(origin.mat * 0.50);
</Custom Apply Effect>
<Custom Remove Effect>
target._damageBurn = undefined;
</Custom Remove Effect>
<Custom Regenerate Effect>
target._damageBurn = target._damageBurn || Math.ceil(origin.mat * 0.50);
target.startAnimation(12);
target.gainHp(-target._damageBurn);
target.startDamagePopup();
if (target.isDead()) {
target.performCollapse();
}
target.clearResult();
</Custom Regenerate Effect>
target._damageBurn = Math.ceil(origin.mat * 0.50);
</Custom Apply Effect>
<Custom Remove Effect>
target._damageBurn = undefined;
</Custom Remove Effect>
<Custom Regenerate Effect>
target._damageBurn = target._damageBurn || Math.ceil(origin.mat * 0.50);
target.startAnimation(12);
target.gainHp(-target._damageBurn);
target.startDamagePopup();
if (target.isDead()) {
target.performCollapse();
}
target.clearResult();
</Custom Regenerate Effect>
My question is how would I go about making this a specific element? Like element id 4 (Fire), for example.
Last edited by a moderator:

