summaryrefslogtreecommitdiff
path: root/saplings.lua
blob: 5d0af282865552611e17f544f9730e765e01c967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- sapling growth

for i in ipairs(moretrees.treelist) do
	local treename = moretrees.treelist[i][1]
	local tree_model = treename.."_model"
	local tree_biome = treename.."_biome"

	if treename ~= "birch" and treename ~= "spruce" and treename ~= "fir" and treename ~= "jungletree" then

		plantslib:dbg(dump(moretrees[tree_biome].surface))
		plantslib:grow_plants({
			grow_delay = moretrees.sapling_interval,
			grow_chance = moretrees.sapling_chance,
			grow_plant = "moretrees:"..treename.."_sapling",
			grow_nodes = moretrees[tree_biome].surface,
			grow_function = moretrees[tree_model],
		})
	end
end

plantslib:grow_plants({
	grow_delay = moretrees.sapling_interval,
	grow_chance = moretrees.sapling_chance,
	grow_plant = "moretrees:birch_sapling",
	grow_nodes = moretrees.birch_biome.surface,
	grow_function = "moretrees:grow_birch"
})

plantslib:grow_plants({
	grow_delay = moretrees.sapling_interval,
	grow_chance = moretrees.sapling_chance,
	grow_plant = "moretrees:spruce_sapling",
	grow_nodes = moretrees.spruce_biome.surface,
	grow_function = "moretrees:grow_spruce"
})

plantslib:grow_plants({
	grow_delay = moretrees.sapling_interval,
	grow_chance = moretrees.sapling_chance,
	grow_plant = "moretrees:fir_sapling",
	grow_nodes = moretrees.fir_biome.surface,
	grow_function = "moretrees:grow_fir"
})

plantslib:grow_plants({
	grow_delay = moretrees.sapling_interval,
	grow_chance = moretrees.sapling_chance,
	grow_plant = "moretrees:jungletree_sapling",
	grow_nodes = moretrees.jungletree_biome.surface,
	grow_function = "moretrees:grow_jungletree"
})