technic/technic_chests/silver_chest.lua

45 lines
1.0 KiB
Lua
Raw Normal View History

minetest.register_craft({
2013-07-06 12:35:48 +04:00
output = 'technic:silver_chest',
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 12:35:48 +04:00
output = 'technic:silver_locked_chest',
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 12:35:48 +04:00
output = 'technic:silver_locked_chest',
recipe = {
{'default:steel_ingot'},
{'technic:silver_chest'},
}
})
2013-12-18 04:15:20 +04:00
technic.chests:register("Silver", {
width = 11,
2014-05-01 11:32:01 +04:00
sort = true,
autosort = true,
2013-12-18 04:15:20 +04:00
infotext = true,
color = false,
locked = false,
})
2013-12-18 04:15:20 +04:00
technic.chests:register("Silver", {
width = 11,
2014-05-01 11:32:01 +04:00
sort = true,
autosort = true,
2013-12-18 04:15:20 +04:00
infotext = true,
color = false,
locked = true,
})