1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-07 22:47:03 +00:00
Files
bedrock-samples/metadata/json_schemas/server/entity/1.21.110/RoarGoalDefinition.json
2025-09-09 10:02:11 -07:00

31 lines
950 B
JSON

{
"$id": "3872898814",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Allows this entity to roar at another entity based on data in minecraft:anger_level. Once the anger threshold specified in minecraft:anger_level has been reached, this entity will roar for the specified amount of time, look at the other entity, apply anger boost towards it, and finally target it.",
"properties": {
"control_flags": {
"items": {
"enum": [
"move",
"look",
"jump"
],
"title": "Goal's control flags",
"type": "string"
},
"type": "array"
},
"duration": {
"description": "The amount of time to roar for. Default value: 0.",
"minimum": 0,
"type": "number"
},
"priority": {
"minimum": 0,
"type": "integer"
}
},
"title": "minecraft:behavior.roar",
"type": "object",
"x-format-version": "1.21.110"
}