Additions:
- You can now configure item drops (including patterns) in the drops.yml file.
Here is an example
Code (YAML):
# Must be in CAPITAL letters for vanilla mobs
ZOMBIE
:
# The pattern drop
pattern:FIRESTEEL_INGOT:
chance
: 0.01
# 1% chance to drop from any zombie
amount
: 1
# An MMOItems item drop
mi:TOUGH_LEATHER:
chance
: 0.08
# 8% chance to drop from any zombie
amount
: 1-2
# 1 to 2 of them will drop
# A MythicMobs mob drop
SkeletalMinion:
pattern:ICESTEEL_INGOT:
chance
: 0.025
amount
: 1
mi:REINFORCED_LEATHER:
chance
: 0.12
# 12%
amount
: 1-2