techage/nodes/steelmat.lua
Joachim Stolberg 77a7417cf4 switched from internal doc strings to md file based documentation
translation strings added
door block bugfix
player detector bugfix
2019-09-26 22:32:37 +02:00

29 lines
501 B
Lua

--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
GPL v3
See LICENSE.txt for more information
pillar
]]--
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", ""},
},
})