2018-08-27 21:25:56 +02:00
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:desert_stone_with_coal",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:desert_stone",
|
|
|
|
clust_scarcity = 9 * 9 * 9,
|
|
|
|
clust_num_ores = 10,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -113,
|
|
|
|
y_max = 64,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:desert_stone_with_iron",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:desert_stone",
|
|
|
|
clust_scarcity = 9 * 9 * 9,
|
|
|
|
clust_num_ores = 10,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -113,
|
|
|
|
y_max = 64,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:desert_stone_with_copper",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:desert_stone",
|
|
|
|
clust_scarcity = 11 * 11 * 11,
|
|
|
|
clust_num_ores = 6,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -113,
|
|
|
|
y_max = 64,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:desert_stone_with_tin",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:desert_stone",
|
|
|
|
clust_scarcity = 7 * 7 * 7,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 7,
|
|
|
|
y_min = -113,
|
|
|
|
y_max = 12,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Beware of Meze
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:meze",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 40 * 40 * 40,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 64,
|
|
|
|
flags = "absheight",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:meze",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:desert_stone",
|
|
|
|
clust_scarcity = 40 * 40 * 40,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
|
|
|
y_min = -113,
|
|
|
|
y_max = 64,
|
|
|
|
flags = "absheight",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Acid lakes in gravel:
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
2019-04-07 13:14:04 +02:00
|
|
|
ore = "nalc:acid_source",
|
2018-08-27 21:25:56 +02:00
|
|
|
wherein = "default:gravel",
|
|
|
|
clust_scarcity = 26 * 26 * 26,
|
|
|
|
clust_num_ores = 64,
|
|
|
|
clust_size = 5,
|
|
|
|
y_min = -30000,
|
|
|
|
y_max = 64,
|
|
|
|
})
|