forked from mtcontrib/minetest-mod-snow
Corrige génération
This commit is contained in:
parent
f51bcd00df
commit
afe80c0dc3
@ -59,11 +59,12 @@ minetest.register_biome({
|
|||||||
|
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
name = "snow_biome_alpine",
|
name = "snow_biome_alpine",
|
||||||
|
node_dust = "default:snow",
|
||||||
node_top = "default:dirt_with_snow",
|
node_top = "default:dirt_with_snow",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "default:stone",
|
node_filler = "default:stone",
|
||||||
|
node_riverbed = "default:gravel",
|
||||||
|
depth_riverbed = 2,
|
||||||
y_min = 60,
|
y_min = 60,
|
||||||
y_max = 31000,
|
y_max = 31000,
|
||||||
heat_point = 10.0,
|
heat_point = 10.0,
|
||||||
@ -88,7 +89,7 @@ minetest.register_biome({
|
|||||||
--Pine tree.
|
--Pine tree.
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"default:dirt_with_snow", "default:dirt_with_grass"},
|
place_on = {"default:dirt_with_snow", "default:dirt_with_grass", "default:dirt_with_coniferous_litter"},
|
||||||
sidelen = 16,
|
sidelen = 16,
|
||||||
noise_params = {
|
noise_params = {
|
||||||
offset = -0.004,
|
offset = -0.004,
|
||||||
@ -118,6 +119,7 @@ minetest.register_decoration({
|
|||||||
octaves = 3,
|
octaves = 3,
|
||||||
persist = 0.66
|
persist = 0.66
|
||||||
},
|
},
|
||||||
|
-- fill_ratio = 0.0005,
|
||||||
y_max = 31000,
|
y_max = 31000,
|
||||||
y_min = 4,
|
y_min = 4,
|
||||||
biomes = {"snow_biome_forest", "pine_forest"},
|
biomes = {"snow_biome_forest", "pine_forest"},
|
||||||
@ -212,24 +214,24 @@ register_flower(1133, "viola")
|
|||||||
register_flower(73133, "dandelion_white")
|
register_flower(73133, "dandelion_white")
|
||||||
|
|
||||||
--Snow.
|
--Snow.
|
||||||
minetest.register_decoration({
|
--minetest.register_decoration({
|
||||||
deco_type = "simple",
|
-- deco_type = "simple",
|
||||||
place_on = "default:dirt_with_snow",
|
-- place_on = "default:dirt_with_snow",
|
||||||
sidelen = 16,
|
-- sidelen = 16,
|
||||||
fill_ratio = 10,
|
-- fill_ratio = 10,
|
||||||
y_max = 31000,
|
-- y_max = 31000,
|
||||||
y_min = 1,
|
-- y_min = 1,
|
||||||
biomes = {"snow_biome_forest", "snow_biome_lush"},
|
-- biomes = {"snow_biome_forest", "snow_biome_lush"},
|
||||||
decoration = "default:snow",
|
-- decoration = "default:snow",
|
||||||
})
|
--})
|
||||||
|
|
||||||
minetest.register_decoration({
|
--minetest.register_decoration({
|
||||||
deco_type = "simple",
|
-- deco_type = "simple",
|
||||||
place_on = "default:stone",
|
-- place_on = "default:stone",
|
||||||
sidelen = 16,
|
-- sidelen = 16,
|
||||||
fill_ratio = 10,
|
-- fill_ratio = 10,
|
||||||
y_max = 31000,
|
-- y_max = 31000,
|
||||||
y_min = 1,
|
-- y_min = 1,
|
||||||
biomes = {"snow_biome_alpine"},
|
-- biomes = {"snow_biome_alpine"},
|
||||||
decoration = "default:snow",
|
-- decoration = "default:snow",
|
||||||
})
|
--})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user