Fixed cloudlands and floatlands, changed their biome heights

This commit is contained in:
N-Nachtigal 2025-05-26 15:53:14 +02:00
parent de389ade0f
commit 60d57b3d77
82 changed files with 164 additions and 2980 deletions

View file

@ -203,7 +203,7 @@ register_decoration(ethereal.caves, {
register_decoration(ethereal.frost, {
place_on = {"ethereal:crystal_dirt"},
fill_ratio = 0.02, y_min = 1, y_max = 1750,
fill_ratio = 0.02, y_min = 1, y_max = 4000,
biomes = {"frost", "frost_floatland"},
decoration = {"ethereal:crystal_spike", "ethereal:crystalgrass"}})

View file

@ -192,6 +192,7 @@ register_decoration(1, {
"frost",
"taiga",
"glacier",
"frost_floatland",
},
schematic = ethereal.yellowtree,
flags = "place_center_x,place_center_z",
@ -252,7 +253,7 @@ register_decoration(ethereal.glacier, {
register_decoration(ethereal.frost, {
place_on = "ethereal:crystal_dirt",
fill_ratio = 0.01, y_min = 1, y_max = 1750,
fill_ratio = 0.01, y_min = 1, y_max = 4000,
biomes = {"frost", "frost_floatland"},
schematic = ethereal.frosttrees,
spawn_by = "ethereal:crystal_dirt", num_spawn_by = 8})
@ -923,6 +924,7 @@ if ethereal.logs == 1 then
end
-- deep see fumerole / vent
print("register_decoration for nether:fumarole")
register_decoration(minetest.get_modpath("nether") and 1, {
name = "nether:fumarole",
@ -940,9 +942,10 @@ register_decoration(minetest.get_modpath("nether") and 1, {
},
place_offset_y = -1,
spawn_by = {"default:water_source"}, num_spawn_by = 8})
print("register_decoration for nether:fumarole done")
if minetest.get_modpath("nether") then
print("register_lbm for nether:fumarole")
minetest.register_lbm({
name = ":nether:extra_fumarole_timer",
nodenames = {"nether:fumarole"},
@ -950,4 +953,6 @@ if minetest.get_modpath("nether") then
action = function(pos) minetest.get_node_timer(pos):start(10) end
})
print("register_lbm for nether:fumarole done ")
end
print("whole nether:fumarole stuff done ")