mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-13 22:10:31 +01:00
35 lines
706 B
Lua
Executable File
35 lines
706 B
Lua
Executable File
-- Register ores
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "moreores:mineral_mithril",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 15 * 15 * 15,
|
|
clust_num_ores = 2,
|
|
clust_size = 3,
|
|
y_min = -31000,
|
|
y_max = -2048,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "moreores:mineral_mithril",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 22 * 22 * 22,
|
|
clust_num_ores = 5,
|
|
clust_size = 5,
|
|
y_min = -31000,
|
|
y_max = -4096,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "moreores:mineral_mithril",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 28 * 28 * 28,
|
|
clust_num_ores = 20,
|
|
clust_size = 7,
|
|
y_min = -31000,
|
|
y_max = -12288,
|
|
})
|