ethereal/schematics/vinetree.lua

79 lines
1.3 KiB
Lua
Raw Permalink Normal View History

local _ = {name = "air", prob = 0}
2024-10-10 11:15:06 +03:00
local t = {name = "default:tree", prob = 255}
local T = {name = "default:tree", prob = 255, force_place = true}
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,
2024-10-10 11:15:06 +03:00
_,L,t,_,t,L,U,
u,L,L,L,L,_,_,
_,_,L,L,L,L,_,
_,_,L,L,L,_,_,
_,_,_,T,_,_,_,
_,_,_,T,_,_,_,
2024-10-10 11:15:06 +03:00
u,_,_,t,_,_,_,
u,L,_,L,_,L,_,
u,L,L,L,L,L,_,
_,L,L,L,L,L,_,
_,_,L,L,L,_,_,
_,_,_,_,_,_,_,
_,_,_,_,_,_,U,
_,_,_,_,_,_,U,
2024-10-10 11:15:06 +03:00
_,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,_,_,
_,_,_,_,_,_,_,
_,_,_,_,_,_,_,
}
}