Create skills/mechanics/cancelevent authored by Ashen's avatar Ashen
Mechanic: CancelEvent
=====================
Cancel the Event that triggered the skill. This mechanic has several
important requirements in order to execute properly:
- The mechanic (or the first skill that leads to it) must be run with
sync=true in the mob's skill list. Example: -
skill{s=CancelEventSkill;sync=true} ~onDamaged
- No delays allowed.
- It only works with specific triggers that make sense.
Possible Triggers
-----------------
- ~onAttack
- ~onDamaged
- ~onExplode
- ~onInteract
- ~onCombat
- ~onTeleport
Example
-------
Skill.yml:
CancelDamageEvent:
Skills:
- CancelEvent
Mob.yml:
NoDamageMob:
Type: villager
Skills:
- skill{s=CancelDamageEvent;sync=true} ~onDamaged