summaryrefslogtreecommitdiff
path: root/biome_defs.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-02-20 11:46:36 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-02-20 12:01:47 -0500
commitbc86a3e2ab350b890876d628391d2cd3b733825c (patch)
treea0ae8f18313908bf29f8a81ba49e8a9eb7d5c889 /biome_defs.lua
parentc854f526d478531010025197304465bfab3a7d88 (diff)
made jungle trees more numerous and able to spread further from water, took
leaves out of the avoidnodes table, there's really no reason to have them there and having them causes too much spacing between trees. Reduced the prevalence of sequoias.
Diffstat (limited to 'biome_defs.lua')
-rw-r--r--biome_defs.lua14
1 files changed, 6 insertions, 8 deletions
diff --git a/biome_defs.lua b/biome_defs.lua
index 155101b..c3b8957 100644
--- a/biome_defs.lua
+++ b/biome_defs.lua
@@ -59,8 +59,8 @@ moretrees.sequoia_biome = {
max_elevation = 10,
temp_min = 1,
temp_max = -0.4,
- rarity = 50,
- max_count = 15,
+ rarity = 90,
+ max_count = 5,
}
moretrees.birch_biome = {
@@ -129,19 +129,17 @@ moretrees.rubber_tree_biome = {
max_count = 10,
}
-
moretrees.jungletree_biome = {
surface = "default:dirt_with_grass",
avoid_nodes = moretrees.avoidnodes,
- avoid_radius = 12,
+ avoid_radius = 5,
seed_diff = 329,
min_elevation = -5,
max_elevation = 10,
near_nodes = {"default:water_source"},
- near_nodes_size = 15,
- near_nodes_count = 10,
--- temp_min = 0.05,
- rarity = 50,
+ near_nodes_size = 20,
+ near_nodes_count = 7,
+ rarity = 10,
max_count = 10,
}