technic/technic_chests/copper_chest.lua

45 lines
1.0 KiB
Lua
Raw Normal View History

2013-01-27 14:03:46 +01:00
minetest.register_craft({
output = 'technic:copper_chest 1',
recipe = {
2013-07-06 10:35:48 +02:00
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
{'default:copper_ingot','technic:iron_chest','default:copper_ingot'},
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
2013-01-27 14:03:46 +01:00
}
})
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
recipe = {
2013-07-06 10:35:48 +02:00
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
{'default:copper_ingot','technic:iron_locked_chest','default:copper_ingot'},
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
2013-01-27 14:03:46 +01:00
}
})
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
recipe = {
{'technic:wrought_iron_ingot'},
2013-01-27 14:03:46 +01:00
{'technic:copper_chest'},
}
})
2013-12-18 01:15:20 +01:00
technic.chests:register("Copper", {
width = 10,
2014-05-01 09:32:01 +02:00
sort = true,
autosort = true,
2013-12-18 01:15:20 +01:00
infotext = false,
color = false,
locked = false,
2013-01-27 14:03:46 +01:00
})
2013-12-18 01:15:20 +01:00
technic.chests:register("Copper", {
width = 10,
2014-05-01 09:32:01 +02:00
sort = true,
autosort = true,
2013-12-18 01:15:20 +01:00
infotext = false,
color = false,
locked = true,
2013-01-27 14:03:46 +01:00
})