Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/behaviors/roar.json

22 lines
775 B
JSON
Raw Normal View History

2022-06-08 21:18:47 +02:00
{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.roar",
"additionalProperties": false,
"type": "object",
2022-07-26 14:55:01 +01:00
"title": "Roar",
"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.",
2022-06-08 21:18:47 +02:00
"properties": {
"priority": {
"$ref": "./types/priority.json"
},
"control_flags": {
"$ref": "./types/control_flags.json"
},
2022-06-08 21:18:47 +02:00
"duration": {
"title": "Duration",
"type": "number",
"default": 0.0,
2022-07-22 19:41:04 +02:00
"description": "Goal duration in seconds."
2022-06-08 21:18:47 +02:00
}
}
}