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/vinetree.lua | |
parent | b32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff) | |
parent | 43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff) |
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
Diffstat (limited to 'schematics/vinetree.lua')
-rw-r--r-- | schematics/vinetree.lua | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/schematics/vinetree.lua b/schematics/vinetree.lua new file mode 100644 index 0000000..be54276 --- /dev/null +++ b/schematics/vinetree.lua @@ -0,0 +1,77 @@ + +local _ = {name = "air", prob = 0} +local T = {name = "default:tree", prob = 255} +local L = {name = "default:leaves", prob = 255} +local u = {name = "ethereal:vine", prob = 255, param2 = 2} +local U = {name = "ethereal:vine", prob = 255, param2 = 3} +local W = {name = "ethereal:vine", prob = 255, param2 = 4} +local w = {name = "ethereal:vine", prob = 255, param2 = 5} + +ethereal.vinetree = { + + size = {x = 7, y = 7, z = 7}, + + yslice_prob = { + {ypos = 0, prob = 127}, + }, + + data = { + + _,_,_,_,_,_,_, + _,W,_,_,_,_,_, + _,W,_,W,_,_,_, + _,W,_,W,_,_,_, + _,W,_,_,_,W,_, + _,W,_,_,_,W,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,W,_,_, + _,_,_,_,W,_,_, + _,L,L,L,W,L,_, + _,L,L,_,L,L,_, + _,L,L,L,L,L,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,L,T,_,T,L,U, + u,L,L,L,L,_,_, + _,_,L,L,L,L,_, + _,_,L,L,L,_,_, + + _,_,_,T,_,_,_, + _,_,_,T,_,_,_, + u,_,_,T,_,_,_, + u,L,_,L,_,L,_, + u,L,L,L,L,L,_, + _,L,L,L,L,L,_, + _,_,L,L,L,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,L,T,_,T,L,U, + _,L,L,L,L,L,U, + _,L,L,L,L,L,_, + _,_,_,L,L,_,_, + + _,_,_,_,_,_,_, + u,_,_,_,_,_,_, + u,_,_,_,w,_,_, + u,L,L,L,w,L,_, + _,L,L,L,L,_,_, + _,_,L,L,L,L,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,w,_,_,_,_, + _,_,w,_,_,_,_, + _,_,w,w,_,_,_, + _,_,_,w,w,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + } +} |