technic/technic_chests/copper_chest.lua

49 lines
1.1 KiB
Lua
Raw Permalink Normal View History

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',
type = "shapeless",
2013-01-27 17:03:46 +04:00
recipe = {
'basic_materials:padlock',
'technic:copper_chest',
2013-01-27 17:03:46 +04:00
}
})