mapgen.lua 497 B

12345678910111213141516171819202122
  1. minetest.register_ore({
  2. ore_type = "scatter",
  3. ore = "magic_materials:stone_with_egerum",
  4. wherein = "default:stone",
  5. clust_scarcity = 14 * 14 * 14,
  6. clust_num_ores = 5,
  7. clust_size = 3,
  8. y_max = -256,
  9. y_min = -31000,
  10. })
  11. minetest.register_ore({
  12. ore_type = "scatter",
  13. ore = "magic_materials:stone_with_februm",
  14. wherein = "default:stone",
  15. clust_scarcity = 13 * 13 * 13,
  16. clust_num_ores = 6,
  17. clust_size = 3,
  18. y_max = -256,
  19. y_min = -31000,
  20. })