Advertisement
UDON_JP

Untitled

May 6th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 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: 10
  26. min: 4
  27. max: 10
  28. maxincrease: 5
  29. lvl1:
  30. - 268,1
  31. - 298,1
  32. - 299,1
  33. - 300,1
  34. - 301,1
  35. - 370,10
  36. - 372,10
  37. - 452,10
  38. - 371,10
  39. - 336
  40. lvl2:
  41. - 268,1
  42. - 314,1
  43. - 315,1
  44. - 316,1
  45. - 317,1
  46. - 320,3
  47. - 260,2
  48. - 364,2
  49. - 366,2
  50. - 368,2
  51. - 370,10
  52. - 372,10
  53. - 452,10
  54. - 371,10
  55. - 336
  56. lvl3:
  57. - 283,1
  58. - 306,1
  59. - 307,1
  60. - 308,1
  61. - 309,1
  62. - 302,1
  63. - 303,1
  64. - 305,1
  65. - 322,2
  66. - 259,1
  67. - 283,1
  68. - 336
  69. lvl4:
  70. - 267,1
  71. - 336
  72. lvl5:
  73. - 276,1
  74. - 310,1
  75. - 311,1
  76. - 312,1
  77. - 313,1
  78. - 354,2
  79. - 336
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement