Описание
A server-side Minecaft mod which allows the creation of custom boss bars.
Possible colours are: `PINK` `BLUE` `RED` `GREEN` `YELLOW` `PURPLE` `WHITE`
Possible styles are: `PROGRESS` `NOTCHED_6` `NOTCHED_10` `NOTCHED_12` `NOTCHED_20`
Example config:
```json
{
"minecraft:elder_guardian": {
"enabled": true,
"colour": "WHITE",
"style": "PROGRESS",
"darkenSky": false,
"dragonMusic": false,
"thickenFog": false
},
"minecraft:warden": {
"enabled": true,
"colour": "BLUE",
"style": "NOTCHED_20",
"darkenSky": true,
"dragonMusic": false,
"thickenFog": true
},
"minecraft:wither": {
"enabled": true,
"colour": "PURPLE",
"style": "PROGRESS",
"darkenSky": true,
"dragonMusic": false,
"thickenFog": false
},
"minecraft:ender_dragon": {
"enabled": true,
"colour": "RED",
"style": "NOTCHED_10",
"darkenSky": false,
"dragonMusic": true,
"thickenFog": true
}
}
}
```