forked from Mineclonia/Mineclonia
Generate fallen logs after double plants
This commit is contained in:
parent
0a957ee2ef
commit
b866c6bb8d
|
@ -1018,7 +1018,7 @@ end
|
||||||
|
|
||||||
local function register_decorations()
|
local function register_decorations()
|
||||||
|
|
||||||
-- Oak tree and log
|
-- Oak
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
|
@ -1039,41 +1039,7 @@ local function register_decorations()
|
||||||
rotation = "random",
|
rotation = "random",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration({
|
-- Jungle tree
|
||||||
deco_type = "schematic",
|
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
|
||||||
sidelen = 16,
|
|
||||||
noise_params = {
|
|
||||||
offset = 0.00018,
|
|
||||||
scale = 0.00011,
|
|
||||||
spread = {x = 250, y = 250, z = 250},
|
|
||||||
seed = 2,
|
|
||||||
octaves = 3,
|
|
||||||
persist = 0.66
|
|
||||||
},
|
|
||||||
biomes = {"deciduous_forest"},
|
|
||||||
y_min = 1,
|
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
|
||||||
schematic = {
|
|
||||||
size = {x = 3, y = 3, z = 1},
|
|
||||||
data = {
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "mcl_core:tree", param2 = 12, prob = 191},
|
|
||||||
{name = "mcl_core:tree", param2 = 12},
|
|
||||||
{name = "mcl_core:tree", param2 = 12, prob = 127},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
flags = "place_center_x",
|
|
||||||
rotation = "random",
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Jungle tree and log
|
|
||||||
|
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"mcl_core:dirt_with_grass", "mcl_core:dirt", "mcl_core:podzol"},
|
place_on = {"mcl_core:dirt_with_grass", "mcl_core:dirt", "mcl_core:podzol"},
|
||||||
|
@ -1117,34 +1083,7 @@ local function register_decorations()
|
||||||
flags = "place_center_x, place_center_z",
|
flags = "place_center_x, place_center_z",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration({
|
-- Spruce
|
||||||
deco_type = "schematic",
|
|
||||||
place_on = {"mcl_core:dirt_with_grass", "mcl_core:dirt", "mcl_core:podzol"},
|
|
||||||
sidelen = 80,
|
|
||||||
fill_ratio = 0.01,
|
|
||||||
biomes = {"rainforest", "rainforest_swamp"},
|
|
||||||
y_min = 1,
|
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
|
||||||
schematic = {
|
|
||||||
size = {x = 3, y = 3, z = 1},
|
|
||||||
data = {
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "mcl_core:jungletree", param2 = 12, prob = 191},
|
|
||||||
{name = "mcl_core:jungletree", param2 = 12},
|
|
||||||
{name = "mcl_core:jungletree", param2 = 12, prob = 127},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
flags = "place_center_x",
|
|
||||||
rotation = "random",
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Taiga and temperate coniferous forest pine tree and log
|
|
||||||
|
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"mcl_core:dirt_with_grass_snow", "mcl_core:dirt_with_grass", "mcl_core:podzol"},
|
place_on = {"mcl_core:dirt_with_grass_snow", "mcl_core:dirt_with_grass", "mcl_core:podzol"},
|
||||||
|
@ -1164,41 +1103,7 @@ local function register_decorations()
|
||||||
flags = "place_center_x, place_center_z",
|
flags = "place_center_x, place_center_z",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration({
|
-- Acacia
|
||||||
deco_type = "schematic",
|
|
||||||
place_on = {"mcl_core:dirt_with_grass_snow", "mcl_core:dirt_with_grass", "mcl_core:podzol"},
|
|
||||||
sidelen = 80,
|
|
||||||
noise_params = {
|
|
||||||
offset = 0.00018,
|
|
||||||
scale = 0.00011,
|
|
||||||
spread = {x = 250, y = 250, z = 250},
|
|
||||||
seed = 2,
|
|
||||||
octaves = 3,
|
|
||||||
persist = 0.66
|
|
||||||
},
|
|
||||||
biomes = {"taiga", "coniferous_forest","coniferous_forest_dunes"},
|
|
||||||
y_min = 1,
|
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
|
||||||
schematic = {
|
|
||||||
size = {x = 3, y = 3, z = 1},
|
|
||||||
data = {
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "mcl_core:sprucetree", param2 = 12, prob = 191},
|
|
||||||
{name = "mcl_core:sprucetree", param2 = 12},
|
|
||||||
{name = "mcl_core:sprucetree", param2 = 12, prob = 127},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
flags = "place_center_x",
|
|
||||||
rotation = "random",
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Acacia tree and log
|
|
||||||
|
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"mcl_core:dirt_with_grass", "mcl_core:coarse_dirt"},
|
place_on = {"mcl_core:dirt_with_grass", "mcl_core:coarse_dirt"},
|
||||||
|
@ -1219,39 +1124,7 @@ local function register_decorations()
|
||||||
rotation = "random",
|
rotation = "random",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration({
|
-- Birch
|
||||||
deco_type = "schematic",
|
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
|
||||||
sidelen = 16,
|
|
||||||
noise_params = {
|
|
||||||
offset = 0,
|
|
||||||
scale = 0.001,
|
|
||||||
spread = {x = 250, y = 250, z = 250},
|
|
||||||
seed = 2,
|
|
||||||
octaves = 3,
|
|
||||||
persist = 0.66
|
|
||||||
},
|
|
||||||
biomes = {"savanna"},
|
|
||||||
y_min = 1,
|
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
|
||||||
schematic = {
|
|
||||||
size = {x = 3, y = 2, z = 1},
|
|
||||||
data = {
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "mcl_core:acaciatree", param2 = 12, prob = 191},
|
|
||||||
{name = "mcl_core:acaciatree", param2 = 12},
|
|
||||||
{name = "mcl_core:acaciatree", param2 = 12, prob = 127},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
flags = "place_center_x",
|
|
||||||
rotation = "random",
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
-- Birch tree and log
|
|
||||||
|
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
|
@ -1271,40 +1144,6 @@ local function register_decorations()
|
||||||
flags = "place_center_x, place_center_z",
|
flags = "place_center_x, place_center_z",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration({
|
|
||||||
deco_type = "schematic",
|
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
|
||||||
sidelen = 16,
|
|
||||||
noise_params = {
|
|
||||||
offset = 0.0,
|
|
||||||
scale = -0.00008,
|
|
||||||
spread = {x = 250, y = 250, z = 250},
|
|
||||||
seed = 2,
|
|
||||||
octaves = 3,
|
|
||||||
persist = 0.66
|
|
||||||
},
|
|
||||||
biomes = {"deciduous_forest"},
|
|
||||||
y_min = 1,
|
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
|
||||||
schematic = {
|
|
||||||
size = {x = 3, y = 3, z = 1},
|
|
||||||
data = {
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "mcl_core:birchtree", param2 = 12},
|
|
||||||
{name = "mcl_core:birchtree", param2 = 12},
|
|
||||||
{name = "mcl_core:birchtree", param2 = 12, prob = 127},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
{name = "air", prob = 0},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
flags = "place_center_x",
|
|
||||||
rotation = "random",
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
-- Dark Oak
|
-- Dark Oak
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
|
@ -1519,6 +1358,162 @@ local function register_decorations()
|
||||||
-- TODO: Make exclusive to sunflower plains
|
-- TODO: Make exclusive to sunflower plains
|
||||||
register_large_flower("sunflower", {"grassland", "sunflower_plains"}, 2940, -0.005)
|
register_large_flower("sunflower", {"grassland", "sunflower_plains"}, 2940, -0.005)
|
||||||
|
|
||||||
|
-- Fallen logs
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"mcl_core:dirt_with_grass_snow", "mcl_core:dirt_with_grass", "mcl_core:podzol"},
|
||||||
|
sidelen = 80,
|
||||||
|
noise_params = {
|
||||||
|
offset = 0.00018,
|
||||||
|
scale = 0.00011,
|
||||||
|
spread = {x = 250, y = 250, z = 250},
|
||||||
|
seed = 2,
|
||||||
|
octaves = 3,
|
||||||
|
persist = 0.66
|
||||||
|
},
|
||||||
|
biomes = {"taiga", "coniferous_forest","coniferous_forest_dunes"},
|
||||||
|
y_min = 1,
|
||||||
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
|
schematic = {
|
||||||
|
size = {x = 3, y = 3, z = 1},
|
||||||
|
data = {
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "mcl_core:sprucetree", param2 = 12, prob = 191},
|
||||||
|
{name = "mcl_core:sprucetree", param2 = 12},
|
||||||
|
{name = "mcl_core:sprucetree", param2 = 12, prob = 127},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags = "place_center_x",
|
||||||
|
rotation = "random",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
|
sidelen = 16,
|
||||||
|
noise_params = {
|
||||||
|
offset = 0.0,
|
||||||
|
scale = -0.00008,
|
||||||
|
spread = {x = 250, y = 250, z = 250},
|
||||||
|
seed = 2,
|
||||||
|
octaves = 3,
|
||||||
|
persist = 0.66
|
||||||
|
},
|
||||||
|
biomes = {"deciduous_forest"},
|
||||||
|
y_min = 1,
|
||||||
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
|
schematic = {
|
||||||
|
size = {x = 3, y = 3, z = 1},
|
||||||
|
data = {
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "mcl_core:birchtree", param2 = 12},
|
||||||
|
{name = "mcl_core:birchtree", param2 = 12},
|
||||||
|
{name = "mcl_core:birchtree", param2 = 12, prob = 127},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags = "place_center_x",
|
||||||
|
rotation = "random",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
|
sidelen = 16,
|
||||||
|
noise_params = {
|
||||||
|
offset = 0,
|
||||||
|
scale = 0.001,
|
||||||
|
spread = {x = 250, y = 250, z = 250},
|
||||||
|
seed = 2,
|
||||||
|
octaves = 3,
|
||||||
|
persist = 0.66
|
||||||
|
},
|
||||||
|
biomes = {"savanna"},
|
||||||
|
y_min = 1,
|
||||||
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
|
schematic = {
|
||||||
|
size = {x = 3, y = 2, z = 1},
|
||||||
|
data = {
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "mcl_core:acaciatree", param2 = 12, prob = 191},
|
||||||
|
{name = "mcl_core:acaciatree", param2 = 12},
|
||||||
|
{name = "mcl_core:acaciatree", param2 = 12, prob = 127},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags = "place_center_x",
|
||||||
|
rotation = "random",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"mcl_core:dirt_with_grass", "mcl_core:dirt", "mcl_core:podzol"},
|
||||||
|
sidelen = 80,
|
||||||
|
fill_ratio = 0.01,
|
||||||
|
biomes = {"rainforest", "rainforest_swamp"},
|
||||||
|
y_min = 1,
|
||||||
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
|
schematic = {
|
||||||
|
size = {x = 3, y = 3, z = 1},
|
||||||
|
data = {
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "mcl_core:jungletree", param2 = 12, prob = 191},
|
||||||
|
{name = "mcl_core:jungletree", param2 = 12},
|
||||||
|
{name = "mcl_core:jungletree", param2 = 12, prob = 127},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags = "place_center_x",
|
||||||
|
rotation = "random",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
|
sidelen = 16,
|
||||||
|
noise_params = {
|
||||||
|
offset = 0.00018,
|
||||||
|
scale = 0.00011,
|
||||||
|
spread = {x = 250, y = 250, z = 250},
|
||||||
|
seed = 2,
|
||||||
|
octaves = 3,
|
||||||
|
persist = 0.66
|
||||||
|
},
|
||||||
|
biomes = {"deciduous_forest"},
|
||||||
|
y_min = 1,
|
||||||
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
|
schematic = {
|
||||||
|
size = {x = 3, y = 3, z = 1},
|
||||||
|
data = {
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "mcl_core:tree", param2 = 12, prob = 191},
|
||||||
|
{name = "mcl_core:tree", param2 = 12},
|
||||||
|
{name = "mcl_core:tree", param2 = 12, prob = 127},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
{name = "air", prob = 0},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags = "place_center_x",
|
||||||
|
rotation = "random",
|
||||||
|
})
|
||||||
|
|
||||||
-- Lily pad
|
-- Lily pad
|
||||||
-- Spawn on Sea level in swamps only
|
-- Spawn on Sea level in swamps only
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
|
|
Loading…
Reference in New Issue