Pet Abilities
# Pet Abilities
All ability configurations are in the ability folder, you can create multiple yml files
# Ability Configuration
# Ability configuration file
# Ability key, must be unique
ability1:
# Ability type, supports: POTION, COMMAND, FIREBALL, LIGHTNING, TELEPORT, HEAL, DAMAGE, BUFF, DEBUFF
type: POTION
# Ability effect, supports: SPEED, JUMP, REGENERATION, STRENGTH, WEAKNESS, SLOWNESS, HASTE, MINING_FATIGUE, INSTANT_HEALTH, INSTANT_DAMAGE, POISON, NAUSEA, BLINDNESS, HUNGER, WITHER, HEALTH_BOOST, ABSORPTION, SATURATION, GLOWING, LEVITATION, LUCK, UNLUCK, CONDUIT_POWER, DOLPHINS_GRACE, BAD_OMEN, HERO_OF_THE_VILLAGE, DARKNESS
effect: SPEED
# Ability duration, supports: 0-999999
duration: 60
# Ability amplifier, supports: 0-255
amplifier: 1
# Ability chance, supports: 0.0-1.0
chance: 1.0
# Ability cooldown, supports: 0-999999
cooldown: 60
# Ability command, supports: any command
command: "say Hello"
# Ability target, supports: SELF, TARGET, ALL
target: SELF
# Ability range, supports: 0-100
range: 10
# Ability damage, supports: 0-999999
damage: 10
# Ability heal, supports: 0-999999
heal: 10
# Ability buff, supports: any buff
buff: "strength"
# Ability debuff, supports: any debuff
debuff: "weakness"
# Ability Types
| Type | Description |
|---|---|
| POTION | Potion effects |
| COMMAND | Execute commands |
| FIREBALL | Launch fireballs |
| LIGHTNING | Summon lightning |
| TELEPORT | Teleport player |
| HEAL | Heal player |
| DAMAGE | Damage player |
| BUFF | Apply buffs |
| DEBUFF | Apply debuffs |
# Ability Targets
| Target | Description |
|---|---|
| SELF | Apply to self |
| TARGET | Apply to target |
| ALL | Apply to all players |