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