diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-03 20:43:00 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-03 20:43:00 +0100 |
commit | 0ea9f423ca076f42d82059be3f5e4d9ad23ce30b (patch) | |
tree | 3609352df74f57b0e16ab592fc4127f4a6213323 /schematics/orange_tree.lua | |
parent | 9ae811465ea37703f9ee85dfd97f7082190e60ea (diff) |
redo schems, add firethorn and igloo, tweak mapgen
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, + + } } |