summaryrefslogtreecommitdiff
path: root/schematics/pinetree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'schematics/pinetree.lua')
-rw-r--r--schematics/pinetree.lua81
1 files changed, 81 insertions, 0 deletions
diff --git a/schematics/pinetree.lua b/schematics/pinetree.lua
new file mode 100644
index 0000000..f216c5b
--- /dev/null
+++ b/schematics/pinetree.lua
@@ -0,0 +1,81 @@
+
+local _ = {name = "air", prob = 0}
+local L = {name = "ethereal:pineleaves", prob = 255}
+local T = {name = "default:pinetree", prob = 255}
+
+ethereal.pinetree = {
+
+ size = {x = 7, y = 8, z = 7},
+
+ yslice_prob = {
+ {ypos = 0, prob = 127},
+ {ypos = 4, prob = 127},
+ },
+
+ data = {
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,L,L,L,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,L,L,L,L,L,_,
+ _,_,_,L,_,_,_,
+ _,_,L,L,L,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+
+ _,_,_,T,_,_,_,
+ _,_,_,T,_,_,_,
+ _,_,L,T,L,_,_,
+ L,L,L,T,L,L,L,
+ _,_,L,T,L,_,_,
+ _,L,L,T,L,L,_,
+ _,_,L,T,L,_,_,
+ _,_,_,L,_,_,_,
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,L,L,L,L,L,_,
+ _,_,_,L,_,_,_,
+ _,_,L,L,L,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,L,L,L,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,L,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+ _,_,_,_,_,_,_,
+
+ }
+}