Custom Item Drops: You can now define completely custom items to be dropped from any supported crop!
Set a custom material, display-name, and lore.
Control the min and max amount for each custom drop.
Configuration Changes
The item-drops section in config.yml has been updated to support custom drops. Please see the main plugin page for an example configuration. To use this new feature, you must add custom-drop: true to the specific crop's section.
Code (Text):
item-drops:
WHEAT:
# Enable custom drop for wheat
custom-drop: true
# The item to be dropped
material: DIAMOND
# Item display name (optional)
display-name: "&bMagical Wheat"
# Item lore (optional)
lore:
- "&7This wheat was harvested from a magical field."
- "&7Very rare!"
# Drop amount
min: 1
max: 1
CARROT:
# This will still drop regular carrots
min: 2
max: 4
POTATO:
# This will still drop regular potatoes
min: 2
max: 4
BEETROOT:
# This will still drop regular beetroots
min: 1
max: 3