Advertisement
Guest User

LootTable

a guest
Aug 24th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.92 KB | None | 0 0
  1. Loot:
  2. #has a chance of placing a stack of between 1-5 stone blocks in the chest
  3.   SomeItemNameHere:
  4.     Type: item
  5.     Material: IRON_INGOT
  6.     Chance: 80
  7.     MinAmount: 1
  8.     MaxAmount: 5
  9.   #has a chance of placing a stack of between 1-5 grass blocks in the chest
  10.   SomeItemNameHere2:
  11.     Type: item
  12.     ID: GOLD_INGOT
  13.     Chance: 30
  14.     MinAmount: 1
  15.     MaxAmount: 4
  16.   SomeItemNameHere3:
  17.     Type: item
  18.     Material: NAME_TAG
  19.     Chance: 5
  20.     MinAmount: 1
  21.     MaxAmount: 2
  22.   AwesomeDamagedOverpoweredSword:
  23.     Type: item
  24.     Material: DIAMOND_SWORD
  25.     Data: 5
  26.     Display: "Stabby Stab Stab"
  27.     Enchantments:
  28.    - DAMAGE_ALL:4
  29.     - DURABILITY:3
  30.     - KNOCKBACK:2
  31.     Chance: 1
  32.     MinAmount: 1
  33.     MaxAmount: 1
  34. Options:
  35. #MaxItems - the maximum amount of items which will be placed in the chest
  36.   #MinItems - the minimum amount of items which will be placed in the chest
  37.   MaxItems: 15
  38.   MinItems: 8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement