mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
Fix all recipes that use pipeworks pneumatic tubes to follow latest changes
in pipeworks node namining conventions.
This commit is contained in:
parent
93b0d25cbc
commit
749df3b581
@ -1,7 +1,7 @@
|
|||||||
-- tubes crafting recipes
|
-- tubes crafting recipes
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:tube_000000 9',
|
output = 'pipeworks:tube_1 9',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
@ -11,28 +11,28 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:mese_tube_000000',
|
output = 'pipeworks:mese_tube_000000',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:mese_crystal_fragment', 'pipeworks:tube_000000', 'default:mese_crystal_fragment'},
|
{'default:mese_crystal_fragment', 'pipeworks:tube_1', 'default:mese_crystal_fragment'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:accelerator_tube_000000',
|
output = 'pipeworks:accelerator_tube_000000',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:copper_coil', 'pipeworks:tube_000000', 'technic:copper_coil'},
|
{'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:detector_tube_off_000000',
|
output = 'pipeworks:detector_tube_off_000000',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'mesecons:mesecon', 'pipeworks:tube_000000', 'mesecons:mesecon'},
|
{'mesecons:mesecon', 'pipeworks:tube_1', 'mesecons:mesecon'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:sand_tube_000000',
|
output = 'pipeworks:sand_tube_000000',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:sand', 'pipeworks:tube_000000', 'default:sand'},
|
{'default:sand', 'pipeworks:tube_1', 'default:sand'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ minetest.register_craft({
|
|||||||
output = 'pipeworks:teleport_tube_000000',
|
output = 'pipeworks:teleport_tube_000000',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
|
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
|
||||||
{'pipeworks:tube_000000', 'technic:control_logic_unit', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
|
||||||
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
|
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -4,7 +4,7 @@ minetest.register_craft({
|
|||||||
output = 'technic:hv_generator',
|
output = 'technic:hv_generator',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'technic:mv_generator', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:mv_generator', 'technic:stainless_steel_ingot'},
|
||||||
{'pipeworks:tube_000000', 'technic:hv_transformer', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -4,7 +4,7 @@ minetest.register_craft({
|
|||||||
output = 'technic:mv_alloy_furnace',
|
output = 'technic:mv_alloy_furnace',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'},
|
||||||
{'pipeworks:tube_000000', 'technic:mv_transformer', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
||||||
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -9,7 +9,7 @@ minetest.register_craft({
|
|||||||
output = 'technic:mv_electric_furnace',
|
output = 'technic:mv_electric_furnace',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'},
|
||||||
{'pipeworks:tube_000000', 'technic:mv_transformer', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
||||||
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -4,7 +4,7 @@ minetest.register_craft({
|
|||||||
output = 'technic:mv_generator',
|
output = 'technic:mv_generator',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'},
|
||||||
{'pipeworks:tube_000000', 'technic:mv_transformer', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
||||||
{'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -4,7 +4,7 @@ minetest.register_craft({
|
|||||||
output = 'technic:mv_grinder',
|
output = 'technic:mv_grinder',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:stainless_steel_ingot', 'technic:lv_grinder', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:lv_grinder', 'technic:stainless_steel_ingot'},
|
||||||
{'pipeworks:tube_000000', 'technic:mv_transformer', 'pipeworks:tube_000000'},
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
||||||
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -50,7 +50,7 @@ minetest.register_craft({
|
|||||||
recipe = {
|
recipe = {
|
||||||
{'', 'technic:control_logic_unit',''},
|
{'', 'technic:control_logic_unit',''},
|
||||||
{'', 'default:chest',''},
|
{'', 'default:chest',''},
|
||||||
{'', 'pipeworks:tube_000000',''},
|
{'', 'pipeworks:tube_1',''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user