Breeding

Configuring breeding and toggle it on or off

Breeding mechanic allows players to breed 2 same type mobs to "create" a new mob of same type.

How to disable?

Go into plugins/AdvancedMobs/breeding.yml file and set enabled to false, then restart.

How to change breeding materials or allow new mobs to be bred?

In the same file mentioned above, you can customize which mobs can be bread and what material is required.

breeding.yml
mobs:
  Dog: BONE

Here we have an example of how Dog mob can be bred. To add your own, simply add a new line and list the mob in this format: <mob file name>: <material name>

Example:

breeding.yml
mobs:
  Dog: BONE
  CustomMob: STICK

Last updated