Advertisement
Guest User

Untitled

a guest
Jun 7th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.25 KB | None | 0 0
  1. # You can create as many subtables as you
  2. # want for each monster/block/mythic mob.
  3. #
  4. # 'coef' is the subtable coefficient. If a subtable has coef=1 and
  5. # another subtable has coef=3, then the first subtable has 1 (his coefficient)
  6. # chance out of 4 (sum of all subtable coefficients) to be selected.
  7. # The higher the coefficient is, the higher the chance to be the selected subtable.
  8. #
  9. # When a drop table is read, a random subtable is chosen
  10. # among all subtables. It then reads the subtable items.
  11. #
  12. # The subtable names do not matter, just make sure every
  13. # subtable in a drop table has a different name.
  14. #
  15. # Subtable Item Format: [chance to drop],[min amount]-[max amount],[unidentification chance]
  16. # or [chance to drop],[amount],[unidentification chance]
  17. # '50,1-3,10' means:
  18. # - 50% chance of dropping
  19. # - 1 to 3 items will drop
  20. # - 10% chance of being unidentified (for each item)
  21.  
  22. # Blocks Drop Tables
  23. # Read when a block is mined/broken by a player.
  24. blocks: {}
  25.  
  26. # Custom Blocks Drop Tables
  27. # Read when a custom block is mined/broken by a player.
  28. customblocks:
  29. 1:
  30. ruby_diamond:
  31. coef: 100
  32. disable-silk-touch: true
  33. items:
  34. MATERIAL:
  35. RUBY: 100,1,0
  36. MISCELLANEOUS:
  37. DIAMOND: 100,1,0
  38. amber_diamond:
  39. coef: 100
  40. disable-silk-touch: true
  41. items:
  42. MATERIAL:
  43. AMBER: 100,1,0
  44. MISCELLANEOUS:
  45. DIAMOND: 100,1,0
  46. amethyst_diamond:
  47. coef: 100
  48. disable-silk-touch: true
  49. items:
  50. MATERIAL:
  51. AMETHYST: 100,1,0
  52. MISCELLANEOUS:
  53. DIAMOND: 100,1,0
  54. citrine_diamond:
  55. coef: 100
  56. disable-silk-touch: true
  57. items:
  58. MATERIAL:
  59. CITRINE: 100,1,0
  60. MISCELLANEOUS:
  61. DIAMOND: 100,1,0
  62. jade_diamond:
  63. coef: 100
  64. disable-silk-touch: true
  65. items:
  66. MATERIAL:
  67. JADE: 100,1,0
  68. MISCELLANEOUS:
  69. DIAMOND: 100,1,0
  70. onyx_diamond:
  71. coef: 100
  72. disable-silk-touch: true
  73. items:
  74. MATERIAL:
  75. ONYX: 100,1,0
  76. MISCELLANEOUS:
  77. DIAMOND: 100,1,0
  78. ruby_emerald:
  79. coef: 100
  80. disable-silk-touch: true
  81. items:
  82. MATERIAL:
  83. RUBY: 100,1,0
  84. MISCELLANEOUS:
  85. EMERALD: 100,1,0
  86. amber_emerald:
  87. coef: 100
  88. disable-silk-touch: true
  89. items:
  90. MATERIAL:
  91. AMBER: 100,1,0
  92. MISCELLANEOUS:
  93. EMERALD: 100,1,0
  94. amethyst_emerald:
  95. coef: 100
  96. disable-silk-touch: true
  97. items:
  98. MATERIAL:
  99. AMETHYST: 100,1,0
  100. MISCELLANEOUS:
  101. EMERALD: 100,1,0
  102. citrine_emerald:
  103. coef: 100
  104. disable-silk-touch: true
  105. items:
  106. MATERIAL:
  107. CITRINE: 100,1,0
  108. MISCELLANEOUS:
  109. EMERALD: 100,1,0
  110. jade_emerald:
  111. coef: 100
  112. disable-silk-touch: true
  113. items:
  114. MATERIAL:
  115. JADE: 100,1,0
  116. MISCELLANEOUS:
  117. EMERALD: 100,1,0
  118. onyx_emerald:
  119. coef: 100
  120. disable-silk-touch: true
  121. items:
  122. MATERIAL:
  123. ONYX: 100,1,0
  124. MISCELLANEOUS:
  125. EMERALD: 100,1,0
  126. ruby_iron:
  127. coef: 100
  128. disable-silk-touch: true
  129. items:
  130. MATERIAL:
  131. RUBY: 100,1,0
  132. MISCELLANEOUS:
  133. IRON: 100,1,0
  134. amber_iron:
  135. coef: 100
  136. disable-silk-touch: true
  137. items:
  138. MATERIAL:
  139. AMBER: 100,1,0
  140. MISCELLANEOUS:
  141. IRON: 100,1,0
  142. amethyst_iron:
  143. coef: 100
  144. disable-silk-touch: true
  145. items:
  146. MATERIAL:
  147. AMETHYST: 100,1,0
  148. MISCELLANEOUS:
  149. IRON: 100,1,0
  150. citrine_iron:
  151. coef: 100
  152. disable-silk-touch: true
  153. items:
  154. MATERIAL:
  155. CITRINE: 100,1,0
  156. MISCELLANEOUS:
  157. IRON: 100,1,0
  158. jade_iron:
  159. coef: 100
  160. disable-silk-touch: true
  161. items:
  162. MATERIAL:
  163. JADE: 100,1,0
  164. MISCELLANEOUS:
  165. IRON: 100,1,0
  166. onyx_iron:
  167. coef: 100
  168. disable-silk-touch: true
  169. items:
  170. MATERIAL:
  171. ONYX: 100,1,0
  172. MISCELLANEOUS:
  173. IRON: 100,1,0
  174. ruby_gold:
  175. coef: 100
  176. disable-silk-touch: true
  177. items:
  178. MATERIAL:
  179. RUBY: 100,1,0
  180. MISCELLANEOUS:
  181. GOLD: 100,1,0
  182. amber_gold:
  183. coef: 100
  184. disable-silk-touch: true
  185. items:
  186. MATERIAL:
  187. AMBER: 100,1,0
  188. MISCELLANEOUS:
  189. GOLD: 100,1,0
  190. amethyst_gold:
  191. coef: 100
  192. disable-silk-touch: true
  193. items:
  194. MATERIAL:
  195. AMETHYST: 100,1,0
  196. MISCELLANEOUS:
  197. GOLD: 100,1,0
  198. citrine_gold:
  199. coef: 100
  200. disable-silk-touch: true
  201. items:
  202. MATERIAL:
  203. CITRINE: 100,1,0
  204. MISCELLANEOUS:
  205. GOLD: 100,1,0
  206. jade_gold:
  207. coef: 100
  208. disable-silk-touch: true
  209. items:
  210. MATERIAL:
  211. JADE: 100,1,0
  212. MISCELLANEOUS:
  213. GOLD: 100,1,0
  214. onyx_gold:
  215. coef: 100
  216. disable-silk-touch: true
  217. items:
  218. MATERIAL:
  219. ONYX: 100,1,0
  220. MISCELLANEOUS:
  221. GOLD: 100,1,0
  222. ruby_coal:
  223. coef: 100
  224. disable-silk-touch: true
  225. items:
  226. MATERIAL:
  227. RUBY: 100,1,0
  228. MISCELLANEOUS:
  229. COAL: 100,1,0
  230. amber_coal:
  231. coef: 100
  232. disable-silk-touch: true
  233. items:
  234. MATERIAL:
  235. AMBER: 100,1,0
  236. MISCELLANEOUS:
  237. COAL: 100,1,0
  238. amethyst_coal:
  239. coef: 100
  240. disable-silk-touch: true
  241. items:
  242. MATERIAL:
  243. AMETHYST: 100,1,0
  244. MISCELLANEOUS:
  245. COAL: 100,1,0
  246. citrine_coal:
  247. coef: 100
  248. disable-silk-touch: true
  249. items:
  250. MATERIAL:
  251. CITRINE: 100,1,0
  252. MISCELLANEOUS:
  253. COAL: 100,1,0
  254. jade_coal:
  255. coef: 100
  256. disable-silk-touch: true
  257. items:
  258. MATERIAL:
  259. JADE: 100,1,0
  260. MISCELLANEOUS:
  261. COAL: 100,1,0
  262. onyx_coal:
  263. coef: 100
  264. disable-silk-touch: true
  265. items:
  266. MATERIAL:
  267. ONYX: 100,1,0
  268. MISCELLANEOUS:
  269. COAL: 100,1,0
  270.  
  271. # Monsters Drop Tables
  272. # Read when any monster dies.
  273. monsters: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement