2025-01-01 13:30:08 +03:00
|
|
|
local S = minetest.get_translator("technic_chests")
|
|
|
|
|
|
|
|
technic.chests:register(S("Copper"), "copper", {
|
2025-01-01 14:04:47 +03:00
|
|
|
width = 14,
|
2025-01-01 13:30:08 +03:00
|
|
|
height = 5,
|
|
|
|
sort = true,
|
|
|
|
autosort = true,
|
|
|
|
infotext = false,
|
|
|
|
color = false,
|
|
|
|
locked = false,
|
|
|
|
})
|
|
|
|
|
|
|
|
technic.chests:register(S("Copper"), "copper",{
|
2025-01-01 14:04:47 +03:00
|
|
|
width = 14,
|
2025-01-01 13:30:08 +03:00
|
|
|
height = 5,
|
|
|
|
sort = true,
|
|
|
|
autosort = true,
|
|
|
|
infotext = false,
|
|
|
|
color = false,
|
|
|
|
locked = true,
|
|
|
|
})
|
|
|
|
|
2013-01-27 17:03:46 +04:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:copper_chest 1',
|
|
|
|
recipe = {
|
2013-07-06 12:35:48 +04:00
|
|
|
{'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'},
|
2013-01-27 17:03:46 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:copper_locked_chest 1',
|
|
|
|
recipe = {
|
2013-07-06 12:35:48 +04:00
|
|
|
{'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'},
|
2013-01-27 17:03:46 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:copper_locked_chest 1',
|
2020-04-26 12:33:12 +03:00
|
|
|
type = "shapeless",
|
2013-01-27 17:03:46 +04:00
|
|
|
recipe = {
|
2020-05-03 20:53:43 +03:00
|
|
|
'basic_materials:padlock',
|
|
|
|
'technic:copper_chest',
|
2013-01-27 17:03:46 +04:00
|
|
|
}
|
|
|
|
})
|