2013-04-05 04:30:33 +02:00
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:silver_chest',
|
2013-04-05 04:30:33 +02:00
|
|
|
recipe = {
|
|
|
|
{'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
|
|
|
|
{'moreores:silver_ingot','technic:copper_chest','moreores:silver_ingot'},
|
|
|
|
{'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:silver_locked_chest',
|
2013-04-05 04:30:33 +02:00
|
|
|
recipe = {
|
|
|
|
{'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
|
|
|
|
{'moreores:silver_ingot','technic:copper_locked_chest','moreores:silver_ingot'},
|
|
|
|
{'moreores:silver_ingot','moreores:silver_ingot','moreores:silver_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:silver_locked_chest',
|
2013-04-05 04:30:33 +02:00
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'technic:silver_chest'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-12-18 01:15:20 +01:00
|
|
|
technic.chests:register("Silver", {
|
|
|
|
width = 11,
|
|
|
|
infotext = true,
|
|
|
|
color = false,
|
|
|
|
locked = false,
|
2013-04-05 04:30:33 +02:00
|
|
|
})
|
|
|
|
|
2013-12-18 01:15:20 +01:00
|
|
|
technic.chests:register("Silver", {
|
|
|
|
width = 11,
|
|
|
|
infotext = true,
|
|
|
|
color = false,
|
|
|
|
locked = true,
|
2013-04-05 04:30:33 +02:00
|
|
|
})
|
|
|
|
|