Use machine casing in most machine recipes

This commit is contained in:
Zefram
2014-07-06 17:13:11 +01:00
committed by Novatux
parent 430b310eb4
commit e8a5a6652d
18 changed files with 46 additions and 46 deletions

View File

@ -14,9 +14,9 @@ local S = technic.getter
minetest.register_craft({
output = 'technic:forcefield_emitter_off',
recipe = {
{'default:mese', 'technic:deployer_off', 'default:mese' },
{'technic:deployer_off', 'technic:motor', 'technic:deployer_off'},
{'default:mese', 'technic:deployer_off', 'default:mese' },
{'default:mese', 'technic:motor', 'default:mese' },
{'technic:deployer_off', 'technic:machine_casing', 'technic:deployer_off'},
{'default:mese', 'technic:deployer_off', 'default:mese' },
}
})

View File

@ -17,7 +17,7 @@ minetest.register_craft({
output = 'technic:hv_nuclear_reactor_core',
recipe = {
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', '', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:machine_casing', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ local S = technic.getter
minetest.register_craft({
recipe = {
{"technic:carbon_steel_block", "pipeworks:filter", "technic:carbon_steel_block"},
{"technic:carbon_steel_block", "technic:motor", "technic:carbon_steel_block"},
{"technic:motor", "technic:machine_casing", "technic:carbon_steel_block"},
{"technic:carbon_steel_block", "technic:diamond_drill_head", "technic:carbon_steel_block"}},
output = "technic:quarry",
})