2013-02-12 04:07:40 +01:00
|
|
|
-- sapling growth
|
2019-05-23 01:09:41 +02:00
|
|
|
-- these tables only affect hand-placed saplings
|
|
|
|
-- mapgen-placed always use their biome def settings, which are much more
|
|
|
|
-- limited, in the interest of speed.
|
|
|
|
|
|
|
|
local dirt_surfaces = {
|
|
|
|
"default:dirt",
|
|
|
|
"default:dirt_with_grass",
|
|
|
|
"default:dirt_with_dry_grass",
|
|
|
|
"default:dirt_with_coniferous_litter",
|
|
|
|
"default:dirt_with_rainforest_litter",
|
|
|
|
"default:dirt_with_snow",
|
|
|
|
"woodsoils:dirt_with_leaves_1",
|
|
|
|
"woodsoils:dirt_with_leaves_2",
|
|
|
|
"woodsoils:grass_with_leaves_1",
|
|
|
|
"woodsoils:grass_with_leaves_2"
|
|
|
|
}
|
|
|
|
|
|
|
|
local cold_surfaces = {
|
|
|
|
"default:dirt_with_snow"
|
|
|
|
}
|
|
|
|
|
|
|
|
local sand_surfaces = {
|
|
|
|
"default:sand",
|
|
|
|
"default:desert_sand",
|
|
|
|
"cottages:loam",
|
|
|
|
-- note, no silver sand here.
|
|
|
|
-- too cold for a palm, too... well... sandy for anything else.
|
|
|
|
}
|
2013-02-12 04:07:40 +01:00
|
|
|
|
|
|
|
for i in ipairs(moretrees.treelist) do
|
|
|
|
local treename = moretrees.treelist[i][1]
|
|
|
|
local tree_model = treename.."_model"
|
|
|
|
local tree_biome = treename.."_biome"
|
2019-05-23 01:09:41 +02:00
|
|
|
local surfaces
|
|
|
|
local grow_function = moretrees[tree_model]
|
2013-02-12 04:07:40 +01:00
|
|
|
|
2019-05-23 01:09:41 +02:00
|
|
|
if treename == "spruce"
|
|
|
|
or treename == "fir"
|
|
|
|
or treename == "cedar"
|
|
|
|
or treename == "pine" then
|
|
|
|
surfaces = cold_surfaces
|
|
|
|
elseif string.find(treename, "palm") then
|
|
|
|
surfaces = sand_surfaces
|
|
|
|
else
|
|
|
|
surfaces = dirt_surfaces
|
2013-02-12 04:07:40 +01:00
|
|
|
end
|
|
|
|
|
2019-05-23 01:09:41 +02:00
|
|
|
if treename == "spruce"
|
|
|
|
or treename == "fir"
|
|
|
|
or treename == "birch"
|
|
|
|
or treename == "jungletree" then
|
|
|
|
grow_function = "moretrees.grow_"..treename
|
|
|
|
end
|
2013-09-15 04:44:32 +02:00
|
|
|
|
2019-05-23 01:09:41 +02:00
|
|
|
biome_lib:dbg(dump(moretrees[tree_biome].surface))
|
2018-10-25 17:59:44 +02:00
|
|
|
|
|
|
|
biome_lib:grow_plants({
|
2019-05-23 01:09:41 +02:00
|
|
|
grow_delay = moretrees.sapling_interval,
|
|
|
|
grow_chance = moretrees.sapling_chance,
|
|
|
|
grow_plant = "moretrees:"..treename.."_sapling",
|
|
|
|
grow_nodes = surfaces,
|
|
|
|
grow_function = grow_function,
|
2018-10-25 17:59:44 +02:00
|
|
|
})
|
|
|
|
|
2019-05-23 01:09:41 +02:00
|
|
|
if moretrees.spawn_saplings then
|
|
|
|
biome_lib:grow_plants({
|
|
|
|
grow_delay = 2,
|
2019-05-23 01:16:30 +02:00
|
|
|
grow_chance = 1,
|
2019-05-23 01:09:41 +02:00
|
|
|
grow_plant = "moretrees:"..treename.."_sapling_ongen",
|
|
|
|
grow_nodes = moretrees[tree_biome].surface,
|
|
|
|
grow_function = grow_function,
|
|
|
|
})
|
|
|
|
end
|
2018-10-25 17:59:44 +02:00
|
|
|
end
|