diff --git a/trunks/nodes.lua b/trunks/nodes.lua index c9aa1e5..2386085 100644 --- a/trunks/nodes.lua +++ b/trunks/nodes.lua @@ -38,3 +38,24 @@ minetest.register_node("trunks:moss", { legacy_wallmounted = true, sounds = default.node_sound_leaves_defaults(), }) + +minetest.register_node("trunks:moss_fungus", { + description = "moss & fungus", + drawtype = "signlike", + tiles = {"trunks_moss_fungus.png"}, + inventory_image = "trunks_moss_fungus.png", + wield_image = "trunks_moss_fungus.png", + paramtype = "light", + paramtype2 = "wallmounted", + walkable = false, + --climbable = true, + selection_box = { + type = "wallmounted", + --wall_top = = + --wall_bottom = = + --wall_side = = + }, + groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2}, + legacy_wallmounted = true, + sounds = default.node_sound_leaves_defaults(), +}) diff --git a/trunks/textures/trunks_moss_fungus.png b/trunks/textures/trunks_moss_fungus.png new file mode 100644 index 0000000..3b8788e Binary files /dev/null and b/trunks/textures/trunks_moss_fungus.png differ