Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/behaviors/celebrate.json
Xterionix 822ed538f9 Some more misc fixes (#295)
* - Add mob effects enum

* - Add biome and biome tags to enum

* - Fix feature rules only showing with 1.13.0 format version

* - Replace 1.20.41 -> 1.20.80
- Make certain format versions restricted to 1.10.0

* - Remove example stick (having this here was annoying)

* - Fix

* - Remove empty sounds example

* - Misc fixes for entity components
2024-06-28 21:06:53 +02:00

74 lines
2.0 KiB
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.celebrate",
"type": "object",
"title": "Celebrate",
"description": "Allows this entity to celebrate surviving a raid by making celebration sounds and jumping.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/priority.json" },
"celebration_sound": {
"description": "The sound event to trigger during the celebration.",
"title": "Celebration Sound",
"$ref": "../../../../general/sound_event.json"
},
"duration": {
"type": "number",
"default": 30,
"description": "The duration in seconds that the celebration lasts for.",
"title": "Duration"
},
"jump_interval": {
"default": [1, 3.5],
"description": "Minimum and maximum time between jumping (positive, in seconds).",
"title": "Jump Interval",
"oneOf": [
{
"type": "array",
"items": [
{
"type": "number",
"title": "Maximum"
},
{
"type": "number",
"title": "Maximum"
}
]
},
{
"type": "number"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"range_min": {
"type": "number"
},
"range_max": {
"type": "number"
}
}
}
]
},
"on_celebration_end_event": {
"$ref": "../types/trigger.json",
"description": "The event to trigger when the goal's duration expires.",
"title": "On Celebration End Event"
},
"sound_interval": {
"default": [2, 7],
"description": "Minimum and maximum time between sound events (positive, in seconds).",
"title": "Sound Interval",
"$ref": "../types/range_number_type.json"
}
},
"examples": [
{
"celebration_sound": "",
"duration": 1
}
]
}