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 = { |
d60e3f
|
22 |
{'default:steel_ingot'}, |
82cba9
|
23 |
{'technic:mithril_chest'}, |
R |
24 |
} |
|
25 |
}) |
|
26 |
|
78cacd
|
27 |
technic.chests:register("Mithril", { |
96ad67
|
28 |
width = 15, |
4ea213
|
29 |
height = 6, |
5c689a
|
30 |
sort = true, |
R |
31 |
autosort = true, |
78cacd
|
32 |
infotext = false, |
S |
33 |
color = false, |
|
34 |
locked = false, |
82cba9
|
35 |
}) |
R |
36 |
|
78cacd
|
37 |
technic.chests:register("Mithril", { |
96ad67
|
38 |
width = 15, |
4ea213
|
39 |
height = 6, |
5c689a
|
40 |
sort = true, |
R |
41 |
autosort = true, |
78cacd
|
42 |
infotext = false, |
S |
43 |
color = false, |
|
44 |
locked = true, |
82cba9
|
45 |
}) |
78cacd
|
46 |
|