auouymous
2020-09-11 03bb4dab469ddc9e37f7412fa979a0829cb3c953
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',
fb4fef 23     type = "shapeless",
fd3f25 24     recipe = {
88f425 25         'basic_materials:padlock',
D 26         'technic:silver_chest',
fd3f25 27     }
R 28 })
29
78cacd 30 technic.chests:register("Silver", {
96ad67 31     width = 12,
Z 32     height = 6,
5c689a 33     sort = true,
R 34     autosort = true,
78cacd 35     infotext = true,
S 36     color = false,
37     locked = false,
fd3f25 38 })
R 39
78cacd 40 technic.chests:register("Silver", {
96ad67 41     width = 12,
Z 42     height = 6,
5c689a 43     sort = true,
R 44     autosort = true,
78cacd 45     infotext = true,
S 46     color = false,
47     locked = true,
fd3f25 48 })
R 49