1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-05 06:03:45 +00:00
Files
bedrock-samples/metadata/json_schemas/server/1.21.90/entity/BreedGoalDefinition.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

31 lines
911 B
JSON

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