airutils-cd2025/airutils_repair.lua

17 lines
388 B
Lua
Raw Normal View History

local S = airutils.S
2021-12-12 11:24:42 -03:00
-- trike repair
2024-10-24 13:54:49 -03:00
core.register_craftitem("airutils:repair_tool",{
description = S("Repair Tool"),
2021-12-12 11:24:42 -03:00
inventory_image = "airutils_repair_tool.png",
})
2024-10-24 13:54:49 -03:00
core.register_craft({
2021-12-12 11:24:42 -03:00
output = "airutils:repair_tool",
recipe = {
{"", "default:steel_ingot", ""},
{"", "default:steel_ingot", ""},
{"default:steel_ingot", "", "default:steel_ingot"},
},
})