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.
Go into
plugins/AdvancedMobs/breeding.yml
file and set enabled
to false, then restart.In the same file mentioned above, you can customize which mobs can be bread and what material is required.
breeding.yml
1
mobs:
2
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
1
mobs:
2
Dog: BONE
3
CustomMob: STICK
Last modified 4mo ago