diff options
author | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 |
commit | 31fe2ff374e72fb8ea44d50cd82d6fc8b9be5463 (patch) | |
tree | 87768ea1339a0c838716d8bb3418e35a80b00c46 /schematics/orange_tree.lua | |
parent | b32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff) | |
parent | 43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff) |
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
Diffstat (limited to 'schematics/orange_tree.lua')
-rw-r--r-- | schematics/orange_tree.lua | 65 |
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, + + } } |