Add 'mods/ethereal/schematics/bush.lua'

This commit is contained in:
thunderdog1138 2020-07-15 17:15:13 +00:00
parent b9bcd25d68
commit a9a077ead8
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
local _ = {name = "air", param = 0}
local L = {name = "ethereal:bush_leaves", param = 255}
local S = {name = "ethereal:bush_stem", param = 255}
ethereal.bush = {
size = {x = 3, y = 2, z = 3},
yslice_prob = {
{ypos = 3, prob = 127},
},
data = {
L,L,L,
_,L,_,
L,S,L,
L,L,L,
L,L,L,
_,L,_,
}
}