technic/technic_chests/iron_chest.lua

46 lines
1.0 KiB
Lua
Raw Normal View History

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