generacioncita.lua 819 B

123456789101112131415161718192021222324252627282930313233343536
  1. -- UwU Generacioncita
  2. minetest.register_ore({
  3. ore_type = "scatter",
  4. ore = "uwu:stone_with_uwu",
  5. wherein = "default:stone",
  6. clust_scarcity = 16 * 16 * 16,
  7. clust_num_ores = 3,
  8. clust_size = 3,
  9. y_max = 31000,
  10. y_min = 1025,
  11. })
  12. minetest.register_ore({
  13. ore_type = "scatter",
  14. ore = "uwu:stone_with_uwu",
  15. wherein = "default:stone",
  16. clust_scarcity = 17 * 17 * 17,
  17. clust_num_ores = 3,
  18. clust_size = 4,
  19. y_max = -1000,
  20. y_min = -2500,
  21. })
  22. minetest.register_ore({
  23. ore_type = "scatter",
  24. ore = "uwu:stone_with_uwu",
  25. wherein = "default:stone",
  26. clust_scarcity = 15 * 15 * 15,
  27. clust_num_ores = 5,
  28. clust_size = 2,
  29. y_max = -2500,
  30. y_min = -5000,
  31. })