australia/biome_victorian_forests.lua

468 lines
11 KiB
Lua

-- mods/australia/biome_victorian_forests.lua
minetest.register_biome({
name = "victorian_forests",
--node_dust = "",
node_top = "default:dirt_with_grass",
depth_top = 1,
node_filler = "default:dirt",
depth_filler = 3,
--node_stone = "",
--node_water_top = "",
--depth_water_top = ,
--node_water = "",
node_river_water = "australia:muddy_river_water_source",
y_min = 36,
y_max = 31000,
heat_point = 40,
humidity_point = 50,
})
--
-- Decorations
--
local function register_grass_decoration(offset, scale, length)
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = offset,
scale = scale,
spread = {x = 200, y = 200, z = 200},
seed = 329,
octaves = 3,
persist = 0.6
},
biomes = {"victorian_forests"},
y_min = 36,
y_max = 190,
decoration = "default:grass_"..length,
})
end
-- Grasses
register_grass_decoration(-0.03, 0.09, 5)
register_grass_decoration(-0.015, 0.075, 4)
register_grass_decoration(0, 0.06, 3)
register_grass_decoration(0.015, 0.045, 2)
register_grass_decoration(0.03, 0.03, 1)
--
-- Logs
--
-- River Red Gum Log
minetest.register_decoration({
deco_type = "schematic",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0.0018,
scale = 0.0011,
spread = {x = 250, y = 250, z = 250},
seed = 33,
octaves = 3,
persist = 0.66
},
biomes = {"victorian_forests"},
y_min = 36,
y_max = 175,
schematic = {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "australia:river_red_gum_tree", param2 = 12, prob = 191},
{name = "australia:river_red_gum_tree", param2 = 12},
{name = "australia:river_red_gum_tree", param2 = 12, prob = 127},
{name = "air", prob = 0},
{name = "flowers:mushroom_brown", prob = 63},
{name = "air", prob = 0},
},
},
flags = "place_center_x",
rotation = "random",
})
-- White Box Log
minetest.register_decoration({
deco_type = "schematic",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0.0018,
scale = 0.0011,
spread = {x = 250, y = 250, z = 250},
seed = 35,
octaves = 3,
persist = 0.66
},
biomes = {"victorian_forests"},
y_min = 36,
y_max = 175,
schematic = {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "australia:white_box_tree", param2 = 12, prob = 191},
{name = "australia:white_box_tree", param2 = 12},
{name = "australia:white_box_tree", param2 = 12, prob = 127},
{name = "air", prob = 0},
{name = "flowers:mushroom_brown", prob = 63},
{name = "air", prob = 0},
},
},
flags = "place_center_x",
rotation = "random",
})
--
-- Moss
--
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 80,
fill_ratio = 0.07,
biomes = {"victorian_forests"},
y_min = 36,
y_max = 200,
decoration = "australia:moss",
})
--
-- Mushrooms
--
-- Brown Mushroom
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.006,
spread = {x = 200, y = 200, z = 200},
seed = 55,
octaves = 3,
persist = 0.66
},
biomes = {"victorian_forests"},
y_min = 36,
y_max = 180,
decoration = "flowers:Mushroom_brown",
})
-- Red Mushroom
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.006,
spread = {x = 200, y = 200, z = 200},
seed = 56,
octaves = 3,
persist = 0.66
},
biomes = {"victorian_forests"},
y_min = 36,
y_max = 180,
decoration = "flowers:mushroom_red",
})
--
-- Trees
--
-- Black Wattle
aus.schematics.black_wattle_tree = {}
local max_r = 6
local ht = 8
local fruit = nil
local limbs = false
local tree = "australia:black_wattle_tree"
local leaves = "australia:black_wattle_leaves"
for r = 5,max_r do
local schem = aus.generate_tree_schematic(4, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.black_wattle_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 150,
fill_ratio = (max_r-r+1)/12000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Blue Gum
aus.schematics.blue_gum_tree = {}
local max_r = 7
local ht = 12
local fruit = nil
local limbs = nil
local tree = "australia:blue_gum_tree"
local leaves = "australia:blue_gum_leaves"
for r = 6,max_r do
local schem = aus.generate_tree_schematic(10, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.blue_gum_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 180,
fill_ratio = (max_r-r+1)/7000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Coolabah Tree
aus.schematics.coolabah_tree = {}
local max_r = 5
local ht = 7
local fruit = nil
local limbs = nil
local tree = "australia:coolabah_tree"
local leaves = "australia:coolabah_leaves"
for r = 4,max_r do
local schem = aus.generate_tree_schematic(3, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.coolabah_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"australia:dirt_with_grass"},
y_min = 36,
y_max = 140,
fill_ratio = (max_r-r+1)/20000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Golden Wattle
aus.schematics.golden_wattle_tree = {}
local max_r = 3
local ht = 3
local fruit = nil
local limbs = false
local tree = "australia:golden_wattle_tree"
local leaves = "australia:golden_wattle_leaves"
for r = 2,max_r do
local schem = aus.generate_tree_schematic(2, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.golden_wattle_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 150,
fill_ratio = (max_r-r+1)/12000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Lilly Pilly
aus.schematics.lilly_pilly_tree = {}
local max_r = 5
local ht = 8
local fruit = "australia:lilly_pilly_berries"
local limbs = false
local tree = "australia:lilly_pilly_tree"
local leaves = "australia:lilly_pilly_leaves"
for r = 4,max_r do
local schem = aus.generate_tree_schematic(1, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.lilly_pilly_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 150,
fill_ratio = (max_r-r+1)/12000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Red Bottlebrush
aus.schematics.red_bottlebrush_tree = {}
local max_r = 3
local ht = 4
local fruit = nil
local limbs = false
local tree = "australia:red_bottlebrush_tree"
local leaves = "australia:red_bottlebrush_leaves"
for r = 2,max_r do
local schem = aus.generate_tree_schematic(1, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.red_bottlebrush_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 150,
fill_ratio = (max_r-r+1)/12000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- River Red Gum
aus.schematics.river_red_gum_tree = {}
local max_r = 13
local ht = 13
local fruit = nil
local limbs = nil
local tree = "australia:river_red_gum_tree"
local leaves = "australia:river_red_gum_leaves"
for r = 10,max_r do
local schem = aus.generate_giant_tree_schematic(7, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.river_red_gum_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 140,
fill_ratio = (max_r-r+1)/20000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Southern Sassafras
aus.schematics.southern_sassafras_tree = {}
local max_r = 5
local fruit = nil
local tree = "australia:southern_sassafras_tree"
local leaves = "australia:southern_sassafras_leaves"
for r = 4,max_r do
local schem = aus.generate_conifer_schematic(6, 4, tree, leaves, fruit)
push(aus.schematics.southern_sassafras_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 160,
fill_ratio = (max_r-r+1)/15000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Swamp Gum
aus.schematics.swamp_gum_tree = {}
local max_r = 6
local ht = 18
local fruit = nil
local limbs = nil
local tree = "australia:swamp_gum_tree"
local leaves = "australia:swamp_gum_leaves"
for r = 6,max_r do
local schem = aus.generate_giant_tree_schematic(26, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.swamp_gum_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 120,
fill_ratio = (max_r-r+1)/15000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- Tasmanian Myrtle
aus.schematics.tasmanian_myrtle_tree = {}
local max_r = 8
local ht = 14
local fruit = nil
local limbs = nil
local tree = "australia:tasmanian_myrtle_tree"
local leaves = "australia:tasmanian_myrtle_leaves"
for r = 6,max_r do
local schem = aus.generate_big_tree_schematic(6, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.tasmanian_myrtle_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 150,
fill_ratio = (max_r-r+1)/15000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end
-- White Box
aus.schematics.white_box_tree = {}
local max_r = 8
local ht = 7
local fruit = nil
local limbs = nil
local tree = "australia:white_box_tree"
local leaves = "australia:white_box_leaves"
for r = 6,max_r do
local schem = aus.generate_tree_schematic(5, {x=r, y=ht, z=r}, tree, leaves, fruit, limbs)
push(aus.schematics.white_box_tree, schem)
minetest.register_decoration({
deco_type = "schematic",
sidelen = 80,
place_on = {"default:dirt_with_grass"},
y_min = 36,
y_max = 175,
fill_ratio = (max_r-r+1)/10000,
biomes = {"victorian_forests"},
schematic = schem,
flags = "place_center_x, place_center_z",
rotation = "random",
})
end