Vanessa Dannenberg
2018-10-31 44cb8df048e09b64214f59db73a3fd23cfe12e77
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 = {
44cb8d 22         {'basic_materials:padlock'},
82cba9 23         {'technic:copper_chest'},
R 24     }
25 })
26
78cacd 27 technic.chests:register("Copper", {
96ad67 28     width = 12,
Z 29     height = 5,
5c689a 30     sort = true,
R 31     autosort = true,
78cacd 32     infotext = false,
S 33     color = false,
34     locked = false,
82cba9 35 })
R 36
78cacd 37 technic.chests:register("Copper", {
96ad67 38     width = 12,
Z 39     height = 5,
5c689a 40     sort = true,
R 41     autosort = true,
78cacd 42     infotext = false,
S 43     color = false,
44     locked = true,
82cba9 45 })
R 46