technic/technic_chests/silver_chest.lua

45 lines
1.0 KiB
Lua
Raw Normal View History

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