Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/components/minecraft.boss.json

24 lines
836 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.boss",
2020-11-01 17:22:42 +01:00
"type": "object",
"title": "Boss 1.8.0",
"additionalProperties": false,
"description": "The current state of the boss for updating the boss HUD",
"required": [],
"properties": {
"hud_range": {
"type": "integer",
"default": 55,
"description": "The max distance from the boss at which the boss's health bar is present on the players screen.",
2021-03-21 15:18:38 +01:00
"title": "Hud Range"
2020-11-01 17:22:42 +01:00
},
2021-03-21 15:18:38 +01:00
"name": { "type": "string", "default": "", "description": "The name that will be displayed above the boss's health bar.", "title": "Name" },
2021-05-18 23:32:44 +02:00
"should_darken_sky": {
"type": "boolean",
"default": false,
"description": "Whether the sky should darken in the presence of the boss.",
"title": "Should Darken Sky"
}
2020-11-01 17:22:42 +01:00
}
}