summaryrefslogtreecommitdiff
path: root/biome_defs.lua
diff options
context:
space:
mode:
authorRogier <rogier777@gmail.com>2016-07-01 16:06:29 +0200
committerRogier <rogier777@gmail.com>2016-07-03 07:16:36 +0200
commitd72574d28835e30e9d7fa7644268876e6920421a (patch)
treed37859050c821b7a226ce1bf97f6f942940816ae /biome_defs.lua
parent8aa4888deefb6d1f6e380763ca662018a82b767f (diff)
Add poplar tree
Poplars exist in two kinds: small and large trees. Both use the same nodes, except for the sapling. Poplar leaves may drop one or the other sapling. Poplar trees require a humid environment, and water nearby. Provided there is water, an occasional poplar will grow under less humid conditions.
Diffstat (limited to 'biome_defs.lua')
-rw-r--r--biome_defs.lua91
1 files changed, 91 insertions, 0 deletions
diff --git a/biome_defs.lua b/biome_defs.lua
index 46228f5..463f4b8 100644
--- a/biome_defs.lua
+++ b/biome_defs.lua
@@ -196,6 +196,97 @@ moretrees.cedar_biome = {
max_count = 10,
}
+
+-- Poplar requires a lot of water.
+moretrees.poplar_biome = {
+ surface = "default:dirt_with_grass",
+ avoid_nodes = moretrees.avoidnodes,
+ avoid_radius = 6,
+ seed_diff = 341,
+ min_elevation = 0,
+ max_elevation = 50,
+ near_nodes = {"default:water_source"},
+ near_nodes_size = 15,
+ near_nodes_vertical = 5,
+ near_nodes_count = 1,
+ humidity_min = -0.7,
+ humidity_max = -1,
+ rarity = 50,
+ max_count = 15,
+}
+
+-- The humidity requirement it quite restrictive (apparently).
+-- Spawn an occasional poplar elsewhere.
+moretrees.poplar_biome_2 = {
+ surface = "default:dirt_with_grass",
+ avoid_nodes = moretrees.avoidnodes,
+ avoid_radius = 6,
+ seed_diff = 341,
+ min_elevation = 0,
+ max_elevation = 50,
+ near_nodes = {"default:water_source"},
+ near_nodes_size = 15,
+ near_nodes_vertical = 4,
+ near_nodes_count = 10,
+ humidity_min = 0.1,
+ humidity_max = -0.6,
+ rarity = 50,
+ max_count = 1,
+}
+
+-- Subterranean lakes provide enough water for poplars to grow
+moretrees.poplar_biome_3 = {
+ surface = "default:dirt_with_grass",
+ avoid_nodes = moretrees.avoidnodes,
+ avoid_radius = 6,
+ seed_diff = 342,
+ min_elevation = 0,
+ max_elevation = 50,
+ near_nodes = {"default:water_source"},
+ near_nodes_size = 1,
+ near_nodes_vertical = 25,
+ near_nodes_count = 1,
+ humidity_min = -0.5,
+ humidity_max = -1,
+ rarity = 0,
+ max_count = 30,
+}
+
+moretrees.poplar_small_biome = {
+ surface = "default:dirt_with_grass",
+ avoid_nodes = moretrees.avoidnodes,
+ avoid_radius = 4,
+ seed_diff = 343,
+ min_elevation = 0,
+ max_elevation = 50,
+ near_nodes = {"default:water_source"},
+ near_nodes_size = 10,
+ near_nodes_vertical = 5,
+ near_nodes_count = 1,
+ humidity_min = -0.7,
+ humidity_max = -1,
+ rarity = 50,
+ max_count = 10,
+}
+
+moretrees.poplar_small_biome_2 = {
+ surface = "default:dirt_with_grass",
+ avoid_nodes = moretrees.avoidnodes,
+ avoid_radius = 4,
+ seed_diff = 343,
+ min_elevation = 0,
+ max_elevation = 50,
+ near_nodes = {"default:water_source"},
+ near_nodes_size = 10,
+ near_nodes_vertical = 4,
+ near_nodes_count = 5,
+ humidity_min = 0.1,
+ humidity_max = -0.6,
+ rarity = 50,
+ max_count = 3,
+}
+
+
moretrees.fir_biome = {
surface = "default:dirt_with_grass",
avoid_nodes = moretrees.avoidnodes,