Browse Source

changed ore generation params to make sense

master
poikilos 6 years ago
committed by Jacob Gustafson
parent
commit
17900c8528
  1. 33
      patches/Bucket_Game-patched/mods/coderbuild/nftools/init.lua

33
patches/Bucket_Game-patched/mods/coderbuild/nftools/init.lua

@ -101,8 +101,8 @@ minetest.register_ore({
ore = "nftools:stone_with_bismuth", ore = "nftools:stone_with_bismuth",
wherein = "default:stone", wherein = "default:stone",
clust_scarcity = 24*24*24, clust_scarcity = 24*24*24,
clust_num_ores = 27, clust_num_ores = 4,
clust_size = 6, clust_size = 3,
y_max = -64, y_max = -64,
y_min = -31000, y_min = -31000,
flags = "absheight", flags = "absheight",
@ -114,11 +114,11 @@ minetest.register_ore({
ore_type = "scatter", ore_type = "scatter",
ore = "nftools:stone_with_amber", ore = "nftools:stone_with_amber",
wherein = "default:stone", wherein = "default:stone",
clust_scarcity = 24*24*24, clust_scarcity = 48*48*48,
clust_num_ores = 27, clust_num_ores = 1,
clust_size = 6, clust_size = 2,
y_max = -64, y_max = -8,
y_min = -31000, y_min = -64,
flags = "absheight", flags = "absheight",
}) })
@ -128,12 +128,11 @@ minetest.register_ore({
ore_type = "scatter", ore_type = "scatter",
ore = "nftools:stone_with_blackopal", ore = "nftools:stone_with_blackopal",
wherein = "default:stone", wherein = "default:stone",
clust_scarcity = 24*24*24, clust_scarcity = 48*48*48,
clust_num_ores = 27, clust_num_ores = 1,
clust_size = 6, clust_size = 2,
y_max = -64, y_max = -128,
y_min = -31000, y_min = -256,
flags = "absheight",
}) })
-- =================================================================== -- ===================================================================
@ -142,11 +141,11 @@ minetest.register_ore({
ore_type = "scatter", ore_type = "scatter",
ore = "nftools:stone_with_turquoise", ore = "nftools:stone_with_turquoise",
wherein = "default:stone", wherein = "default:stone",
clust_scarcity = 13*13*13, clust_scarcity = 24*24*24,
clust_num_ores = 5, clust_num_ores = 3,
clust_size = 3, clust_size = 3,
y_max = -5, y_max = -8,
y_min = -40, y_min = -64,
flags = "absheight", flags = "absheight",
}) })

Loading…
Cancel
Save