mirror of
https://github.com/songoda/EpicBosses.git
synced 2024-11-08 02:59:31 +01:00
dad1bdfcd0
+ Started to work on the Skills portion of CustomBosses + Implemented the skills.json and added in some of the default configuration + Added a SkillHandler
60 lines
1.0 KiB
JSON
60 lines
1.0 KiB
JSON
{
|
|
"Blind1": {
|
|
"mode": "ALL",
|
|
"type": "POTION",
|
|
"radius": 10,
|
|
"displayName": "Blind",
|
|
"customMessage": "BlindMessage",
|
|
"potions": [
|
|
{
|
|
"type": "blind",
|
|
"level": 2,
|
|
"duration": 10
|
|
}
|
|
]
|
|
},
|
|
"Guts1": {
|
|
"mode": "ALL",
|
|
"type": "COMMAND",
|
|
"radius": 10,
|
|
"displayName": "Guts",
|
|
"customMessage": "GutsMessage",
|
|
"commands": [
|
|
{
|
|
"chance": 25,
|
|
"commands": [
|
|
"Guts1",
|
|
"Guts2"
|
|
]
|
|
},
|
|
{
|
|
"chance": 10,
|
|
"commands": [
|
|
"Guts3"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"Knockback1": {
|
|
"mode": "ALL",
|
|
"type": "CUSTOM",
|
|
"radius": 10,
|
|
"displayName": "Knockback",
|
|
"customMessage": null,
|
|
"custom": {
|
|
"type": "KNOCKBACK",
|
|
"multiplier": 2.5
|
|
}
|
|
},
|
|
"Shazaam1": {
|
|
"mode": "ALL",
|
|
"type": "GROUP",
|
|
"radius": 10,
|
|
"displayName": "Shazaam",
|
|
"customMessage": "ShazaamMessage",
|
|
"groupedSkills": [
|
|
"Blind1",
|
|
"Knockback1"
|
|
]
|
|
}
|
|
} |