diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 50e7836..f9a0980 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -429,6 +429,25 @@ minetest.register_node("default:mushroom", { groups = {crumbly = 3, plant = 1}, }) +minetest.register_node("default:liana", { + description = "Liana", + drawtype = "signlike", + tiles = {"default_liana.png"}, + inventory_image = "default_liana.png", + wield_image = "default_liana.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + climbable = true, + is_ground_content = false, + selection_box = { + type = "wallmounted", + }, + groups = {crumbly = 3, plant = 1}, + legacy_wallmounted = true, +}) + -- straw minetest.register_node("default:straw", { diff --git a/mods/default/textures/default_liana.png b/mods/default/textures/default_liana.png new file mode 100644 index 0000000..74f41fb Binary files /dev/null and b/mods/default/textures/default_liana.png differ