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

37 lines
1.1 KiB
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.dragonflaming",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Dragonflaming",
2022-08-20 13:53:50 +02:00
"description": "Allows this entity to use a flame-breath attack. Note: This behavior can only be used by the ender_dragon entity type.",
2021-10-11 18:13:12 +02:00
"properties": {
"priority": {
"$ref": "./types/priority.json"
},
"cooldown_time": {
"title": "Cooldown Time",
"type": "number",
"default": 10,
"description": "Time (in seconds), after roar, to breath flame."
},
"flame_time": {
"title": "Flame Time",
"type": "number",
"default": 0.5,
"description": "Time (in seconds), after roar, to breath flame."
},
"ground_flame_count": {
"title": "Ground Flame Count",
"type": "integer",
"default": 4,
"description": "Number of ground flame-breath attacks to use before flight-takeoff."
},
"roar_time": {
"title": "Roar Time",
"type": "number",
"default": 2,
"description": "Time (in seconds) to roar, before breathing flame."
2021-10-11 18:13:12 +02:00
}
}
2021-10-08 12:59:03 +02:00
}