tombs/chisel.lua

14 lines
300 B
Lua
Raw Permalink Normal View History

2021-08-16 20:00:07 -07:00
minetest.register_tool('tombs:chisel', {
description = 'Stone Chisel',
inventory_image = 'tombs_chisel.png',
wield_image = 'tombs_chisel.png',
})
2021-08-16 20:00:07 -07:00
minetest.register_craft({
output = 'tombs:chisel',
recipe = {
{'default:steel_ingot', ''},
{'', 'default:tin_ingot'},
}
})