Advertisement
Guest User

loot config example

a guest
Mar 1st, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.75 KB | None | 0 0
  1. #===========================================================================#
  2. # Name: Loot #
  3. # Author: Kmacho #
  4. # #
  5. # Instructions: #
  6. # Here is where you set up the different types of item lists. #
  7. # I set up an example below that you can easily modify. #
  8. # Now, onto the important stuff: #
  9. # #
  10. # ListName: #
  11. # inheritance: OtherListName #
  12. # detailed: true/false #
  13. # #
  14. # ListName - The name of this list(used in the second line of a sign) #
  15. # inheritance - Will inherit the items from the list OtherListname #
  16. # #
  17. # detailed - Set this to true if you want to specify certain properties #
  18. # of the items on that list. Know that this will make the config a #
  19. # lot longer, but will enable you to customize to your liking. #
  20. # #
  21. # Detailed format: #
  22. # items: #
  23. # ItemNameOrId: #
  24. # spawn: chance,min-max #
  25. # effects: #
  26. # - NameOfEffect,Min-Max Lvl,Chance,Splash,Extend #
  27. # #
  28. # Undetailed format: #
  29. # items: #
  30. # - ItemNameOrId,min-max,chance,randomEffect #
  31. # #
  32. # ItemNameOrId - Name or ID of the item #
  33. # effects - Effects that could be applied to the item #
  34. # min - Minimum amount to appear if it passes the chance check #
  35. # max - Maximum amount to appear if it passes the chance check #
  36. # chance - The percent chance to appear at all #
  37. # randomEffect - add a random enchantment/potion effect(defaults to true) #
  38. # splash - Makes the potion throwable(only applies to potions) #
  39. # extend - Extends the duration of the effect(only applies to potions) #
  40. # #
  41. # You can also set up per-world loot chests. When a chest is opened and #
  42. # does not have a loot sign under it, it checks if the world is on this #
  43. # list. If it is, it will choose a random list of that world and be set #
  44. # to respawn in the amout of time set on the world. #
  45. # #
  46. # worlds: #
  47. # NameOfWorld: #
  48. # time: Minutes #
  49. # lists: #
  50. # - NameOfList #
  51. #===========================================================================#
  52. settings:
  53. enable_command_permissions: true
  54. enable_list_permissions: true
  55. enable_sign_permissions: true
  56. #Putting your world on this list means that ALL chest turn into loot chests, doesnt matter if theres a sign under it or not. YOU HAVE BEEN WARNED!!!
  57. worlds:
  58. worldname:
  59. time: 10
  60. lists:
  61. - common
  62. - uncommon
  63. common:
  64. detailed: false
  65. items:
  66. - 'potion,1-1,1,false'
  67. - 'chainmail_helmet:120,1-1,1,false'
  68. - 'chainmail_chestplate:120,1-1,1,false'
  69. - 'chainmail_leggings:120,1-1,1,false'
  70. - 'chainmail_boots:120,1-1,1,false'
  71. - 'ender_pearl,1-3,1,false'
  72. - 'iron_sword:120,1-1,1,true'
  73. - 'iron_sword:120,1-1,2,false'
  74. - 'golden_apple,1-4,2,false'
  75. - 'leather_helmet,1-1,5,false'
  76. - 'leather_chestplate,1-1,5,false'
  77. - 'leather_leggings,1-1,5,false'
  78. - 'leather_boots,1-1,5,false'
  79. - 'grilled_pork,1-6,5,false'
  80. - 'cooked_fish,1-3,5,false'
  81. - 'cooked_beef,1-3,5,false'
  82. - 'bread,1-6,5,false'
  83. - 'mushroom_soup,1-1,5,false'
  84. - 'apple,1-1,5,false'
  85. - 'cookie,1-1,5,false'
  86. - 'baked_potato,1-1,5,false'
  87. - 'cooked_chicken,1-1,5,false'
  88. - 'golden_carrot,1-1,5,false'
  89. - 'pumpkin_pie,1-1,5,false'
  90. - 'stone_sword:50,1-1,5,true'
  91. - 'bow:120,1-1,5,true'
  92. - 'snow_ball,1-5,5,false'
  93. - 'leather_helmet:25,1-1,10,false'
  94. - 'leather_chestplate:35,1-1,10,false'
  95. - 'leather_leggings:30,1-1,10,false'
  96. - 'leather_boots:25,1-1,10,false'
  97. - 'egg,1-25,10,false'
  98. - 'leather_helmet:30,1-1,15,false'
  99. - 'leather_chestplate:40,1-1,15,false'
  100. - 'leather_leggings:35,1-1,15,false'
  101. - 'leather_boots:30,1-1,15,false'
  102. - 'stone_sword:90,1-1,15,true'
  103. - 'leather_helmet:35,1-1,20,false'
  104. - 'leather_chestplate:50,1-1,20,false'
  105. - 'leather_leggings:40,1-1,20,false'
  106. - 'leather_boots:35,1-1,20,false'
  107. - 'bow:75,1-1,30,false'
  108. - 'arrow,1-16,30,false'
  109. - 'leather_helmet:40,1-1,30,false'
  110. - 'leather_chestplate:60,1-1,30,false'
  111. - 'leather_leggings:50,1-1,30,false'
  112. - 'leather_boots:40,1-1,30,false'
  113. - 'stone_sword:50,1-1,30,false'
  114. - 'leather_helmet:50,1-1,40,false'
  115. - 'leather_chestplate:70,1-1,40,false'
  116. - 'leather_leggings:60,1-1,40,false'
  117. - 'leather_boots:50,1-1,40,false'
  118. - 'bow:120,1-1,40,false'
  119. uncommon:
  120. inheritance: common
  121. detailed: false
  122. items:
  123. - 'diamond_helmet:120,1-1,1,false'
  124. - 'diamond_chestplate:120,1-1,1,false'
  125. - 'diamond_leggings:120,1-1,1,false'
  126. - 'diamond_boots:120,1-1,1,false'
  127. - 'diamond_sword:120,1-1,1,true'
  128. - 'diamond_sword:120,1-1,2,false'
  129. - 'iron_helmet:120,1-1,40,false'
  130. - 'iron_chestplate:120,1-1,40,false'
  131. - 'iron_leggings:120,1-1,40,false'
  132. - 'iron_boots:120,1-1,40,false'
  133. - 'chainmail_helmet:120,1-1,40,false'
  134. - 'chainmail_chestplate:120,1-1,40,false'
  135. - 'chainmail_leggings:120,1-1,40,false'
  136. - 'chainmail_boots:120,1-1,40,false'
  137. - 'ender_pearl,1-3,30,false'
  138. - 'iron_sword:120,1-1,30,true'
  139. - 'iron_sword:120,1-1,50,false'
  140. rare:
  141. inheritance: uncommon
  142. detailed: false
  143. items:
  144. - 'diamond_helmet:120,1-1,40,false'
  145. - 'diamond_chestplate:120,1-1,40,false'
  146. - 'diamond_leggings:120,1-1,40,false'
  147. - 'diamond_boots:120,1-1,40,false'
  148. - 'iron_helmet:120,1-1,40,false'
  149. - 'iron_chestplate:120,1-1,40,false'
  150. - 'iron_leggings:120,1-1,40,false'
  151. - 'iron_boots:120,1-1,40,false'
  152. - 'ender_pearl,1-3,25,false'
  153. - 'diamond_sword:120,1-1,30,true'
  154. - 'diamond_sword:120,1-1,50,false'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement