mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-30 23:30:38 +02:00
Use machine casing in most machine recipes
This commit is contained in:
@ -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' },
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
@ -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",
|
||||
})
|
||||
|
Reference in New Issue
Block a user