Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/boss.json
2021-10-11 18:10:42 +02:00

36 lines
963 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.boss",
"type": "object",
"title": "Boss",
"additionalProperties": false,
"description": "The current state of the boss for updating the boss HUD",
"required": [],
"properties": {
"hud_range": {
"type": "integer",
"default": 55,
"description": "The Maximum distance from the boss at which the boss's health bar is present on the players screen.",
"title": "Hud Range"
},
"name": {
"type": "string",
"default": "",
"description": "The name that will be displayed above the boss's health bar.",
"title": "Name"
},
"should_darken_sky": {
"type": "boolean",
"default": false,
"description": "Whether the sky should darken in the presence of the boss.",
"title": "Should Darken Sky"
}
},
"examples": [
{
"hud_range": 55,
"name": "",
"should_darken_sky": false
}
]
}