Modifiers

When a pet is defined a living pet, each level can define modifiers:

  • Damage Modifier

  • Resistance Modifier

  • Power Modifier

You can make use of these modifiers in skills to affect how your pet does damages according to these, using MCPets MythicMobs placeholders.

Note that the Resistance Modifier is implemented by default in MCPets, meaning you don't need to make a specific use of it in MythicMobs for it to reduce the damages your pet takes.

Here is are some example usage:

Pet_Attack:
  Skills:
  - damage{a=10*<pet.damagemodifier>} @target
  
Pet_MagicAttack:
  Skills:
  - damage{a=30*<pet.power>} @target

As you can see, you can use modifiers as placeholders for advanced maths thanks to MythicMobs. For more complex calculations or usage, have a look at MythicMobs wiki.

Last updated