21 lines
333 B
Lua
21 lines
333 B
Lua
|
|
||
|
-- waterlily
|
||
|
|
||
|
ethereal.waterlily = {
|
||
|
size = {x = 1, y = 3, z = 1},
|
||
|
data = {
|
||
|
|
||
|
{name = "default:sand", param1 = 255},
|
||
|
{name = "default:water_source", param1 = 255},
|
||
|
{name = "flowers:waterlily", param1 = 255},
|
||
|
|
||
|
},
|
||
|
}
|
||
|
|
||
|
if ethereal.lilywalk == true then
|
||
|
|
||
|
minetest.override_item("flowers:waterlily", {
|
||
|
walkable = true,
|
||
|
})
|
||
|
end
|