Entity Documentation - minecraft:entity_born

minecraft:entity_born triggers an event calls on an entity when the entity is born via breeding.

Note

minecraft:entity_born is used to trigger events when the entity is born in the world. For events to trigger when the entity spawns, see minecraft:entity_spawned

Important

minecraft:entity_born requires an entity to be born into the world via the minecraft:behavior.breed behavior.

Example

"minecraft:entity_born":{
}

Vanilla entities examples

goat

"minecraft:entity_born": {
        "add": {
          "component_groups": [
            "goat_baby"
          ]
        }
      }

Vanilla entities using minecraft:entity_born