mapgen.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. local ore_min = stoneworld.REALM_START
  2. local ore_max = stoneworld.REALM_END
  3. oregen.register_ore({
  4. ore_type = "scatter",
  5. ore = "xtraores:basalt_with_nickel",
  6. wherein = {"darkage:basaltic", "darkage:basaltic_rubble"},
  7. clust_scarcity = 17 * 17 * 17,
  8. clust_num_ores = 4,
  9. clust_size = 3,
  10. y_min = ore_min,
  11. y_max = ore_max,
  12. })
  13. oregen.register_ore({
  14. ore_type = "scatter",
  15. ore = "xtraores:basalt_with_platinum",
  16. wherein = {"darkage:basaltic", "darkage:basaltic_rubble"},
  17. clust_scarcity = 17 * 17 * 17,
  18. clust_num_ores = 4,
  19. clust_size = 3,
  20. y_min = ore_min,
  21. y_max = ore_max,
  22. })
  23. oregen.register_ore({
  24. ore_type = "scatter",
  25. ore = "xtraores:basalt_with_palladium",
  26. wherein = {"darkage:basaltic", "darkage:basaltic_rubble"},
  27. clust_scarcity = 17 * 17 * 17,
  28. clust_num_ores = 4,
  29. clust_size = 3,
  30. y_min = ore_min,
  31. y_max = ore_max,
  32. })
  33. oregen.register_ore({
  34. ore_type = "scatter",
  35. ore = "xtraores:basalt_with_cobalt",
  36. wherein = {"darkage:basaltic", "darkage:basaltic_rubble"},
  37. clust_scarcity = 17 * 17 * 17,
  38. clust_num_ores = 4,
  39. clust_size = 3,
  40. y_min = ore_min,
  41. y_max = ore_max,
  42. })