forked from VoxeLibre/VoxeLibre
Biomes: Increase filler depths
This commit is contained in:
parent
fde21efdd4
commit
5a8f7cff73
|
@ -64,7 +64,10 @@ local function register_biomes()
|
||||||
|
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
name = "tundra",
|
name = "tundra",
|
||||||
node_dust = "mcl_core:snowblock",
|
node_top = "mcl_core:snowblock",
|
||||||
|
depth_top = 1,
|
||||||
|
node_filler = "mcl_core:dirt",
|
||||||
|
depth_filler = 2,
|
||||||
node_riverbed = "mcl_core:gravel",
|
node_riverbed = "mcl_core:gravel",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
y_min = 2,
|
y_min = 2,
|
||||||
|
@ -137,7 +140,7 @@ local function register_biomes()
|
||||||
node_top = "mcl_core:dirt_with_grass_snow",
|
node_top = "mcl_core:dirt_with_grass_snow",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:dirt",
|
node_filler = "mcl_core:dirt",
|
||||||
depth_filler = 1,
|
depth_filler = 2,
|
||||||
node_riverbed = "mcl_core:sand",
|
node_riverbed = "mcl_core:sand",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
y_min = 5,
|
y_min = 5,
|
||||||
|
@ -166,7 +169,7 @@ local function register_biomes()
|
||||||
node_top = "mcl_core:dirt_with_grass",
|
node_top = "mcl_core:dirt_with_grass",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:dirt",
|
node_filler = "mcl_core:dirt",
|
||||||
depth_filler = 1,
|
depth_filler = 2,
|
||||||
node_riverbed = "mcl_core:sand",
|
node_riverbed = "mcl_core:sand",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
y_min = 6,
|
y_min = 6,
|
||||||
|
@ -296,7 +299,7 @@ local function register_biomes()
|
||||||
node_top = "mcl_core:redsand",
|
node_top = "mcl_core:redsand",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:redsand",
|
node_filler = "mcl_core:redsand",
|
||||||
depth_filler = 1,
|
depth_filler = 2,
|
||||||
node_stone = "mcl_core:redsandstone",
|
node_stone = "mcl_core:redsandstone",
|
||||||
node_riverbed = "mcl_core:sand",
|
node_riverbed = "mcl_core:sand",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
|
@ -326,7 +329,7 @@ local function register_biomes()
|
||||||
node_top = "mcl_core:redsand",
|
node_top = "mcl_core:redsand",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:redsand",
|
node_filler = "mcl_core:redsand",
|
||||||
depth_filler = 1,
|
depth_filler = 2,
|
||||||
node_riverbed = "mcl_core:redsand",
|
node_riverbed = "mcl_core:redsand",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
y_min = 0,
|
y_min = 0,
|
||||||
|
@ -356,7 +359,7 @@ local function register_biomes()
|
||||||
node_top = "mcl_core:dirt_with_grass",
|
node_top = "mcl_core:dirt_with_grass",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:dirt",
|
node_filler = "mcl_core:dirt",
|
||||||
depth_filler = 1,
|
depth_filler = 2,
|
||||||
node_riverbed = "mcl_core:sand",
|
node_riverbed = "mcl_core:sand",
|
||||||
depth_riverbed = 2,
|
depth_riverbed = 2,
|
||||||
y_min = 1,
|
y_min = 1,
|
||||||
|
|
Loading…
Reference in New Issue