summaryrefslogtreecommitdiff
path: root/schematics/palmtree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'schematics/palmtree.lua')
-rw-r--r--schematics/palmtree.lua110
1 files changed, 110 insertions, 0 deletions
diff --git a/schematics/palmtree.lua b/schematics/palmtree.lua
new file mode 100644
index 0000000..e890b10
--- /dev/null
+++ b/schematics/palmtree.lua
@@ -0,0 +1,110 @@
+
+local _ = {name = "air", param = 0}
+local L = {name = "ethereal:palmleaves", param = 255}
+local l = {name = "ethereal:palmleaves", param = 191}
+local T = {name = "ethereal:palm_trunk", param = 255}
+local t = {name = "ethereal:palm_trunk", param = 191}
+local C = {name = "ethereal:coconut", param = 127}
+
+ethereal.palmtree = {
+
+ size = {x = 9, y = 9, z = 9},
+
+ yslice_prob = {
+ {ypos = 3, prob = 127},
+ },
+
+ data = {
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,l,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,C,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,T,_,_,_,_,
+ _,_,_,_,T,_,_,_,_,
+ _,_,_,_,T,_,_,_,_,
+ _,_,_,_,T,t,_,_,_,
+ _,_,_,_,_,T,_,_,_,
+ _,_,l,_,_,T,_,_,l,
+ _,_,L,L,C,T,C,L,L,
+ _,_,_,L,L,L,L,L,_,
+ _,_,_,_,_,L,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,C,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,l,_,_,_,
+ _,_,_,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,_,_,
+
+ }
+}