technic/technic_chests/copper_chest.lua

45 lines
1.0 KiB
Lua
Raw Normal View History

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',
recipe = {
{'technic:wrought_iron_ingot'},
2013-01-27 17:03:46 +04:00
{'technic:copper_chest'},
}
})
2013-12-18 04:15:20 +04:00
technic.chests:register("Copper", {
width = 10,
2014-05-01 11:32:01 +04:00
sort = true,
autosort = true,
2013-12-18 04:15:20 +04:00
infotext = false,
color = false,
locked = false,
2013-01-27 17:03:46 +04:00
})
2013-12-18 04:15:20 +04:00
technic.chests:register("Copper", {
width = 10,
2014-05-01 11:32:01 +04:00
sort = true,
autosort = true,
2013-12-18 04:15:20 +04:00
infotext = false,
color = false,
locked = true,
2013-01-27 17:03:46 +04:00
})