Skip to content

Instantly share code, notes, and snippets.

@bencvt
Created August 31, 2012 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bencvt/3547702 to your computer and use it in GitHub Desktop.
Save bencvt/3547702 to your computer and use it in GitHub Desktop.
ExtraFluffy config help
# Corrected version:
extra-death-loot:
ZOMBIE:
item: DIAMOND
chance: 1.0
min: 1
max: 1
stack: false
ZOMBIE-2:
item: IRON_INGOT
chance: 1.0
min: 1
max: 1
stack: false
ZOMBIE-3:
item: GOLD_INGOT
chance: 0.05
min: 1
max: 1
stack: false
ZOMBIE-4:
item: WOOD_SWORD
chance: 0.10
min: 1
max: 1
stack: false
ZOMBIE-5:
item: COAL
chance: 0.09
min: 1
max: 1
stack: false
ZOMBIE-6:
item: WOOD
chance: 0.08
min: 1
max: 2
stack: false
# Original version (with comments):
extra-death-loot:
ZOMBIE:
item: DIAMOND
chance: 100 # needs to be a number between 0.0 and 1.0
min: 1
max: 1
stack: false
ZOMBIE-2:
item: IRON_INGOT
chance: 1 # needs to be 1.0; YAML is picky like that
min: 1
max: 1
stack: false
ZOMBIE-3:
item: GOLD_INGOT
chance: 0.05
min: 1
max: 1
stack: false
ZOMBIE-4:
item: WOODEN_SWORD # invalid item name, should be WOOD_SWORD
chance: 0.10
min: 1
max: 1
stack: false
ZOMBIE-5:
item: COAL
chance: 0.09
min: 1
max: 1
stack: false
ZOMBIE-3: # this is overwriting a previous entry, should be ZOMBIE-6
item: WOOD
chance: 0.08
min: 1
max: 2
stack: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment