- Joined
- Jan 4, 2018
- Messages
- 33
- Reaction score
- 5
- First Language
- English
- Primarily Uses
- RMMV
Hello everyone. I'm interested in making some states that have on-contact effects. For example, one state I would like to make is a physical taunt effect that has a small chance (15%) to paralyze any foes that make contact with the taunter. I believe I can make this effect with a combinations of Yanfly's taunt plugin, buffs and states core, skill core, and damage core. Here's what I have so far:
<Physical Taunt>
<Custom Respond Effect>
if (this.isPhysical() && this.isHpEffect() && value > 0) {
}
</Custom Respond Effect>
I think the first part is right, I'm just not sure how to add in the possible paralysis chance. Anyone know how to do this?
Bonus: Anyone know how to make a similar effect that deals damage to attackers that make contact? Something similar to the "Iron Barbs" ability from Pokémon.
Thanks in advance!
<Physical Taunt>
<Custom Respond Effect>
if (this.isPhysical() && this.isHpEffect() && value > 0) {
}
</Custom Respond Effect>
I think the first part is right, I'm just not sure how to add in the possible paralysis chance. Anyone know how to do this?
Bonus: Anyone know how to make a similar effect that deals damage to attackers that make contact? Something similar to the "Iron Barbs" ability from Pokémon.
Thanks in advance!
