EpicBosses/plugin-modules/Core/resources-json/skills.json
AMinecraftDev dad1bdfcd0 1.0.0-SNAPSHOT-U40
+ Started to work on the Skills portion of CustomBosses
+ Implemented the skills.json and added in some of the default configuration
+ Added a SkillHandler
2018-11-05 21:55:12 +08:00

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"
]
}
}