Entity Documentation - minecraft:behavior.breed

Allows this mob to breed with other mobs.

Note

Requires the following component in order to work properly:

Breed Behavior Properties

Name Default Value Type Description Example Values
priority not set Integer number As priority approaches 0, the priority is increased. The higher the priority, the sooner this behavior will be executed as a goal. Armadillo: 2, Axolotl: 1, Bee: 4
speed_multiplier 1 Decimal number Movement speed multiplier of the mob when using this AI Goal Armadillo: 1, Goat: 0.6

Samples

Armadillo

"minecraft:behavior.breed": {
  "priority": 2,
  "speed_multiplier": 1
}

Axolotl

"minecraft:behavior.breed": {
  "priority": 1,
  "speed_multiplier": 1
}

Bee

"minecraft:behavior.breed": {
  "priority": 4,
  "speed_multiplier": 1
}

Cat

"minecraft:behavior.breed": {
  "priority": 3,
  "speed_multiplier": 1
}

Frog

"minecraft:behavior.breed": {
  "priority": 4
}

Goat

"minecraft:behavior.breed": {
  "priority": 3,
  "speed_multiplier": 0.6
}