Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.19 KB | None | 0 0
  1. worlds=[
  2. {
  3. dimension="minecraft:overworld"
  4. "filler block"="minecraft:stone"
  5. ores=[
  6. {
  7. deposits {
  8. "max y"=128
  9. "min y"=4
  10. # larger rarity = more loot
  11. rarity=50
  12. "tool types"=[
  13. diamond,
  14. gold,
  15. iron,
  16. stone,
  17. wood
  18. ]
  19. }
  20. drops {
  21. amount {
  22. Amount=1.0
  23. ContentVersion=1
  24. }
  25. drop="minecraft:coal"
  26. # If different than drop (eg. diamond)
  27. ore="minecraft:coal_ore"
  28. }
  29. },
  30. {
  31. deposits {
  32. "max y"=50
  33. "min y"=4
  34. # larger rarity = more loot
  35. rarity=35
  36. "tool types"=[
  37. diamond,
  38. gold,
  39. iron,
  40. stone
  41. ]
  42. }
  43. drops {
  44. amount {
  45. Amount=1.0
  46. ContentVersion=1
  47. }
  48. drop="minecraft:iron_ore"
  49. # If different than drop (eg. diamond)
  50. ore=null
  51. }
  52. },
  53. {
  54. deposits {
  55. "max y"=30
  56. "min y"=4
  57. # larger rarity = more loot
  58. rarity=28
  59. "tool types"=[
  60. diamond,
  61. gold,
  62. iron
  63. ]
  64. }
  65. drops {
  66. amount {
  67. Amount=1.0
  68. ContentVersion=1
  69. }
  70. drop="minecraft:gold_ore"
  71. # If different than drop (eg. diamond)
  72. ore=null
  73. }
  74. },
  75. {
  76. deposits {
  77. "max y"=25
  78. "min y"=4
  79. # larger rarity = more loot
  80. rarity=20
  81. "tool types"=[
  82. diamond,
  83. gold,
  84. iron
  85. ]
  86. }
  87. drops {
  88. amount {
  89. Base=5.0
  90. ContentVersion=1
  91. Variance {
  92. Amount=3.0
  93. ContentVersion=1
  94. }
  95. }
  96. drop="minecraft:redstone"
  97. # If different than drop (eg. diamond)
  98. ore="minecraft:redstone_ore"
  99. }
  100. },
  101. {
  102. deposits {
  103. "max y"=22
  104. "min y"=4
  105. # larger rarity = more loot
  106. rarity=15
  107. "tool types"=[
  108. diamond,
  109. gold,
  110. iron
  111. ]
  112. }
  113. drops {
  114. amount {
  115. Base=6.0
  116. ContentVersion=1
  117. Variance {
  118. Amount=4.0
  119. ContentVersion=1
  120. }
  121. }
  122. drop="minecraft:lapis_ore"
  123. # If different than drop (eg. diamond)
  124. ore="minecraft:lapis_block"
  125. }
  126. },
  127. {
  128. deposits {
  129. "max y"=18
  130. "min y"=4
  131. # larger rarity = more loot
  132. rarity=10
  133. "tool types"=[
  134. diamond,
  135. iron
  136. ]
  137. }
  138. drops {
  139. amount {
  140. Amount=1.0
  141. ContentVersion=1
  142. }
  143. drop="minecraft:diamond"
  144. # If different than drop (eg. diamond)
  145. ore="minecraft:diamond_ore"
  146. }
  147. },
  148. {
  149. deposits {
  150. "max y"=15
  151. "min y"=4
  152. # larger rarity = more loot
  153. rarity=2
  154. "tool types"=[
  155. diamond
  156. ]
  157. }
  158. drops {
  159. amount {
  160. Amount=1.0
  161. ContentVersion=1
  162. }
  163. drop="minecraft:emerald"
  164. # If different than drop (eg. diamond)
  165. ore="minecraft:emerald_ore"
  166. }
  167. }
  168. ]
  169. world=world
  170. },
  171. {
  172. dimension="minecraft:nether"
  173. "filler block"="minecraft:netherrack"
  174. ores=[
  175. {
  176. deposits {
  177. "max y"=256
  178. "min y"=4
  179. # larger rarity = more loot
  180. rarity=0
  181. "tool types"=[
  182. diamond,
  183. gold,
  184. iron
  185. ]
  186. }
  187. drops {
  188. amount {
  189. Amount=1.0
  190. ContentVersion=1
  191. }
  192. drop="minecraft:quartz"
  193. # If different than drop (eg. diamond)
  194. ore="minecraft:quartz_ore"
  195. }
  196. }
  197. ]
  198. world=world
  199. },
  200. {
  201. dimension="minecraft:the_end"
  202. "filler block"="minecraft:end_stone"
  203. ores=[]
  204. world=world
  205. }
  206. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement