diff --git a/crafts.lua b/crafts.lua index cef8f70..1647aa8 100644 --- a/crafts.lua +++ b/crafts.lua @@ -257,6 +257,14 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = "xdecor:packed_ice", + recipe = { + {"default:ice", "default:ice"}, + {"default:ice", "default:ice"} + } +}) + minetest.register_craft({ output = "xdecor:painting", recipe = { diff --git a/nodes.lua b/nodes.lua index b5ae908..4148522 100644 --- a/nodes.lua +++ b/nodes.lua @@ -427,6 +427,14 @@ xdecor.register("lightbox", { sounds = sound.glass }) +xdecor.register("packed_ice", { + drawtype = "normal", + description = "Packed Ice", + tiles = {"xdecor_packed_ice.png"}, + groups = {cracky=2}, + sounds = sound.glass +}) + local flowerstype = { "dandelion_white", "dandelion_yellow", "geranium", "rose", "tulip", "viola" } diff --git a/textures/xdecor_packed_ice.png b/textures/xdecor_packed_ice.png new file mode 100644 index 0000000..c8047d6 Binary files /dev/null and b/textures/xdecor_packed_ice.png differ