Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.45 KB | None | 0 0
  1. [
  2. {
  3. "comment": [
  4. "Coal is disabled by default because, frankly, it's kinda abundant anyway.",
  5. "Also, this demonstrates use of the comment field. It isn't parsed, it's just",
  6. "what it says. A comment.",
  7. "Explanation of the fields:",
  8. " enabled -- handy to quickly disable ores without removing them ore setting",
  9. " their weight to zero.",
  10. " comment -- just that, a comment field, useful to document ore settings.",
  11. " state -- defines the actual ore that will be dropped by the bedrock ore.",
  12. " dimension -- allows defining what dimension *types* an ore can be generated",
  13. " in. Legal values are 'overworld', 'nether' and '*' (for any).",
  14. " defaults to 'overworld'.",
  15. " weight -- this defines the weight of the ore type in relation to others.",
  16. " It is used to determine which ore to use when generating a vein.",
  17. " A weight divided by the sum of all weights of ores that are also",
  18. " valid results in the probability of the ore being picked.",
  19. " width* -- the min and max width of a vein. This defines the horizontal",
  20. " 'bounds' of a vein (their actual top-view shape is an ellipse).",
  21. " This is more or less decorative, but the wider a vein the easier",
  22. " it will be to find. Max value is 8.",
  23. " count* -- the min and max number of of blocks to generate per vein. If the",
  24. " max is larger than the number of candidate blocks the yield is",
  25. " simply distributed across the blocks that *do* exist.",
  26. " yield* -- the min and max amount of actual resources contained in a vein.",
  27. " This is the number of times a player can harvest the bedrock ores",
  28. " in the vein/the miner can pull a block from the vein. The actual",
  29. " yields will be distributed across all the blocks in the vein.",
  30. "",
  31. "As for modded ores, they're right below the vanilla ones. Order in which the",
  32. "default config tries to use ores from mods if multiple are present:",
  33. "Thermal Foundation, then IC2, then Immersive Engineering."
  34. ],
  35. "state": {
  36. "name": "geolosys:ore_vanilla",
  37. "properties": {
  38. "type": "coal"
  39. }
  40. },
  41. "dimension": "overworld",
  42. "weight": 1,
  43. "widthMin": 5,
  44. "widthMax": 7,
  45. "heightMin": 2,
  46. "heightMax": 4,
  47. "countMin": 12,
  48. "countMax": 20,
  49. "yieldMin": 340,
  50. "yieldMax": 425
  51. },
  52. {
  53. "state": {
  54. "name": "geolosys:ore",
  55. "properties": {
  56. "type": "hematite"
  57. }
  58. },
  59. "dimension": "overworld",
  60. "weight": 1,
  61. "widthMin": 4,
  62. "widthMax": 6,
  63. "heightMin": 2,
  64. "heightMax": 4,
  65. "countMin": 10,
  66. "countMax": 16,
  67. "yieldMin": 180,
  68. "yieldMax": 225
  69. },
  70. {
  71. "state": {
  72. "name": "geolosys:ore_vanilla",
  73. "properties": {
  74. "type": "gold"
  75. }
  76. },
  77. "dimension": "overworld",
  78. "weight": 1,
  79. "widthMin": 3,
  80. "widthMax": 5,
  81. "heightMin": 2,
  82. "heightMax": 4,
  83. "countMin": 8,
  84. "countMax": 12,
  85. "yieldMin": 18,
  86. "yieldMax": 22
  87. },
  88. {
  89. "state": {
  90. "name": "geolosys:ore_vanilla",
  91. "properties": {
  92. "type": "kimberlite"
  93. }
  94. },
  95. "dimension": "overworld",
  96. "weight": 1,
  97. "widthMin": 2,
  98. "widthMax": 4,
  99. "heightMin": 2,
  100. "heightMax": 4,
  101. "countMin": 4,
  102. "countMax": 8,
  103. "yieldMin": 8,
  104. "yieldMax": 10
  105. },
  106. {
  107. "state": {
  108. "name": "geolosys:ore_vanilla",
  109. "properties": {
  110. "type": "cinnabar"
  111. }
  112. },
  113. "dimension": "overworld",
  114. "weight": 1,
  115. "widthMin": 3,
  116. "widthMax": 5,
  117. "heightMin": 2,
  118. "heightMax": 4,
  119. "countMin": 8,
  120. "countMax": 10,
  121. "yieldMin": 64,
  122. "yieldMax": 80
  123. },
  124. {
  125. "state": {
  126. "name": "geolosys:ore_vanilla",
  127. "properties": {
  128. "type": "lapis"
  129. }
  130. },
  131. "dimension": "overworld",
  132. "weight": 1,
  133. "widthMin": 2,
  134. "widthMax": 3,
  135. "heightMin": 2,
  136. "heightMax": 4,
  137. "countMin": 4,
  138. "countMax": 6,
  139. "yieldMin": 7,
  140. "yieldMax": 9
  141. },
  142. {
  143. "comment": [
  144. "Usually emeralds only generate in hills biomes, and there any number",
  145. "between 3 and 8 can pop up. Since we can anywhere, we lean towards the",
  146. "lower end for our default."
  147. ],
  148. "state": {
  149. "name": "minecraft:emerald_ore"
  150. },
  151. "dimension": "overworld",
  152. "weight": 1,
  153. "widthMin": 2,
  154. "widthMax": 3,
  155. "heightMin": 2,
  156. "heightMax": 4,
  157. "countMin": 2,
  158. "countMax": 4,
  159. "yieldMin": 4,
  160. "yieldMax": 5
  161. },
  162. {
  163. "state": {
  164. "name": "minecraft:quartz_ore"
  165. },
  166. "dimension": "nether",
  167. "weight": 1,
  168. "widthMin": 2,
  169. "widthMax": 5,
  170. "heightMin": 2,
  171. "heightMax": 4,
  172. "countMin": 8,
  173. "countMax": 10,
  174. "yieldMin": 224,
  175. "yieldMax": 280
  176. },
  177. {
  178. "state": {
  179. "name": "geolosys:ore_vanilla",
  180. "properties": {
  181. "type": "quartz"
  182. }
  183. },
  184. "dimension": "overworld",
  185. "weight": 1,
  186. "widthMin": 2,
  187. "widthMax": 5,
  188. "heightMin": 2,
  189. "heightMax": 4,
  190. "countMin": 8,
  191. "countMax": 10,
  192. "yieldMin": 224,
  193. "yieldMax": 280
  194. },
  195. {
  196. "comment": [
  197. "Glowstone... now glowstone is such a precious snowflake. How it is",
  198. "generated is honestly kinda nuts. So there's one 'seed' glowstone,",
  199. "right. After that it uses a distribution favoring the column going",
  200. "straight down from there to sample random positions 1500 bloody times",
  201. "(not even kidding) and converts the sampled position to glowstone if",
  202. "it already has a glowstone neighbor.",
  203. "The sample area is 15x12x15, and the distribution is basically like",
  204. "rolling two dice, but I have no idea how to model the 'if next to",
  205. "existing glowstone', soooo let's ballpark it to ~1/64 of that area",
  206. "getting filled, so 42 blocks. And there's 1-10 of those per chunk.",
  207. "Yeah, this is random af... let's go with 42*5."
  208. ],
  209. "state": {
  210. "name": "minecraft:glowstone"
  211. },
  212. "dimension": "nether",
  213. "weight": 1,
  214. "widthMin": 5,
  215. "widthMax": 8,
  216. "heightMin": 2,
  217. "heightMax": 4,
  218. "countMin": 10,
  219. "countMax": 14,
  220. "yieldMin": 210,
  221. "yieldMax": 262
  222. },
  223. {
  224. "comment": [
  225. "---------- Thermal Foundation ores -----------------------------------"
  226. ],
  227. "state": {
  228. "name": "geolosys:ore",
  229. "properties": {
  230. "type": "malachite"
  231. }
  232. },
  233. "dimension": "overworld",
  234. "weight": 1,
  235. "widthMin": 4,
  236. "widthMax": 6,
  237. "heightMin": 2,
  238. "heightMax": 4,
  239. "countMin": 10,
  240. "countMax": 16,
  241. "yieldMin": 64,
  242. "yieldMax": 80,
  243. "group": "copper"
  244. },
  245. {
  246. "state": {
  247. "name": "geolosys:ore",
  248. "properties": {
  249. "type": "azurite"
  250. }
  251. },
  252. "dimension": "overworld",
  253. "weight": 1,
  254. "widthMin": 4,
  255. "widthMax": 6,
  256. "heightMin": 2,
  257. "heightMax": 4,
  258. "countMin": 10,
  259. "countMax": 16,
  260. "yieldMin": 64,
  261. "yieldMax": 80,
  262. "group": "copper"
  263. },
  264. {
  265. "state": {
  266. "name": "geolosys:ore",
  267. "properties": {
  268. "type": "teallite"
  269. }
  270. },
  271. "dimension": "overworld",
  272. "weight": 1,
  273. "widthMin": 4,
  274. "widthMax": 6,
  275. "heightMin": 2,
  276. "heightMax": 4,
  277. "countMin": 10,
  278. "countMax": 16,
  279. "yieldMin": 56,
  280. "yieldMax": 70,
  281. "group": "tin"
  282. },
  283. {
  284. "state": {
  285. "name": "geolosys:ore",
  286. "properties": {
  287. "type": "cassiterite"
  288. }
  289. },
  290. "dimension": "overworld",
  291. "weight": 1,
  292. "widthMin": 4,
  293. "widthMax": 6,
  294. "heightMin": 2,
  295. "heightMax": 4,
  296. "countMin": 10,
  297. "countMax": 16,
  298. "yieldMin": 56,
  299. "yieldMax": 70,
  300. "group": "tin"
  301. },
  302. {
  303. "state": {
  304. "name": "geolosys:ore",
  305. "properties": {
  306. "type": "galena"
  307. }
  308. },
  309. "dimension": "overworld",
  310. "weight": 1,
  311. "widthMin": 3,
  312. "widthMax": 5,
  313. "heightMin": 2,
  314. "heightMax": 4,
  315. "countMin": 8,
  316. "countMax": 12,
  317. "yieldMin": 32,
  318. "yieldMax": 40,
  319. "group": "silver"
  320. },
  321. {
  322. "state": {
  323. "name": "geolosys:ore",
  324. "properties": {
  325. "type": "galena"
  326. }
  327. },
  328. "dimension": "overworld",
  329. "weight": 1,
  330. "widthMin": 3,
  331. "widthMax": 5,
  332. "heightMin": 2,
  333. "heightMax": 4,
  334. "countMin": 8,
  335. "countMax": 12,
  336. "yieldMin": 32,
  337. "yieldMax": 40,
  338. "group": "lead"
  339. },
  340. {
  341. "state": {
  342. "name": "geolosys:ore",
  343. "properties": {
  344. "type": "limonite"
  345. }
  346. },
  347. "dimension": "overworld",
  348. "weight": 1,
  349. "widthMin": 2,
  350. "widthMax": 4,
  351. "heightMin": 2,
  352. "heightMax": 4,
  353. "countMin": 4,
  354. "countMax": 8,
  355. "yieldMin": 8,
  356. "yieldMax": 10,
  357. "group": "nickel"
  358. },
  359. {
  360. "comment": [
  361. "---------- Non-standard Thermal Foundation ores ----------------------",
  362. "",
  363. "The following Thermal Foundation ores are not enabled in regular TF",
  364. "oregen settings, so disabled here, too. At least according to https://git.io/v5k95"
  365. ],
  366. "state": {
  367. "name": "geolosys:ore",
  368. "properties": {
  369. "type": "bauxite"
  370. }
  371. },
  372. "dimension": "overworld",
  373. "weight": 1,
  374. "widthMin": 3,
  375. "widthMax": 5,
  376. "heightMin": 2,
  377. "heightMax": 4,
  378. "countMin": 8,
  379. "countMax": 12,
  380. "yieldMin": 64,
  381. "yieldMax": 80,
  382. "group": "aluminum"
  383. },
  384. {
  385. "state": {
  386. "name": "geolosys:ore",
  387. "properties": {
  388. "type": "platinum"
  389. }
  390. },
  391. "dimension": "overworld",
  392. "weight": 1,
  393. "widthMin": 2,
  394. "widthMax": 4,
  395. "heightMin": 2,
  396. "heightMax": 4,
  397. "countMin": 4,
  398. "countMax": 8,
  399. "yieldMin": 8,
  400. "yieldMax": 10,
  401. "group": "platinum"
  402. },
  403. {
  404. "state": {
  405. "name": "geolosys:ore",
  406. "properties": {
  407. "type": "autunite"
  408. }
  409. },
  410. "dimension": "overworld",
  411. "weight": 1,
  412. "widthMin": 2,
  413. "widthMax": 3,
  414. "heightMin": 2,
  415. "heightMax": 4,
  416. "countMin": 2,
  417. "countMax": 4,
  418. "yieldMin": 8,
  419. "yieldMax": 10,
  420. "group": "uranium",
  421. "groupOrder": 10
  422. }
  423. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement