forked from ThomasMonroe314/ugxrealms
45 lines
1.0 KiB
Lua
45 lines
1.0 KiB
Lua
-- More gold at lower depths.
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "default:stone_with_gold",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 15 * 15 * 15,
|
|
clust_num_ores = 3,
|
|
clust_size = 2,
|
|
y_min = -255,
|
|
y_max = -64,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "default:stone_with_gold",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 13 * 13 * 13,
|
|
clust_num_ores = 5,
|
|
clust_size = 3,
|
|
y_min = -1023,
|
|
y_max = -256,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "default:stone_with_gold",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 11 * 11 * 11,
|
|
clust_num_ores = 7,
|
|
clust_size = 5,
|
|
y_min = -4095,
|
|
y_max = -1024,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "default:stone_with_gold",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 9 * 9 * 9,
|
|
clust_num_ores = 11,
|
|
clust_size = 7,
|
|
y_min = -31000,
|
|
y_max = -4096,
|
|
})
|