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