technic/technic_chests/copper_chest.lua
Vitaliy Olkhin fde833200a
Some checks failed
Check & Release / lint (push) Has been cancelled
adjusted the size of the chest shape
2025-01-01 16:32:34 +05:00

49 lines
1.1 KiB
Lua

local S = minetest.get_translator("technic_chests")
technic.chests:register(S("Copper"), "copper", {
width = 14,
height = 5,
sort = true,
autosort = true,
infotext = false,
color = false,
locked = false,
})
technic.chests:register(S("Copper"), "copper",{
width = 14,
height = 5,
sort = true,
autosort = true,
infotext = false,
color = false,
locked = true,
})
minetest.register_craft({
output = 'technic:copper_chest 1',
recipe = {
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
{'default:copper_ingot','technic:iron_chest','default:copper_ingot'},
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
}
})
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
recipe = {
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
{'default:copper_ingot','technic:iron_locked_chest','default:copper_ingot'},
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
}
})
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
type = "shapeless",
recipe = {
'basic_materials:padlock',
'technic:copper_chest',
}
})