Vanessa Dannenberg
2018-10-31 44cb8df048e09b64214f59db73a3fd23cfe12e77
commit | author | age
ae7f49 1 if minetest.get_modpath("moreores") then
R 2     minetest.register_craft({
3         output = 'technic:mithril_chest 1',
4         recipe = {
5             {'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
6             {'moreores:mithril_ingot','technic:gold_chest','moreores:mithril_ingot'},
7             {'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
8         }
9     })
82cba9 10
ae7f49 11     minetest.register_craft({
R 12         output = 'technic:mithril_locked_chest 1',
13         recipe = {
14             {'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
15             {'moreores:mithril_ingot','technic:gold_locked_chest','moreores:mithril_ingot'},
16             {'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
17         }
18     })
19 end
82cba9 20
R 21 minetest.register_craft({
22     output = 'technic:mithril_locked_chest 1',
23     recipe = {
44cb8d 24         {'basic_materials:padlock'},
82cba9 25         {'technic:mithril_chest'},
R 26     }
27 })
28
78cacd 29 technic.chests:register("Mithril", {
96ad67 30     width = 15,
4ea213 31     height = 6,
5c689a 32     sort = true,
R 33     autosort = true,
78cacd 34     infotext = false,
S 35     color = false,
36     locked = false,
82cba9 37 })
R 38
78cacd 39 technic.chests:register("Mithril", {
96ad67 40     width = 15,
4ea213 41     height = 6,
5c689a 42     sort = true,
R 43     autosort = true,
78cacd 44     infotext = false,
S 45     color = false,
46     locked = true,
82cba9 47 })
78cacd 48