forked from mtcontrib/pipeworks
crafts.lua: add gear item for node breaker crafting
This commit is contained in:
parent
b0de9d9958
commit
a81834558a
14
crafts.lua
14
crafts.lua
|
@ -148,4 +148,18 @@ if minetest.get_modpath("homedecor") == nil then
|
||||||
})
|
})
|
||||||
end
|
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", "" }
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
|
BIN
textures/pipeworks_gear.png
Normal file
BIN
textures/pipeworks_gear.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 380 B |
Loading…
Reference in New Issue
Block a user