summaryrefslogtreecommitdiff
path: root/schematics/bush.lua
diff options
context:
space:
mode:
authorroot <root@linux-forks.de>2018-09-14 16:56:37 +0200
committerroot <root@linux-forks.de>2018-09-14 16:56:37 +0200
commit31fe2ff374e72fb8ea44d50cd82d6fc8b9be5463 (patch)
tree87768ea1339a0c838716d8bb3418e35a80b00c46 /schematics/bush.lua
parentb32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff)
parent43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff)
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
Diffstat (limited to 'schematics/bush.lua')
-rw-r--r--schematics/bush.lua49
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},
- },
+ }
}