Update 'mods/ethereal/mapgen.lua'

This commit is contained in:
thunderdog1138 2020-07-15 16:45:27 +00:00
parent 178b83c020
commit 44cab42354
1 changed files with 15 additions and 16 deletions

View File

@ -263,22 +263,21 @@ minetest.register_decoration({
num_spawn_by = 8, num_spawn_by = 8,
}) })
-- large lava crater -- large lava crater
minetest.register_decoration({ minetest.register_decoration({
deco_type = "schematic", deco_type = "schematic",
place_on = {"ethereal:charred_dirt"}, place_on = {"ethereal:charred_dirt"},
sidelen = 80, sidelen = 80,
fill_ratio = 0.003, fill_ratio = 0.003,
biomes = {"volcanic"}, biomes = {"volcanic"},
y_min = 1, y_min = 1,
y_max = 100, y_max = 100,
schematic = ethereal.volcanol, schematic = ethereal.volcanol,
flags = "place_center_x, place_center_z", flags = "place_center_x, place_center_z",
spawn_by = "ethereal:charred_dirt", spawn_by = "ethereal:charred_dirt",
num_spawn_by = 8, num_spawn_by = 8,
rotation = "random", rotation = "random",
}) })
end
-- pine tree -- pine tree
add_schem({"ethereal:cold_dirt"}, 0.025, {"snowy"}, 10, 40, ethereal.pine_tree, 1) add_schem({"ethereal:cold_dirt"}, 0.025, {"snowy"}, 10, 40, ethereal.pine_tree, 1)