ethereal/schematics/bamboo_tree.lua

88 lines
1.0 KiB
Lua
Raw Permalink Normal View History

local _ = {name = "air", param1 = 000}
2024-10-10 11:15:06 +03:00
local b = {name = "ethereal:bamboo", param1 = 255}
local B = {name = "ethereal:bamboo", param1 = 255, force_place = true}
local L = {name = "ethereal:bamboo_leaves", param1 = 255}
local l = {name = "ethereal:bamboo_leaves", param1 = 100}
ethereal.bambootree = {
size = {x = 3, y = 18, z = 3},
yslice_prob = {
{ypos = 2, prob = 127},
2024-10-10 11:15:06 +03:00
{ypos = 3, prob = 127},
{ypos = 4, prob = 127},
{ypos = 5, prob = 127}
},
data = {
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
l,L,l,
_,L,_,
_,_,_,
_,B,_,
2024-10-10 11:15:06 +03:00
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
_,b,_,
l,b,l,
_,L,_,
_,l,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
_,_,_,
l,L,l,
_,L,_,
_,_,_,
}
}
2016-08-19 19:22:09 +03:00
if ethereal.papyruswalk == true then
minetest.override_item("default:papyrus", {
walkable = true,
sunlight_propagates = true
})
end