custom.lua 697 B

123456789101112131415161718192021222324252627
  1. minetest.register_craft({
  2. output = 'nether:brick_deep',
  3. recipe = {
  4. {'nether:rack_deep', 'nether:rack_deep'},
  5. {'nether:rack_deep', 'nether:rack_deep'}
  6. }
  7. })
  8. local NETHER_CEILING = nether.DEPTH_CEILING
  9. local NETHER_FLOOR = nether.DEPTH_FLOOR
  10. local BLEND = 128
  11. local ore_ceiling = NETHER_CEILING - BLEND -- leave a solid 128 node cap of netherrack before introducing ores
  12. local ore_floor = NETHER_FLOOR + BLEND
  13. minetest.register_ore({
  14. ore_type = "scatter",
  15. ore = "epic:nether_basalt_with_huntite",
  16. wherein = "nether:basalt",
  17. clust_scarcity = 11 * 11 * 11,
  18. clust_num_ores = 3,
  19. clust_size = 2,
  20. y_max = ore_ceiling,
  21. y_min = ore_floor
  22. })