-- clear default mapgen biomes, decorations and ores minetest.clear_registered_biomes() minetest.clear_registered_decorations() --minetest.clear_registered_ores() local path = minetest.get_modpath("ethereal") dofile(path .. "/ores.lua") path = path .. "/schematics/" local dpath = minetest.get_modpath("default") .. "/schematics/" -- tree schematics dofile(path .. "orange_tree.lua") dofile(path .. "banana_tree.lua") dofile(path .. "bamboo_tree.lua") dofile(path .. "birch_tree.lua") dofile(path .. "bush.lua") dofile(path .. "waterlily.lua") --= Biomes (Minetest 0.4.13 and above) local add_biome = function(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p) if p ~= 1 then return end minetest.register_biome({ name = a, node_dust = b, node_top = c, depth_top = d, node_filler = e, depth_filler = f, node_stone = g, node_water_top = h, depth_water_top = i, node_water = j, node_river_water = k, y_min = l, y_max = m, heat_point = n, humidity_point = o, }) end add_biome("underground", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, -31000, -192, 50, 50, 1) add_biome("mountain", "default:snowblock", "default:snow", 1, "default:snowblock", 2, "default:stone", "default:ice", nil, nil, nil, 311, 31000, 0, 50, 1) add_biome("desert", nil, "default:desert_sand", 1, "default:desert_sand", 3, "default:desert_stone", nil, nil, nil, nil, 4, 23, 95, 5, ethereal.desert) add_biome("desert_ocean", nil, "default:sand", 1, "default:sand", 2, "default:desert_stone", nil, nil, nil, nil, -192, 3, 95, 5, ethereal.desert) add_biome("sandstone", nil, "default:sandstone", 1, "default:sandstone", 1, "default:sandstone", nil, nil, nil, nil, 7, 78, 75, 2, ethereal.sandstone) add_biome("sandstone_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 6, 75, 2, ethereal.sandstone) add_biome("savannah", nil, "default:dirt_with_dry_grass", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 2, 67, 84, 24, ethereal.savannah) add_biome("savannah_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 1, 84, 24, ethereal.savannah) add_biome("fiery", nil, "ethereal:fiery_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 5, 50, 100, 0, ethereal.fiery) add_biome("fiery_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 4, 100, 0, ethereal.fiery) add_biome("caves_dunes", nil, "default:gravel", 3, "air", 8, nil, nil, nil, nil, nil, 32, 120, 10, 2, ethereal.caves) add_biome("caves", nil, "default:desert_stone", 3, "air", 8, nil, nil, nil, nil, nil, 4, 32, 10, 2, ethereal.caves) add_biome("caves_ocean", "default:gravel", "default:sand", 3, "air", 8, nil, nil, nil, nil, nil, -14, 3, 10, 2, ethereal.caves) add_biome("glacier", "default:snowblock", "default:snowblock", 1, "default:snowblock", 3, "default:ice", "default:ice", 10, nil, "default:ice", 351, 31000, 0, 95, ethereal.glacier) add_biome("glacier_ocean", "default:snowblock", "default:silver_sand", 1, "default:silver_sand", 3, "default:ice", "default:ice", 2, "default:ice", "default:gravel", 320, 350, 0, 95, ethereal.glacier) add_biome("clearing", nil, "ethereal:green_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 1, 85, 42, 65, 1) --[[ add_biome("bacon", "bacon:cookedblock", "bacon:cookedblock", 1, "bacon:cookedblock", 3, "bacon:rawblock", "mobs:cheeseblock", 10, nil, nil, 1, 6, 0, 0, ethereal.glacier) add_biome("candy", nil, "mtcandy:dotted_green", 1, "mtcandy:dotted_yellow", 3, "mtcandy:dotted_orange", "mtcandy:candyrec_bluecyan", 10, nil, nil, 4, 80, 0, 0, ethereal.glacier) add_biome("candytwo", nil, "mtcandy:daisy", 1, "mtcandy:dotted_orange", 3, "mtcandy:dotted_yellow", "mtcandy:candyrec_bluecyan", 10, nil, nil, 16, 60, 0, 0, ethereal.glacier) add_biome("candythree", nil, "mtcandy:dotted_green", 1, "mtcandy:dotted_pink", 3, "mtcandy:orange", nil, 5, nil, nil, 6, 32, 0, 0, ethereal.glacier) add_biome("candythreehalf", nil, "mtcandy:dotted_green", 1, "mtcandy:dotted_pink", 3, "mtcandy:emenems", nil, 5, nil, nil, 16, 54, 0, 0, ethereal.glacier) add_biome("candyfour", nil, "mtcandy:daisy", 1, "mtcandy:dotted_pink", 3, "mtcandy:milk_choco", nil, 10, nil, nil, 28, 42, 0, 0, ethereal.glacier) ]] add_biome("stone_grassland", nil, "ethereal:green_dirt", 1, "default:stone", 3, nil, nil, nil, nil, nil, 1, 85, 35, 56, 1) add_biome("sandstone_grassland", nil, "ethereal:green_dirt", 1, "default:sandstone", 3, nil, nil, nil, nil, nil, 1, 85, 36, 46, 1) add_biome("bamboo", nil, "ethereal:bamboo_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 3, 120, 40, 65, ethereal.bamboo) add_biome("bamboo_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 2, 40, 65, ethereal.bamboo) add_biome("mesa", nil, "ethereal:mesa_dirt", 1, "bakedclay:orange", 15, nil, nil, nil, nil, nil, 3, 92, 28, 100, ethereal.mesa) add_biome("mesa_ocean", nil, "default:gravel", 1, "default:gravel", 2, nil, nil, nil, nil, nil, -192, 2, 28, 100, ethereal.mesa) add_biome("grassytwo", nil, "ethereal:green_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 2, 124, 29, 98, ethereal.grassytwo) add_biome("grassytwo_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 1, 29, 98, ethereal.grassytwo) add_biome("alpine", nil, "default:dirt_with_snow", 1, "default:dirt", 2, nil, nil, 1, "default:ice", nil, 221, 310, 4, 65, ethereal.alpine) add_biome("snowy", nil, "ethereal:cold_dirt", 1, "default:dirt", 2, nil, nil, nil, nil, nil, 120, 220, 16, 35, ethereal.snowy) add_biome("frost", nil, "ethereal:crystal_dirt", 1, "default:dirt", 7, nil, "default:ice", 1, nil, "default:ice", 130, 185, 9, 42, ethereal.frost) add_biome("frost_ocean", nil, "default:silver_sand", 1, "default:silver_sand", 2, nil, nil, nil, nil, nil, 90, 129, 9, 42, ethereal.frost) add_biome("grassy", nil, "ethereal:green_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 6, 119, 50, 40, ethereal.grassy) add_biome("grassy_dunes", nil, "defaut:sand", 1, "defaut:gravel", 3, nil, nil, nil, nil, nil, 5, 5, 50, 40, ethereal.grassy) add_biome("grassy_ocean", nil, "defaut:sand", 2, "default:gravel", 1, nil, nil, nil, nil, nil, -310, 4, 50, 40, ethereal.grassy) add_biome("grayness", nil, "ethereal:gray_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 1, 4, 85, 92, ethereal.grayness) add_biome("grayness_ocean", nil, "default:silver_sand", 1, "default:silver_sand", 2, nil, nil, nil, nil, nil, -192, 0, 60, 72, ethereal.grayness) add_biome("graynesstwo", nil, "ethereal:gray_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 2, 4, 42, 60, ethereal.grayness) add_biome("prairie", nil, "ethereal:prairie_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 3, 26, 25, 40, ethereal.prairie) add_biome("prairie_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 2, 25, 40, ethereal.prairie) add_biome("jumble", nil, "ethereal:green_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 2, 71, 25, 50, ethereal.jumble) add_biome("jumble_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 1, 25, 50, ethereal.jumble) add_biome("junglee", nil, "ethereal:jungle_dirt", 1, "default:dirt", 6, nil, nil, nil, nil, nil, 3, 71, 85, 82, ethereal.junglee) add_biome("junglee_ocean", nil, "default:gravel", 3, "default:clay", 4, nil, nil, nil, nil, nil, -192, 2, 85, 82, ethereal.junglee) add_biome("grove", nil, "ethereal:grove_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 3, 23, 45, 35, ethereal.grove) add_biome("grove_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 2, 45, 35, ethereal.grove) add_biome("mushroom", nil, "ethereal:mushroom_dirt", 1, "default:dirt", 8, nil, nil, nil, nil, nil, 3, 14, 45, 55, ethereal.mushroom) add_biome("mushroom_ocean", nil, "default:silver_sand", 1, "default:silver_sand", 8, nil, nil, nil, nil, nil, -192, 2, 45, 55, ethereal.mushroom) add_biome("quicksand", nil, "ethereal:quicksand2", 3, "default:gravel", 1, nil, nil, nil, nil, nil, 1, 1, 50, 38, ethereal.quicksand) add_biome("plains", nil, "ethereal:dry_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 3, 86, 35, 32, ethereal.plains) add_biome("plains_ocean", nil, "default:sand", 1, "default:sand", 2, nil, nil, nil, nil, nil, -192, 2, 35, 32, ethereal.plains) add_biome("sandclay", nil, "default:sand", 3, "default:clay", 2, nil, nil, nil, nil, nil, 1, 2, 72, 86, ethereal.sandclay) add_biome("swamp", nil, "ethereal:swamp_dirt", 1, "default:dirt", 3, nil, nil, nil, nil, nil, 2, 7, 80, 95, ethereal.swamp) add_biome("swamp_ocean", nil, "default:sand", 2, "default:clay", 2, nil, nil, nil, nil, nil, -192, 1, 80, 95, ethereal.swamp) --= schematic decorations local add_schem = function(a, b, c, d, e, f, g) if g ~= 1 then return end minetest.register_decoration({ deco_type = "schematic", place_on = a, sidelen = 80, fill_ratio = b, biomes = c, y_min = d, y_max = e, schematic = f, rotation = "random", flags = "place_center_x, place_center_z", }) end -- redwood tree minetest.register_decoration({ deco_type = "schematic", place_on = {"ethereal:mesa_dirt"}, sidelen = 80, fill_ratio = 0.0035, biomes = mesa, rotation = "random", y_min = 6, y_max = 100, schematic = path .. "redwood_tree.mts", flags = "place_center_y, place_center_x, place_center_z", }) -- banana tree add_schem({"ethereal:grove_dirt"}, 0.015, {"grove"}, 1, 100, ethereal.bananatree, ethereal.grove) -- healing tree add_schem({"default:dirt_with_snow"}, 0.001, {"alpine"}, 221, 310, path .. "yellowtree.mts", ethereal.alpine) -- crystal frost tree add_schem({"ethereal:crystal_dirt"}, 0.01, {"frost"}, 130, 185, path .. "frosttrees.mts", ethereal.frost) -- giant mushroom add_schem({"ethereal:mushroom_dirt"}, 0.02, {"mushroom"}, 1, 100, path .. "mushroomone.mts", ethereal.mushroom) -- small lava crater --add_schem({"ethereal:fiery_dirt"}, 0.01, {"fiery"}, 30, 100, path .. "volcanom.mts", ethereal.fiery) -- large lava crater --add_schem({"ethereal:fiery_dirt"}, 0.01, {"fiery"}, 1, 100, path .. "volcanol.mts", ethereal.fiery) -- default jungle tree add_schem({"ethereal:jungle_dirt"}, 0.032, {"junglee"}, 1, 100, dpath .. "jungle_tree.mts", ethereal.junglee) -- willow tree add_schem({"ethereal:gray_dirt"}, 0.02, {"grayness","graynesstwo"}, 1, 100, path .. "willow.mts", ethereal.grayness) -- pine tree (default for lower elevation and ethereal for higher) add_schem({"ethereal:cold_dirt"}, 0.025, {"snowy","snowyfiller"}, 10, 220, dpath .. "pine_tree.mts", ethereal.snowy) add_schem({"default:dirt_with_snow"}, 0.025, {"alpine"}, 221, 260, path .. "pinetree.mts", ethereal.alpine) add_schem({"default:dirt_with_snow"}, 0.015, {"alpine"}, 221, 310, dpath .. "pine_tree.mts", ethereal.alpine) -- default apple tree add_schem({"ethereal:green_dirt"}, 0.02, {"jumble"}, 1, 100, dpath .. "apple_tree.mts", ethereal.grassy) add_schem({"ethereal:green_dirt"}, 0.03, {"grassy"}, 1, 180, dpath .. "apple_tree.mts", ethereal.grassy) -- big old tree add_schem({"ethereal:green_dirt"}, 0.001, {"jumble"}, 1, 100, path .. "bigtree.mts", ethereal.jumble) -- aspen tree add_schem({"ethereal:green_dirt"}, 0.02, {"grassytwo"}, 1, 50, dpath .. "aspen_tree.mts", ethereal.jumble) -- birch tree add_schem({"ethereal:green_dirt"}, 0.02, {"grassytwo"}, 50, 100, ethereal.birchtree, ethereal.grassytwo) -- orange tree add_schem({"ethereal:prairie_dirt"}, 0.01, {"prairie"}, 1, 100, ethereal.orangetree, ethereal.prairie) -- default acacia tree add_schem({"default:dirt_with_dry_grass"}, 0.004, {"savannah"}, 1, 100, dpath .. "acacia_tree.mts", ethereal.savannah) -- large cactus (by Paramat) if ethereal.desert == 1 then minetest.register_decoration({ deco_type = "schematic", place_on = {"default:desert_sand"}, sidelen = 80, noise_params = { offset = -0.0005, scale = 0.0015, spread = {x = 200, y = 200, z = 200}, seed = 230, octaves = 3, persist = 0.6 }, biomes = {"desert"}, y_min = 5, y_max = 31000, schematic = dpath.."large_cactus.mts", flags = "place_center_x", --, place_center_z", rotation = "random", }) end -- palm tree add_schem({"default:sand"}, 0.0025, {"desert_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.desert) add_schem({"default:sand"}, 0.0025, {"plains_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.plains) add_schem({"default:sand"}, 0.0025, {"sandclay"}, 1, 1, path .. "palmtree.mts", ethereal.sandclay) add_schem({"default:sand"}, 0.0025, {"sandstone_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.sandstone) add_schem({"default:sand"}, 0.0025, {"mesa_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.mesa) add_schem({"default:sand"}, 0.0025, {"grove_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.grove) add_schem({"default:sand"}, 0.0025, {"grassy_ocean"}, 1, 1, path .. "palmtree.mts", ethereal.grassy) -- bamboo tree add_schem({"ethereal:bamboo_dirt"}, 0.025, {"bamboo"}, 1, 120, ethereal.bambootree, ethereal.bamboo) -- bush add_schem({"ethereal:bamboo_dirt"}, 0.08, {"bamboo"}, 1, 120, ethereal.bush, ethereal.bamboo) -- vine tree add_schem({"ethereal:swamp_dirt"}, 0.02, {"swamp"}, 1, 100, path .. "vinetree.mts", ethereal.swamp) --= simple decorations local add_node = function(a, b, c, d, e, f, g, h, i, j) if j ~= 1 then return end minetest.register_decoration({ deco_type = "simple", place_on = a, sidelen = 80, fill_ratio = b, biomes = c, y_min = d, y_max = e, decoration = f, height_max = g, spawn_by = h, num_spawn_by = i, rotation = "random", }) end -- bakedclay flowers add_node({"ethereal:mesa_dirt"}, 0.035, {"mesa"}, 1, 100, {"bakedclay:delphinium", "bakedclay:thistle", "bakedclay:lazarus", "bakedclay:mannagrass"}, nil, nil, nil, ethereal.mesa) -- scorched tree add_node({"ethereal:dry_dirt"}, 0.006, {"plains"}, 1, 100, {"ethereal:scorched_tree"}, 6, nil, nil, ethereal.plains) -- dry shrub add_node({"ethereal:dry_dirt"}, 0.015, {"plains"}, 1, 100, {"default:dry_shrub"}, nil, nil, nil, ethereal.plains) add_node({"default:sand"}, 0.015, {"grassy_ocean"}, 1, 100, {"default:dry_shrub"}, nil, nil, nil, ethereal.grassy) add_node({"default:desert_sand","default:desert_stone"}, 0.015, {"caves"}, 1, 100, {"default:dry_shrub"}, nil, nil, nil, ethereal.desert) add_node({"default:sandstone"}, 0.015, {"sandstone"}, 1, 100, {"default:dry_shrub"}, nil, nil, nil, ethereal.sandstone) add_node({"bakedclay:red", "bakedclay:orange"}, 0.015, {"mesa"}, 1, 100, {"default:dry_shrub"}, nil, nil, nil, ethereal.mesa) -- Dornbush add_node({"default:sand", "default:desert_sand", "default:dirt_with_dry_grass"}, 0.002, {"desert_ocean", "desert", "mesa_ocean", "mesa", "prairie_ocean", "prairie", "sandstone_ocean", "sandstone", "savannah_ocean", "savannah", "fiery_ocean"}, 5, 120, {"ethereal:dornbush"}, nil, nil, nil, ethereal.desert) -- dry grass add_node({"default:dirt_with_dry_grass"}, 0.25, {"savannah"}, 1, 100, {"default:dry_grass_2", "default:dry_grass_3", "default:dry_grass_4", "default:dry_grass_5"}, nil, nil, nil, ethereal.savannah) -- flowers & strawberry add_node({"ethereal:green_dirt"}, 0.025, {"grassy"}, 1, 100, {"flowers:dandelion_white", "flowers:dandelion_yellow", "flowers:geranium", "flowers:rose", "flowers:tulip", "flowers:viola", "ethereal:strawberry_7"}, nil, nil, nil, ethereal.grassy) add_node({"ethereal:green_dirt"}, 0.025, {"grassytwo"}, 1, 100, {"flowers:dandelion_white", "flowers:dandelion_yellow", "flowers:geranium", "flowers:rose", "flowers:tulip", "flowers:viola", "ethereal:strawberry_7"}, nil, nil, nil, ethereal.grassytwo) -- prairie flowers & strawberry add_node({"ethereal:prairie_dirt"}, 0.035, {"prairie"}, 1, 100, {"flowers:dandelion_white", "flowers:dandelion_yellow", "flowers:geranium", "flowers:rose", "flowers:tulip", "flowers:viola", "ethereal:strawberry_7"}, nil, nil, nil, ethereal.prairie) -- crystal spike & crystal grass add_node({"ethereal:crystal_dirt"}, 0.02, {"frost"}, 130, 185, {"ethereal:crystal_spike", "ethereal:crystalgrass"}, nil, nil, nil, ethereal.frost) -- red shrub add_node({"ethereal:fiery_dirt"}, 0.10, {"fiery"}, 1, 100, {"ethereal:dry_shrub"}, nil, nil, nil, ethereal.fiery) -- fire flower --add_node({"ethereal:fiery_dirt"}, 0.02, {"fiery"}, 1, 100, {"ethereal:fire_flower"}, nil, nil, nil, ethereal.fiery) -- snowy grass add_node({"ethereal:gray_dirt"}, 0.5, {"grayness"}, 1, 100, {"ethereal:snowygrass"}, nil, nil, nil, ethereal.grayness) add_node({"ethereal:cold_dirt"}, 0.5, {"snowy","snowyfiller"}, 1, 220, {"ethereal:snowygrass"}, nil, nil, nil, ethereal.snowy) add_node({"default:dirt_with_snow"}, 0.5, {"alpine"}, 221, 310, {"ethereal:snowygrass"}, nil, nil, nil, ethereal.alpine) add_node({"ethereal:crystalgrass"}, 0.5, {"frost"}, 130, 185, {"ethereal:snowygrass"}, nil, nil, nil, ethereal.frost) -- cactus add_node({"default:sandstone"}, 0.0025, {"sandstone"}, 1, 100, {"default:cactus"}, 3, nil, nil, ethereal.sandstone) add_node({"default:desert_sand"}, 0.005, {"desert"}, 1, 100, {"default:cactus"}, 4, nil, nil, ethereal.desert) -- wild red mushroom add_node({"ethereal:mushroom_dirt"}, 0.01, {"mushroom"}, 1, 100, {"flowers:mushroom_fertile_red"}, nil, nil, nil, ethereal.mushroom) local list = { {"junglee", "ethereal:jungle_dirt", ethereal.junglee}, {"grassy", "ethereal:green_dirt", ethereal.grassy}, {"grassytwo", "ethereal:green_dirt", ethereal.grassytwo}, {"prairie", "ethereal:prairie_dirt", ethereal.prairie}, {"mushroom", "ethereal:mushroom_dirt", ethereal.mushroom}, {"swamp", "ethereal:swamp_dirt", ethereal.swamp}, } -- wild red and brown mushrooms for _, row in pairs(list) do if row[3] == 1 then minetest.register_decoration({ deco_type = "simple", place_on = {row[2]}, sidelen = 16, noise_params = { offset = 0, scale = 0.009, spread = {x = 200, y = 200, z = 200}, seed = 2, octaves = 3, persist = 0.66 }, biomes = {row[1]}, y_min = 1, y_max = 120, decoration = {"flowers:mushroom_brown", "flowers:mushroom_red"}, }) end end -- jungle grass add_node({"ethereal:jungle_dirt"}, 0.10, {"junglee"}, 1, 100, {"default:junglegrass"}, nil, nil, nil, ethereal.junglee) add_node({"ethereal:green_dirt"}, 0.15, {"jumble"}, 1, 100, {"default:junglegrass"}, nil, nil, nil, ethereal.jumble) add_node({"ethereal:mesa_dirt"}, 0.10, {"mesa"}, 1, 100, {"default:junglegrass"}, nil, nil, nil, ethereal.mesa) add_node({"ethereal:green_dirt"}, 0.25, {"swamp"}, 1, 100, {"default:junglegrass"}, nil, nil, nil, ethereal.swamp) -- grass add_node({"ethereal:green_dirt"}, 0.95, {"grassy"}, 1, 120, {"default:grass_5"}, nil, nil, nil, ethereal.grassy) add_node({"ethereal:green_dirt"}, 0.95, {"grassytwo","clearing"}, 1, 140, {"default:grass_5"}, nil, nil, nil, ethereal.grassytwo) add_node({"ethereal:green_dirt"}, 0.95, {"jumble"}, 1, 120, {"default:grass_2", "default:grass_3", "default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.jumble) add_node({"ethereal:jungle_dirt"}, 0.15, {"junglee"}, 1, 120, {"default:grass_2", "default:grass_3", "default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.junglee) add_node({"ethereal:prairie_dirt"}, 0.35, {"prairie"}, 1, 115, {"default:grass_2", "default:grass_3", "default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.prairie) add_node({"ethereal:grove_dirt"}, 0.65, {"grove"}, 1, 115, {"default:grass_2", "default:grass_3", "default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.grove) add_node({"ethereal:bamboo_dirt"}, 0.35, {"bamboo"}, 1, 120, {"default:grass_2", "default:grass_3", "default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.bamboo) add_node({"ethereal:green_dirt"}, 1, {"stone_grassland"}, 1, 120, { "default:grass_5"}, nil, nil, nil, ethereal.bamboo) add_node({"ethereal:green_dirt"}, 1, {"sandstone_grassland"}, 1, 120, {"default:grass_4", "default:grass_5"}, nil, nil, nil, ethereal.bamboo) add_node({"ethereal:green_dirt"}, 0.35, {"swamp"}, 1, 100, {"default:grass_3", "default:grass_4"}, nil, nil, nil, 1) -- grass on sand add_node({"default:sand"}, 0.25, {"sandclay"}, 3, 4, {"default:grass_2", "default:grass_3"}, nil, nil, nil, ethereal.sandclay) -- ferns add_node({"ethereal:grove_dirt","ethereal:jungle_dirt","ethereal:mesa_dirt"}, 0.2, {"grove","junglee","mesa"}, 1, 100, {"ethereal:fern"}, nil, nil, nil, ethereal.grove) add_node({"ethereal:swamp_dirt"}, 0.1, {"swamp"}, 1, 100, {"ethereal:fern"}, nil, nil, nil, ethereal.swamp) -- snow add_node({"ethereal:cold_dirt"}, 0.6, {"snowy","snowyfiller"}, 4, 220, {"default:snow"}, nil, nil, nil, ethereal.snowy) add_node({"default:dirt_with_snow"}, 0.8, {"alpine"}, 221, 310, {"default:snow"}, nil, nil, nil, ethereal.alpine) add_node({"ethereal:green_dirt"}, 0.8, {"clearing","grassytwo"}, 86, 140, {"default:snow"}, nil, nil, nil, ethereal.alpine) add_node({"ethereal:green_dirt"}, 0.4, {"clearing","grassytwo"}, 76, 86, {"default:snow"}, nil, nil, nil, ethereal.alpine) add_node({"ethereal:green_dirt"}, 0.1, {"clearing","grassytwo"}, 72, 76, {"default:snow"}, nil, nil, nil, ethereal.alpine) add_node({"ethereal:green_dirt"}, 0.04, {"clearing","grassytwo"}, 68, 72, {"default:snow"}, nil, nil, nil, ethereal.alpine) -- wild onion add_node({"ethereal:green_dirt"}, 0.25, {"grassy"}, 1, 100, {"ethereal:onion_4"}, nil, nil, nil, ethereal.grassy) add_node({"ethereal:green_dirt"}, 0.25, {"grassytwo"}, 1, 100, {"ethereal:onion_4"}, nil, nil, nil, ethereal.grassytwo) add_node({"ethereal:green_dirt"}, 0.25, {"jumble"}, 1, 100, {"ethereal:onion_4"}, nil, nil, nil, ethereal.jumble) add_node({"ethereal:prairie_dirt"}, 0.25, {"prairie"}, 1, 100, {"ethereal:onion_4"}, nil, nil, nil, ethereal.prairie) -- papyrus add_node({"ethereal:green_dirt"}, 0.1, {"grassy"}, 1, 1, {"default:papyrus"}, 4, "default:water_source", 1, ethereal.grassy) add_node({"ethereal:jungle_dirt"}, 0.1, {"junglee"}, 1, 1, {"default:papyrus"}, 4, "default:water_source", 1, ethereal.junglee) add_node({"ethereal:swamp_dirt"}, 0.1, {"swamp"}, 1, 1, {"default:papyrus"}, 4, "default:water_source", 1, ethereal.swamp) --= Farming Redo plants if farming and farming.mod and farming.mod == "redo" then print ("[MOD] Ethereal - Farming Redo detected and in use") -- potato add_node({"ethereal:jungle_dirt"}, 0.035, {"junglee"}, 1, 100, {"farming:potato_3"}, nil, nil, nil, ethereal.junglee) -- carrot, cucumber, potato, tomato, corn, coffee, raspberry, rhubarb add_node({"ethereal:green_dirt"}, 0.05, {"grassytwo"}, 1, 100, {"farming:carrot_7", "farming:cucumber_4", "farming:potato_3", "farming:tomato_7", "farming:corn_8", "farming:coffee_5", "farming:raspberry_4", "farming:rhubarb_3", "farming:blueberry_4"}, nil, nil, nil, ethereal.grassytwo) add_node({"ethereal:green_dirt"}, 0.05, {"grassy"}, 1, 100, {"farming:carrot_7", "farming:cucumber_4", "farming:potato_3", "farming:tomato_7", "farming:corn_8", "farming:coffee_5", "farming:raspberry_4", "farming:rhubarb_3", "farming:blueberry_4"}, nil, nil, nil, ethereal.grassy) add_node({"ethereal:green_dirt"}, 0.05, {"jumble"}, 1, 100, {"farming:carrot_7", "farming:cucumber_4", "farming:potato_3", "farming:tomato_7", "farming:corn_8", "farming:coffee_5", "farming:raspberry_4", "farming:rhubarb_3", "farming:blueberry_4"}, nil, nil, nil, ethereal.jumble) add_node({"ethereal:prairie_dirt"}, 0.05, {"prairie"}, 1, 100, {"farming:carrot_7", "farming:cucumber_4", "farming:potato_3", "farming:tomato_7", "farming:corn_8", "farming:coffee_5", "farming:raspberry_4", "farming:rhubarb_3", "farming:blueberry_4"}, nil, nil, nil, ethereal.prairie) -- melon and pumpkin add_node({"ethereal:jungle_dirt"}, 0.015, {"junglee"}, 1, 1, {"farming:melon_8", "farming:pumpkin_8"}, nil, "default:water_source", 1, ethereal.junglee) add_node({"ethereal:green_dirt"}, 0.015, {"grassy"}, 1, 1, {"farming:melon_8", "farming:pumpkin_8"}, nil, "default:water_source", 1, ethereal.grassy) add_node({"ethereal:green_dirt"}, 0.015, {"grassytwo"}, 1, 1, {"farming:melon_8", "farming:pumpkin_8"}, nil, "default:water_source", 1, ethereal.grassytwo) add_node({"ethereal:green_dirt"}, 0.015, {"jumble"}, 1, 1, {"farming:melon_8", "farming:pumpkin_8"}, nil, "default:water_source", 1, ethereal.jumble) -- green beans add_node({"ethereal:green_dirt"}, 0.035, {"grassytwo"}, 1, 100, {"farming:beanbush"}, nil, nil, nil, ethereal.grassytwo) -- grape bushel add_node({"ethereal:green_dirt"}, 0.025, {"grassytwo"}, 1, 100, {"farming:grapebush"}, nil, nil, nil, ethereal.grassytwo) add_node({"ethereal:green_dirt"}, 0.025, {"grassy"}, 1, 100, {"farming:grapebush"}, nil, nil, nil, ethereal.grassy) add_node({"ethereal:prairie_dirt"}, 0.025, {"prairie"}, 1, 100, {"farming:grapebush"}, nil, nil, nil, ethereal.prairie) end -- place waterlily in beach areas local list = { {"desert_ocean", ethereal.desert}, {"plains_ocean", ethereal.plains}, {"sandclay", ethereal.sandclay}, {"sandstone_ocean", ethereal.sandstone}, {"mesa_ocean", ethereal.mesa}, {"grove_ocean", ethereal.grove}, {"grassy_ocean", ethereal.grassy}, {"swamp_ocean", ethereal.swamp}, } for _, row in pairs(list) do if row[2] == 1 then minetest.register_decoration({ deco_type = "schematic", place_on = {"default:sand"}, sidelen = 16, noise_params = { offset = -0.12, scale = 0.3, spread = {x = 200, y = 200, z = 200}, seed = 33, octaves = 3, persist = 0.7 }, biomes = {row[1]}, y_min = 0, y_max = 0, schematic = ethereal.waterlily, rotation = "random", }) end end -- Generate Illumishroom in caves next to coal minetest.register_on_generated(function(minp, maxp) if minp.y > -30 or maxp.y < -3000 then return end local bpos local coal = minetest.find_nodes_in_area_under_air(minp, maxp, "default:stone_with_coal") for n = 1, #coal do bpos = {x = coal[n].x, y = coal[n].y + 1, z = coal[n].z } if math.random(1, 2) == 1 then if bpos.y > -3000 and bpos.y < -2000 then minetest.swap_node(bpos, {name = "ethereal:illumishroom3"}) elseif bpos.y > -2000 and bpos.y < -1000 then minetest.swap_node(bpos, {name = "ethereal:illumishroom2"}) elseif bpos.y > -1000 and bpos.y < -30 then minetest.swap_node(bpos, {name = "ethereal:illumishroom"}) end end end end)