diff --git a/crafts.lua b/crafts.lua index 63a04b7..8580148 100644 --- a/crafts.lua +++ b/crafts.lua @@ -148,4 +148,18 @@ if minetest.get_modpath("homedecor") == nil then }) end +-- crafting items for creating node breakers +minetest.register_craftitem("pipeworks:gear", { + description = "Gear", + inventory_image = "pipeworks_gear.png", +}) + +minetest.register_craft( { + output = "pipeworks:gear 6", + recipe = { + { "", "default:steel_ingot", "" }, + { "default:steel_ingot","default:stone", "default:steel_ingot" }, + { "", "default:steel_ingot", "" } + }, +}) diff --git a/textures/pipeworks_gear.png b/textures/pipeworks_gear.png new file mode 100644 index 0000000..b9aaa77 Binary files /dev/null and b/textures/pipeworks_gear.png differ