summaryrefslogtreecommitdiff
path: root/schematics/orange_tree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'schematics/orange_tree.lua')
-rw-r--r--schematics/orange_tree.lua65
1 files changed, 32 insertions, 33 deletions
diff --git a/schematics/orange_tree.lua b/schematics/orange_tree.lua
index c7cff9c..fb70f3f 100644
--- a/schematics/orange_tree.lua
+++ b/schematics/orange_tree.lua
@@ -1,42 +1,41 @@
--- orange tree
-
-local ai = {name = "air", param1 = 000}
-local lp = {name = "ethereal:orange_leaves", param1 = 255}
-local lr = {name = "ethereal:orange_leaves", param1 = 200}
-local tr = {name = "default:tree", param1 = 255}
-local of = {name = "ethereal:orange", param1 = 100}
+local _ = {name = "air", param1 = 0}
+local L = {name = "ethereal:orange_leaves", param1 = 255}
+local l = {name = "ethereal:orange_leaves", param1 = 200}
+local T = {name = "default:tree", param1 = 255}
+local o = {name = "ethereal:orange", param1 = 100}
ethereal.orangetree = {
size = {x = 3, y = 6, z = 3},
- data = {
-
- ai, ai, ai,
- ai, ai, ai,
- ai, ai, ai,
- lr, lr, of,
- lp, lp, lp,
- lr, of, lr,
-
- ai, tr, ai,
- ai, tr, ai,
- ai, tr, ai,
- lr, tr, lr,
- lp, tr, lp,
- lr, lp, lr,
-
- ai, ai, ai,
- ai, ai, ai,
- ai, ai, ai,
- of, lr, lr,
- lp, lp, lp,
- lr, lr, lr,
-
- },
-
yslice_prob = {
- {ypos = 1, prob = 127},
+ {ypos = 0, prob = 127},
+ {ypos = 3, prob = 127},
},
+
+ data = {
+
+ _,_,_,
+ _,_,_,
+ _,_,_,
+ l,l,o,
+ L,L,L,
+ l,o,l,
+
+ _,T,_,
+ _,T,_,
+ _,T,_,
+ l,T,l,
+ L,T,L,
+ l,L,l,
+
+ _,_,_,
+ _,_,_,
+ _,_,_,
+ o,l,l,
+ L,L,L,
+ l,l,l,
+
+ }
}