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