Advertisement
Guest User

Untitled

a guest
Sep 28th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 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. worlds:
  57. worldname:
  58. time: 10
  59. lists:
  60. - common
  61. - uncommon
  62. - rare
  63. common:
  64. detailed: false
  65. items:
  66. - iron_sword,283,280,260,1,3,100,306,307,308,309,298,299,300,301,272,267,365,366,367,360,364,true
  67. - 6,1,3,100,false
  68. uncommon:
  69. inheritance: common
  70. detailed: false
  71. items:
  72. '3':
  73. spawn: '314,315,316,317,3-6'
  74. effects:
  75. - damage_arthropods,1-2,100
  76. potion:
  77. spawn: '100,3-30'
  78. effects:
  79. - speed,1-2,100,true,true
  80. rare:
  81. inheritance: uncommon
  82. detailed: false
  83. items:
  84. '3':
  85. spawn: '276,310,311,312,313,314,315,316,317,283,264,382,1-2'
  86. effects:
  87. - damage_arthropods,fire_aspect,smite,1-2,100
  88. potion:
  89. spawn: '100,3-30'
  90. effects:
  91. - speed,1-2,100,true,true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement