ethereal/schematics/orange_tree.lua

52 lines
760 B
Lua
Raw Permalink Normal View History

2015-04-25 14:41:36 +03:00
local _ = {name = "air", param1 = 0}
local L = {name = "ethereal:orange_leaves", param1 = 255}
local l = {name = "ethereal:orange_leaves", param1 = 200}
2024-10-10 11:15:06 +03:00
local t = {name = "default:tree", param1 = 255}
local T = {name = "default:tree", param1 = 255, force_place = true}
local o = {name = "ethereal:orange", param1 = 200}
2015-05-08 22:36:32 +03:00
2015-04-25 14:41:36 +03:00
ethereal.orangetree = {
2020-12-14 16:19:10 +03:00
size = {x = 5, y = 6, z = 5},
data = {
2020-12-14 16:19:10 +03:00
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,L,_,_,
_,_,L,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,o,L,o,_,
_,L,L,L,_,
_,_,L,_,_,
_,_,T,_,_,
2024-10-10 11:15:06 +03:00
_,_,t,_,_,
_,_,t,_,_,
L,L,t,L,L,
2020-12-14 16:19:10 +03:00
L,T,L,T,L,
_,L,L,L,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,o,L,o,_,
_,L,L,L,_,
_,_,L,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,L,_,_,
_,_,L,_,_,
_,_,_,_,_,
}
2015-04-25 14:41:36 +03:00
}