Cristiano Magro
2020-12-03 2081b409249bdbcf94ea387bd74e219bbf9111d0
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',
fb4fef 21     type = "shapeless",
82cba9 22     recipe = {
88f425 23         'basic_materials:padlock',
D 24         'technic:copper_chest',
82cba9 25     }
R 26 })
27
78cacd 28 technic.chests:register("Copper", {
96ad67 29     width = 12,
Z 30     height = 5,
5c689a 31     sort = true,
R 32     autosort = true,
78cacd 33     infotext = false,
S 34     color = false,
35     locked = false,
82cba9 36 })
R 37
78cacd 38 technic.chests:register("Copper", {
96ad67 39     width = 12,
Z 40     height = 5,
5c689a 41     sort = true,
R 42     autosort = true,
78cacd 43     infotext = false,
S 44     color = false,
45     locked = true,
82cba9 46 })
R 47