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/bush.lua | |
parent | 9ae811465ea37703f9ee85dfd97f7082190e60ea (diff) |
redo schems, add firethorn and igloo, tweak mapgen
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}, - }, + } } |