Advertisement
Itsyuumello

Untitled

Aug 24th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. #Configuration for the chest item ratios
  2. #this system works by levels. Level 1 aka lvl1
  3. #is the most common stuff whereas lvl16 is the least
  4. #common. You can set what will spawn at each level below.
  5. #The ratio setting determines how likely the next level is
  6. #to spawn in. a ratio of 2 means that it is twice as unlikely
  7. #for the next level to spawn in.
  8. ##FORMAT
  9. # <itemid>,<max amount per slot>[,<DV>[,<enchantment>:<level> ...[,<name>]]]
  10. # diamond_sword,1
  11. # 236,1
  12. # diamond_sword,1,0,sharpness:5 knockback:2,Excalibur
  13. # Lapis Lazuli
  14. # 351,1,4
  15. #
  16.  
  17. #DONT TOUCH THIS
  18. version: 0
  19.  
  20. # min = minimum number of items to put into chest
  21. # max = maximum number of items to put into chest
  22. # maxincrease = maximum number of levels to go up (based on 1/ratio chace of going up)
  23.  
  24. chest:
  25. ratio: 6
  26. min: 2
  27. max: 6
  28. maxincrease: 5
  29. lvl1:
  30. - 276,1
  31. - diamond_sword,1,0,sharpness:1
  32. - 278,1
  33. - 267,1
  34. - 261,1
  35. - 262,16
  36. - 306,1
  37. - 307,1
  38. - 308,1
  39. - 309,1
  40. - 310,1
  41. - 311,1
  42. - 312,1
  43. - 313,1
  44. - 322,1
  45. - 346,1
  46. - 348,16
  47. - 364,8
  48. lvl2:
  49. - 276,1
  50. - diamond_sword,1,0,sharpness:2
  51. - 278,1
  52. - 267,1
  53. - 261,1
  54. - 262,16
  55. - 306,1
  56. - 307,1
  57. - 308,1
  58. - 309,1
  59. - 310,1
  60. - 311,1
  61. - 312,1
  62. - 313,1
  63. - 322,1
  64. - 346,1
  65. - 348,16
  66. - 364,8
  67. lvl3:
  68. - 276,1
  69. - diamond_sword,1,0,sharpness:3
  70. - 278,1
  71. - 267,1
  72. - 261,1
  73. - 262,16
  74. - 306,1
  75. - 307,1
  76. - 308,1
  77. - 309,1
  78. - 310,1
  79. - 311,1
  80. - 312,1
  81. - 313,1
  82. - 322,1
  83. - 346,1
  84. - 348,16
  85. - 364,8
  86. lvl4:
  87. - 276,1
  88. - diamond_sword,1,0,sharpness:4
  89. - 278,1
  90. - 267,1
  91. - 261,1
  92. - 262,16
  93. - 306,1
  94. - 307,1
  95. - 308,1
  96. - 309,1
  97. - 310,1
  98. - 311,1
  99. - 312,1
  100. - 313,1
  101. - 322,1
  102. - 346,1
  103. - 348,16
  104. - 364,8
  105. lvl5:
  106. - 276,1
  107. - diamond_sword,1,0,sharpness:5
  108. - 278,1
  109. - 267,1
  110. - 261,1
  111. - 262,16
  112. - 306,1
  113. - 307,1
  114. - 308,1
  115. - 309,1
  116. - 310,1
  117. - 311,1
  118. - 312,1
  119. - 313,1
  120. - 322,1
  121. - 346,1
  122. - 348,16
  123. - 364,8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement