EpicEnchants/src/main/resources/enchants/simple/Experience.yml

29 lines
753 B
YAML
Raw Normal View History

2019-08-05 04:24:48 +02:00
# The enchant identifier must be unique.
identifier: Experience
# The max level for this enchant.
max-level: 5
# The group of this enchant. Configure the groups in the groups.yml file.
group: SIMPLE
#Description
description:
- "A chance to receive"
- "more EXP when mining blocks."
# What items this enchant can be applied to.
item-whitelist:
- "TOOLS"
# For a full list of effects, please visit: https://wiki.songoda.com/display/SON/EpicEnchants
effects:
MODIFY_EXP:
# Chance that this will happen
2019-08-05 18:57:06 +02:00
chance: "20 * {level}"
2019-08-05 04:24:48 +02:00
# The trigger that will fire this effect
2019-08-05 18:57:06 +02:00
trigger: EXPERIENCE_BLOCK_BREAK
2019-08-05 04:24:48 +02:00
# What player should the effect be ran on: USER/OPPONENT.
who: USER
# Amount of EXP to add
amount: "10 * {level}"