2013-01-27 17:03:46 +04:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:mithril_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
|
|
|
|
{'moreores:mithril_ingot','technic:gold_chest','moreores:mithril_ingot'},
|
|
|
|
{'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:mithril_locked_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
|
|
|
|
{'moreores:mithril_ingot','technic:gold_locked_chest','moreores:mithril_ingot'},
|
|
|
|
{'moreores:mithril_ingot','moreores:mithril_ingot','moreores:mithril_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:mithril_locked_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'technic:mithril_chest'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-12-18 04:15:20 +04:00
|
|
|
technic.chests:register("Mithril", {
|
|
|
|
width = 13,
|
2014-05-01 11:32:01 +04:00
|
|
|
sort = true,
|
|
|
|
autosort = true,
|
2013-12-18 04:15:20 +04:00
|
|
|
infotext = false,
|
|
|
|
color = false,
|
|
|
|
locked = false,
|
2013-01-27 17:03:46 +04:00
|
|
|
})
|
|
|
|
|
2013-12-18 04:15:20 +04:00
|
|
|
technic.chests:register("Mithril", {
|
|
|
|
width = 13,
|
2014-05-01 11:32:01 +04:00
|
|
|
sort = true,
|
|
|
|
autosort = true,
|
2013-12-18 04:15:20 +04:00
|
|
|
infotext = false,
|
|
|
|
color = false,
|
|
|
|
locked = true,
|
2013-01-27 17:03:46 +04:00
|
|
|
})
|
2013-12-18 04:15:20 +04:00
|
|
|
|