Advertisement
Guest User

chest.yml

a guest
May 5th, 2016
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. # The first value is the chance of the item appearing in a chest (out of 100)
  2. # The second value is the item, this should be the material name (as found on http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html)
  3. # The third value is the quantity that will show up in the chest.
  4. # For wood, potions, wool, dirt, etc (Any item that has type data), you can use a : followed by the numerical data for the item you want.
  5. # For example wood:2 would give you birch wood planks. You can find data values at: http://minecraft-ids.grahamedgecombe.com/
  6. # Potion data values can be found at: http://minecraft.gamepedia.com/Potion
  7. # Enchantments can be added using the enchantment name (written with no spaces) followed by a : and then the enchantment level number. http://minecraft.gamepedia.com/Enchanting/Levels
  8.  
  9. items:
  10. ### Random Stuff: ###
  11. - 20 ender_pearl 1
  12. - 20 lava_bucket 1
  13. - 70 web 3
  14. - 60 stone 48
  15. - 80 water_bucket 1
  16.  
  17. ### Nahrung: ###
  18. - 95 steak 9
  19. - 20 golden_apple 1
  20. - 90 bread 8
  21. - 90 cookie 6
  22. - 80 pumpkin_pie 13
  23.  
  24. ### Blöcke: ###
  25. - 70 cobblestone 61
  26. - 80 brick_block 54
  27. - 60 glass 42
  28. - 50 crafting_table 12
  29. - 65 planks 55
  30.  
  31.  
  32. ### Schwerter: ###
  33. - 25 iron_sword 1
  34. - 60 wooden_sword 1
  35. - 40 stone_sword 1
  36.  
  37. ### Items: ###
  38. - 20 iron_ingot 5
  39. - 10 diamond 3
  40.  
  41.  
  42.  
  43. ### Rüstung: ###
  44.  
  45. # Kettenrüstung: #
  46. - 45 chainmail_helmet 1 protection:1
  47. - 40 chainmail_chestplate 1 protection:1
  48. - 40 chainmail_leggings 1 protection:1
  49. - 40 chainmail_boots 1 protection:2
  50.  
  51. # Eisenrüstung: #
  52.  
  53. - 50 iron_helmet protection:1
  54. - 20 iron_chestplate protection:1
  55. - 40 iron_leggings protection:1
  56. - 10 iron_boots protection:2
  57.  
  58. # Diamantenrüstung: #
  59.  
  60. - 20 diamond_helmet protection:1
  61. - 50 diamond_chestplate protection:2
  62. - 10 diamond_leggings protection:1
  63. - 40 diamond_boots feather_falling:1
  64.  
  65. ### Tools: ###
  66. - 15 stone_axe 1 sharpness:1
  67. - 30 iron_pickaxe efficiency:1
  68. - 35 iron_axe efficiency:2
  69. - 40 stone_pickaxe efficiency:1 unbreaking:2
  70. - 50 golden_axe unbreaking:1
  71. - 55 golden_pickaxe efficiency:1 unbreaking:3
  72. - 40 iron_shovel unbreaking:1
  73. - 50 stone_shovel efficiency:1 unbreaking:2
  74. - 55 golden_shovel unbreaking: 3 efficiency:1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement