summaryrefslogtreecommitdiff
path: root/moretrees/tree_models.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-07-02 21:07:49 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-07-02 21:07:49 -0400
commitdd3d366a77e77fd93f6db9243a8d6719335e6895 (patch)
treed9fbb6c0b9992b32952a239bee19403d657c9123 /moretrees/tree_models.lua
parentf18f36ac0d5416311b74160942e5f4946742c7d1 (diff)
downloaddreambuilder_modpack-dd3d366a77e77fd93f6db9243a8d6719335e6895.tar
dreambuilder_modpack-dd3d366a77e77fd93f6db9243a8d6719335e6895.tar.gz
dreambuilder_modpack-dd3d366a77e77fd93f6db9243a8d6719335e6895.tar.bz2
dreambuilder_modpack-dd3d366a77e77fd93f6db9243a8d6719335e6895.tar.xz
dreambuilder_modpack-dd3d366a77e77fd93f6db9243a8d6719335e6895.zip
updated areas, biome_lib, plantlife, moreblocks, moretrees, pipeworks,
and worldedit mods
Diffstat (limited to 'moretrees/tree_models.lua')
-rw-r--r--moretrees/tree_models.lua34
1 files changed, 32 insertions, 2 deletions
diff --git a/moretrees/tree_models.lua b/moretrees/tree_models.lua
index c534089..791bddb 100644
--- a/moretrees/tree_models.lua
+++ b/moretrees/tree_models.lua
@@ -88,8 +88,13 @@ moretrees.birch_model2={
thin_branches=true
}
+-- Coconuts can't be generated as fruit, because there is no support for the
+-- special fruit trunks that allow coconuts to regrow at the correct position
+-- in the tree.
+-- So, a placeholder fruit trunk is spawned. An ABM will convert it to the final
+-- fruit trunk, and generate the actual coconuts.
moretrees.palm_model={
- axiom="FFcccccc&FFFFFddd[^&&&GR][^///&&&GR][^//////&&&GR][^***&&&GR]FA//A//A//A//A//A",
+ axiom="FFcccccc&FFFFFdddRA//A//A//A//A//A",
rules_a="[&fb&bbb[++f--&ffff&ff][--f++&ffff&ff]&ffff&bbbb&b]",
rules_b="f",
rules_c="/",
@@ -101,7 +106,32 @@ moretrees.palm_model={
random_level=0,
trunk_type="single",
thin_branches=true,
- fruit="moretrees:coconut",
+ fruit="moretrees:palm_fruit_trunk_gen",
+ fruit_chance=0
+}
+
+-- Dates can't be generated as fruit, because there is no support for the
+-- special (male and female) fruit trunks that allow dates to regrow at the
+-- correct position in the tree.
+-- So, a generic fruit trunk is spawned. An ABM will convert it to a male
+-- or female fruit trunk, and generate the actual dates.
+moretrees.date_palm_model={
+ axiom="TTTTddddddddddccccccccccRT[TGGGGT]"..
+ "ccccc[&&a]ccccc[&&a]ccccc[&&a]ccccc[&&a]ccccc[&&a]ccccc[&&a]"..
+ "GGccccc[&a]ccccc[&a]ccccc[&a]ccccc[&a]ccccc[&a]ccccc[&a]"..
+ "GGccccc[a]ccccc[a]ccccc[a]ccccc[a]ccccc[a]ccccc[a]",
+ rules_a="Gffb&bbb[++f--&ffff&ff][--f++&ffff&ff]&ff&ff&bb&bb&bb",
+ rules_b="f",
+ rules_c="/",
+ rules_d="F",
+ trunk="moretrees:date_palm_trunk",
+ leaves="moretrees:date_palm_leaves",
+ angle=18,
+ iterations=1,
+ random_level=0,
+ trunk_type="single",
+ thin_branches=false,
+ fruit="moretrees:date_palm_fruit_trunk",
fruit_chance=0
}