Using MythicMobs

How to make MythicMobs handle my custom mob

If you want to make MythicMobs handle your custom mob to have more advanced features and control it's really easy!

For example I have this MythicMobs configuration:

StaticallyChargedSheep:
  Type: SHEEP
  Display: '&aStatically Charged Sheep'
  Health: 100
  Damage: 2
  Options:
    MovementSpeed: 0.3
  DamageModifiers:
  - LIGHTNING 0
  - FIRE 0.5
  Skills:
  - lightning @LivingInRadius{r=10} ~onTimer:100

Open your ItemsAdder .yml file where you created the mob and to edit the replace rule like this:

        replace_mobs_spawn:
          mob1:
            replace_mythicmob:
              name: StaticallyChargedSheep
              always: true
            type: SHEEP

Random chance

If you want to create custom spawn logic for your custom mob you must not use ItemsAdder rules, use Mythicmobs configuration: https://www.mythicmobs.net/manual/doku.php/tutorials/randomspawns

Complete example

ItemsAdder configuration mobs.yml

Mythicmobs configuration Mobs\example.yml

Mythicmobs configuration RandomSpawns\example.yml

Last updated

Was this helpful?