added basic corals to water age
This commit is contained in:
parent
0a279a9816
commit
0e40848b21
|
@ -375,6 +375,28 @@ multidimensions.register_dimension("prehistoric_australia",{
|
||||||
})
|
})
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "scatter",
|
||||||
|
ore = "default:coral_orange",
|
||||||
|
wherein = "default:water_source",
|
||||||
|
clust_scarcity = 7 * 7 * 7,
|
||||||
|
clust_num_ores = 5,
|
||||||
|
clust_size = 1,
|
||||||
|
y_min = 5501,
|
||||||
|
y_max = 5502,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "scatter",
|
||||||
|
ore = "default:coral_brown",
|
||||||
|
wherein = "default:water_source",
|
||||||
|
clust_scarcity = 7 * 7 * 7,
|
||||||
|
clust_num_ores = 5,
|
||||||
|
clust_size = 1,
|
||||||
|
y_min = 5501,
|
||||||
|
y_max = 5502,
|
||||||
|
})
|
||||||
|
|
||||||
--LBMs and ABMs
|
--LBMs and ABMs
|
||||||
|
|
||||||
minetest.register_lbm({
|
minetest.register_lbm({
|
||||||
|
|
Loading…
Reference in New Issue