2024-01-27 02:06:23 +01:00
|
|
|
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",{
|
2024-01-27 02:06:23 +01:00
|
|
|
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"},
|
|
|
|
},
|
|
|
|
})
|