diff options
Diffstat (limited to 'schematics/bush.lua')
-rw-r--r-- | schematics/bush.lua | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/schematics/bush.lua b/schematics/bush.lua index 1395b06..d0a0ed3 100644 --- a/schematics/bush.lua +++ b/schematics/bush.lua @@ -1,39 +1,38 @@ --- bush - -local ai = {name = "air", param1 = 000} -local bp = {name = "ethereal:bush", param1 = 255} -local br = {name = "ethereal:bush", param1 = 100} +local _ = {name = "air", param1 = 0} +local B = {name = "ethereal:bush", param1 = 255} +local b = {name = "ethereal:bush", param1 = 100} ethereal.bush = { size = {x = 5, y = 3, z = 5}, - data = { + yslice_prob = { + {ypos = 0, prob = 127}, + {ypos = 2, prob = 127}, + }, - br, bp, bp, bp, br, - ai, ai, ai, ai, ai, - ai, ai, ai, ai, ai, + data = { - bp, bp, bp, bp, bp, - ai, br, bp, br, ai, - ai, ai, ai, ai, ai, + b,B,B,B,b, + _,_,_,_,_, + _,_,_,_,_, - bp, bp, bp, bp, bp, - ai, bp, bp, bp, ai, - ai, ai, br, ai, ai, + B,B,B,B,B, + _,b,B,b,_, + _,_,_,_,_, - bp, bp, bp, bp, bp, - ai, br, bp, br, ai, - ai, ai, ai, ai, ai, + B,B,B,B,B, + _,B,B,B,_, + _,_,b,_,_, - br, bp, bp, bp, br, - ai, ai, ai, ai, ai, - ai, ai, ai, ai, ai, + B,B,B,B,B, + _,b,B,b,_, + _,_,_,_,_, - }, + b,B,B,B,b, + _,_,_,_,_, + _,_,_,_,_, - yslice_prob = { - {ypos = 1, prob = 127}, - }, + } } |