2013-01-27 14:03:46 +01:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:gold_chest',
|
2013-01-27 14:03:46 +01:00
|
|
|
recipe = {
|
2013-07-06 10:35:48 +02:00
|
|
|
{'default:gold_ingot','default:gold_ingot','default:gold_ingot'},
|
|
|
|
{'default:gold_ingot','technic:silver_chest','default:gold_ingot'},
|
|
|
|
{'default:gold_ingot','default:gold_ingot','default:gold_ingot'},
|
2013-01-27 14:03:46 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:gold_locked_chest',
|
2013-01-27 14:03:46 +01:00
|
|
|
recipe = {
|
2013-07-06 10:35:48 +02:00
|
|
|
{'default:gold_ingot','default:gold_ingot','default:gold_ingot'},
|
|
|
|
{'default:gold_ingot','technic:silver_locked_chest','default:gold_ingot'},
|
|
|
|
{'default:gold_ingot','default:gold_ingot','default:gold_ingot'},
|
2013-01-27 14:03:46 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-07-06 10:35:48 +02:00
|
|
|
output = 'technic:gold_locked_chest',
|
2013-01-27 14:03:46 +01:00
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'technic:gold_chest'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-12-18 01:15:20 +01:00
|
|
|
technic.chests:register("Gold", {
|
|
|
|
width = 12,
|
|
|
|
infotext = true,
|
|
|
|
color = true,
|
|
|
|
locked = false,
|
2013-01-27 14:03:46 +01:00
|
|
|
})
|
|
|
|
|
2013-12-18 01:15:20 +01:00
|
|
|
technic.chests:register("Gold", {
|
|
|
|
width = 12,
|
|
|
|
infotext = true,
|
|
|
|
color = true,
|
|
|
|
locked = true,
|
2013-01-27 14:03:46 +01:00
|
|
|
})
|
|
|
|
|