1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-04 21:19:50 +00:00
Files
bedrock-samples/metadata/json_schemas/server/entity/1.21.90/BreedGoalDefinition.json
2025-09-09 10:02:11 -07:00

30 lines
720 B
JSON

{
"$id": "3731384245",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Allows this mob to breed with other mobs.",
"properties": {
"control_flags": {
"items": {
"enum": [
"move",
"look",
"jump"
],
"title": "Goal's control flags",
"type": "string"
},
"type": "array"
},
"priority": {
"minimum": 0,
"type": "integer"
},
"speed_multiplier": {
"description": "Movement speed multiplier applied to the mob when using this AI Goal. Default value: 1.",
"type": "number"
}
},
"title": "minecraft:behavior.breed",
"type": "object",
"x-format-version": "1.21.90"
}