Change ore definitions to match default non-v6 mapgens
This commit is contained in:
parent
8f178448d3
commit
09e67a2433
38
init.lua
38
init.lua
@ -134,8 +134,8 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 18 * 18 * 18,
|
clust_scarcity = 18 * 18 * 18,
|
||||||
clust_num_ores = 3,
|
clust_num_ores = 3,
|
||||||
clust_size = 2,
|
clust_size = 2,
|
||||||
y_max = -64,
|
y_max = -512,
|
||||||
y_min = -255,
|
y_min = -1023,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
@ -145,7 +145,7 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 14 * 14 * 14,
|
clust_scarcity = 14 * 14 * 14,
|
||||||
clust_num_ores = 5,
|
clust_num_ores = 5,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_max = -256,
|
y_max = -1024,
|
||||||
y_min = -31000,
|
y_min = -31000,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -167,7 +167,18 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 36 * 36 * 36,
|
clust_scarcity = 36 * 36 * 36,
|
||||||
clust_num_ores = 3,
|
clust_num_ores = 3,
|
||||||
clust_size = 2,
|
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,
|
y_min = -31000,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -189,8 +200,8 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 18 * 18 * 18,
|
clust_scarcity = 18 * 18 * 18,
|
||||||
clust_num_ores = 3,
|
clust_num_ores = 3,
|
||||||
clust_size = 2,
|
clust_size = 2,
|
||||||
y_max = -64,
|
y_max = -512,
|
||||||
y_min = -255,
|
y_min = -1023,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
@ -200,7 +211,7 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 14 * 14 * 14,
|
clust_scarcity = 14 * 14 * 14,
|
||||||
clust_num_ores = 5,
|
clust_num_ores = 5,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_max = -256,
|
y_max = -1024,
|
||||||
y_min = -31000,
|
y_min = -31000,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -222,6 +233,17 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 36 * 36 * 36,
|
clust_scarcity = 36 * 36 * 36,
|
||||||
clust_num_ores = 3,
|
clust_num_ores = 3,
|
||||||
clust_size = 2,
|
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,
|
y_min = -31000,
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user