mirror of https://github.com/APercy/airutils
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
419 B
17 lines
419 B
local S = minetest.get_translator("airutils") |
|
|
|
-- trike repair |
|
minetest.register_craftitem("airutils:repair_tool",{ |
|
description = "Repair Tool", |
|
inventory_image = "airutils_repair_tool.png", |
|
}) |
|
|
|
minetest.register_craft({ |
|
output = "airutils:repair_tool", |
|
recipe = { |
|
{"", "default:steel_ingot", ""}, |
|
{"", "default:steel_ingot", ""}, |
|
{"default:steel_ingot", "", "default:steel_ingot"}, |
|
}, |
|
}) |
|
|
|
|