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/mushroomone.lua | |
parent | b32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff) | |
parent | 43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff) |
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
Diffstat (limited to 'schematics/mushroomone.lua')
-rw-r--r-- | schematics/mushroomone.lua | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/schematics/mushroomone.lua b/schematics/mushroomone.lua new file mode 100644 index 0000000..b458737 --- /dev/null +++ b/schematics/mushroomone.lua @@ -0,0 +1,116 @@ + +local _ = {name = "air", prob = 0} +local M = {name = "ethereal:mushroom", prob = 255} +local T = {name = "ethereal:mushroom_trunk", prob = 255} +local P = {name = "ethereal:mushroom_pore", prob = 255} + +ethereal.mushroomone = { + + size = {x = 8, y = 11, z = 8}, + + yslice_prob = { + {ypos = 0, prob = 127}, + {ypos = 1, prob = 127}, + {ypos = 7, prob = 127}, + }, + + data = { + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,M,M,_,_,_, + _,_,_,M,M,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,M,_,_,M,_,_, + _,_,M,_,_,M,_,_, + _,_,_,M,M,_,_,_, + _,_,_,_,_,_,_,_, + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,M,_,_,_,_,M,_, + _,M,_,_,_,_,M,_, + _,_,M,P,P,M,_,_, + _,_,_,M,M,_,_,_, + + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + M,_,_,T,T,_,_,M, + M,_,_,T,T,_,_,M, + _,M,P,P,P,P,M,_, + _,_,M,M,M,M,_,_, + + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, + M,_,_,T,T,_,_,M, + M,_,_,T,T,_,_,M, + _,M,P,P,P,P,M,_, + _,_,M,M,M,M,_,_, + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,M,_,_,_,_,M,_, + _,M,_,_,_,_,M,_, + _,_,M,P,P,M,_,_, + _,_,_,M,M,_,_,_, + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,M,_,_,M,_,_, + _,_,M,_,_,M,_,_, + _,_,_,M,M,_,_,_, + _,_,_,_,_,_,_,_, + + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,M,M,_,_,_, + _,_,_,M,M,_,_,_, + _,_,_,_,_,_,_,_, + _,_,_,_,_,_,_,_, + + } +} |