Change ore definitions to match default non-v6 mapgens

master
codefairy 2020-12-02 22:48:54 -05:00
parent 8f178448d3
commit 09e67a2433
1 changed files with 30 additions and 8 deletions

View File

@ -134,8 +134,8 @@ minetest.register_ore({
clust_scarcity = 18 * 18 * 18,
clust_num_ores = 3,
clust_size = 2,
y_max = -64,
y_min = -255,
y_max = -512,
y_min = -1023,
})
minetest.register_ore({
@ -145,7 +145,7 @@ minetest.register_ore({
clust_scarcity = 14 * 14 * 14,
clust_num_ores = 5,
clust_size = 3,
y_max = -256,
y_max = -1024,
y_min = -31000,
})
@ -167,7 +167,18 @@ minetest.register_ore({
clust_scarcity = 36 * 36 * 36,
clust_num_ores = 3,
clust_size = 2,
y_max = -1024,
y_max = -2048,
y_min = -4095,
})
minetest.register_ore({
ore_type = "scatter",
ore = "maggems:misi",
wherein = "default:stone",
clust_scarcity = 36 * 36 * 36,
clust_num_ores = 3,
clust_size = 2,
y_max = -4096,
y_min = -31000,
})
@ -189,8 +200,8 @@ minetest.register_ore({
clust_scarcity = 18 * 18 * 18,
clust_num_ores = 3,
clust_size = 2,
y_max = -64,
y_min = -255,
y_max = -512,
y_min = -1023,
})
minetest.register_ore({
@ -200,7 +211,7 @@ minetest.register_ore({
clust_scarcity = 14 * 14 * 14,
clust_num_ores = 5,
clust_size = 3,
y_max = -256,
y_max = -1024,
y_min = -31000,
})
@ -222,6 +233,17 @@ minetest.register_ore({
clust_scarcity = 36 * 36 * 36,
clust_num_ores = 3,
clust_size = 2,
y_max = -1024,
y_max = -2048,
y_min = -4095,
})
minetest.register_ore({
ore_type = "scatter",
ore = "maggems:musu",
wherein = "default:stone",
clust_scarcity = 36 * 36 * 36,
clust_num_ores = 3,
clust_size = 2,
y_max = -4096,
y_min = -31000,
})