ethereal/schematics/orange_tree.lua

43 lines
654 B
Lua
Raw Normal View History

2015-04-25 14:41:36 +03:00
-- orange tree
2015-04-25 14:41:36 +03:00
local ai = {name = "air", param1 = 000}
local lp = {name = "ethereal:orange_leaves", param1 = 255}
local lr = {name = "ethereal:orange_leaves", param1 = 200}
local tr = {name = "default:tree", param1 = 255}
local of = {name = "ethereal:orange", param1 = 100}
2015-05-08 22:36:32 +03:00
2015-04-25 14:41:36 +03:00
ethereal.orangetree = {
size = {x = 3, y = 6, z = 3},
2015-04-25 14:41:36 +03:00
data = {
ai, ai, ai,
ai, ai, ai,
ai, ai, ai,
lr, lr, of,
lp, lp, lp,
lr, of, lr,
ai, tr, ai,
ai, tr, ai,
ai, tr, ai,
lr, tr, lr,
lp, tr, lp,
lr, lp, lr,
ai, ai, ai,
ai, ai, ai,
ai, ai, ai,
of, lr, lr,
lp, lp, lp,
lr, lr, lr,
2015-04-25 14:41:36 +03:00
},
2015-04-25 14:41:36 +03:00
yslice_prob = {
{ypos = 1, prob = 127},
2015-04-25 14:41:36 +03:00
},
}