Lightening the mod
- Keep only one biome, dense cherry forests are rarer. - Some cherry trees in taiga biome.
This commit is contained in:
parent
7557fd15f5
commit
ee5690ed70
49
init.lua
49
init.lua
@ -189,46 +189,10 @@ minetest.register_biome(
|
||||
--node_underwater = "default:gravel",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
y_min = 1,
|
||||
y_max = 40,
|
||||
heat_point = 50,
|
||||
humidity_point = 55,
|
||||
})
|
||||
|
||||
minetest.register_biome(
|
||||
{
|
||||
name = "cherry_blossom_forest_floral",
|
||||
--node_shore_filler = "default:sand",
|
||||
node_top = "default:dirt_with_grass",
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
depth_filler = 3,
|
||||
--node_dust = "air",
|
||||
--node_underwater = "default:gravel",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
y_min = 1,
|
||||
y_max = 40,
|
||||
y_min = 50,
|
||||
y_max = 60,
|
||||
heat_point = 47,
|
||||
humidity_point = 50,
|
||||
})
|
||||
|
||||
minetest.register_biome(
|
||||
{
|
||||
name = "cherry_blossom_forest_grassy",
|
||||
--node_shore_filler = "default:sand",
|
||||
node_top = "default:dirt_with_grass",
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
depth_filler = 3,
|
||||
--node_dust = "air",
|
||||
--node_underwater = "default:gravel",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
y_min = 1,
|
||||
y_max = 42,
|
||||
heat_point = 55,
|
||||
humidity_point = 55,
|
||||
humidity_point = 60,
|
||||
})
|
||||
|
||||
-- Decoration
|
||||
@ -250,8 +214,6 @@ minetest.register_decoration(
|
||||
},
|
||||
biomes = {
|
||||
"cherry_blossom_forest",
|
||||
"cherry_blossom_forest_floral",
|
||||
"cherry_blossom_forest_grassy"
|
||||
},
|
||||
y_min = 1,
|
||||
y_max = 31000,
|
||||
@ -264,7 +226,7 @@ minetest.register_decoration(
|
||||
minetest.register_decoration(
|
||||
{
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_grass"},
|
||||
place_on = {"default:dirt_with_snow", "default:dirt_with_grass"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = 0.0009,
|
||||
@ -276,6 +238,7 @@ minetest.register_decoration(
|
||||
},
|
||||
biomes = {
|
||||
"deciduous_forest",
|
||||
"taiga"
|
||||
},
|
||||
y_min = 1,
|
||||
y_max = 31000,
|
||||
@ -301,8 +264,6 @@ minetest.register_decoration(
|
||||
},
|
||||
biomes = {
|
||||
"cherry_blossom_forest",
|
||||
"cherry_blossom_forest_floral",
|
||||
"cherry_blossom_forest_grassy"
|
||||
},
|
||||
y_min = 1,
|
||||
y_max = 31000,
|
||||
|
Loading…
Reference in New Issue
Block a user