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