2013-12-18 01:15:20 +01:00
|
|
|
|
2013-01-27 14:03:46 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:iron_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
|
|
|
{'default:steel_ingot','default:chest','default:steel_ingot'},
|
|
|
|
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:iron_locked_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
|
|
|
{'default:steel_ingot','default:chest_locked','default:steel_ingot'},
|
|
|
|
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:iron_locked_chest 1',
|
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'technic:iron_chest'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-12-18 01:15:20 +01:00
|
|
|
technic.chests:register("Iron", {
|
|
|
|
width = 9,
|
|
|
|
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("Iron", {
|
|
|
|
width = 9,
|
|
|
|
infotext = false,
|
|
|
|
color = false,
|
|
|
|
locked = true,
|
2013-01-27 14:03:46 +01:00
|
|
|
})
|
|
|
|
|