techage/items/steelmat.lua

30 lines
501 B
Lua
Raw Permalink Normal View History

--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
2020-10-19 20:09:17 +03:00
AGPL v3
See LICENSE.txt for more information
2022-01-03 23:40:31 +03:00
pillar
2022-01-03 23:40:31 +03:00
]]--
local S = techage.S
minetest.register_craftitem("techage:steelmat", {
description = S("TechAge Steel Mat"),
inventory_image = "techage_steelmat.png",
})
minetest.register_craft({
output = 'techage:steelmat 16',
recipe = {
{"", "techage:iron_ingot", ""},
{"default:steel_ingot", "techage:iron_ingot", "default:steel_ingot"},
{"", "techage:iron_ingot", ""},
},
})