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