Zefram
2014-05-16 68b7bcc28e39bdf0926072b834eeeeec0ee6c721
commit | author | age
82cba9 1 minetest.register_craft({
R 2     output = 'technic:copper_chest 1',
3     recipe = {
3a3700 4         {'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
R 5         {'default:copper_ingot','technic:iron_chest','default:copper_ingot'},
6         {'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
82cba9 7     }
R 8 })
9
10 minetest.register_craft({
11     output = 'technic:copper_locked_chest 1',
12     recipe = {
3a3700 13         {'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
R 14         {'default:copper_ingot','technic:iron_locked_chest','default:copper_ingot'},
15         {'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
82cba9 16     }
R 17 })
18
19 minetest.register_craft({
20     output = 'technic:copper_locked_chest 1',
21     recipe = {
68b7bc 22         {'technic:wrought_iron_ingot'},
82cba9 23         {'technic:copper_chest'},
R 24     }
25 })
26
78cacd 27 technic.chests:register("Copper", {
S 28     width = 10,
5c689a 29     sort = true,
R 30     autosort = true,
78cacd 31     infotext = false,
S 32     color = false,
33     locked = false,
82cba9 34 })
R 35
78cacd 36 technic.chests:register("Copper", {
S 37     width = 10,
5c689a 38     sort = true,
R 39     autosort = true,
78cacd 40     infotext = false,
S 41     color = false,
42     locked = true,
82cba9 43 })
R 44