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:silver_chest',
4         recipe = {
5             {'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
6             {'moreores:silver_ingot','technic:copper_chest','moreores:silver_ingot'},
7             {'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
8         }
9     })
fd3f25 10
ae7f49 11     minetest.register_craft({
R 12         output = 'technic:silver_locked_chest',
13         recipe = {
14             {'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
15             {'moreores:silver_ingot','technic:copper_locked_chest','moreores:silver_ingot'},
16             {'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
17         }
18     })
19 end
fd3f25 20
R 21 minetest.register_craft({
3a3700 22     output = 'technic:silver_locked_chest',
fd3f25 23     recipe = {
44cb8d 24         {'basic_materials:padlock'},
fd3f25 25         {'technic:silver_chest'},
R 26     }
27 })
28
78cacd 29 technic.chests:register("Silver", {
96ad67 30     width = 12,
Z 31     height = 6,
5c689a 32     sort = true,
R 33     autosort = true,
78cacd 34     infotext = true,
S 35     color = false,
36     locked = false,
fd3f25 37 })
R 38
78cacd 39 technic.chests:register("Silver", {
96ad67 40     width = 12,
Z 41     height = 6,
5c689a 42     sort = true,
R 43     autosort = true,
78cacd 44     infotext = true,
S 45     color = false,
46     locked = true,
fd3f25 47 })
R 48