diff --git a/nodes.lua b/nodes.lua index 7f07d24..892a9e4 100644 --- a/nodes.lua +++ b/nodes.lua @@ -135,6 +135,23 @@ if minetest.get_modpath("bucket") then }) end +xpanes.register_pane("chainlink", { + description = "Chain Link", + tiles = {"xdecor_chainlink.png"}, + drawtype = "airlike", + paramtype = "light", + textures = {"xdecor_chainlink.png", "xdecor_chainlink.png", + "xpanes_space.png"}, + inventory_image = "xdecor_chainlink.png", + wield_image = "xdecor_chainlink.png", + groups = {snappy=3, pane=1}, + recipe = { + {"default:steel_ingot", "", "default:steel_ingot"}, + {"", "default:steel_ingot", ""}, + {"default:steel_ingot", "", "default:steel_ingot"} + } +}) + xdecor.register("chair", { description = "Chair", tiles = {"xdecor_wood.png"}, diff --git a/textures/xdecor_chainlink.png b/textures/xdecor_chainlink.png new file mode 100644 index 0000000..bd8f7cf Binary files /dev/null and b/textures/xdecor_chainlink.png differ