Change all instances of tube_1 to tube for recipes.

This commit is contained in:
PseudoImplementation 2014-07-15 01:15:28 -05:00
parent 69487e530b
commit 292f3fea89
11 changed files with 14 additions and 14 deletions

View File

@ -1,17 +1,17 @@
-- tubes crafting recipes
minetest.register_craft({
output = 'pipeworks:accelerator_tube_1',
output = 'pipeworks:accelerator_tube',
recipe = {
{'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
{'technic:copper_coil', 'pipeworks:tube', 'technic:copper_coil'},
}
})
minetest.register_craft({
output = 'pipeworks:teleport_tube_1',
output = 'pipeworks:teleport_tube',
recipe = {
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
{'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:control_logic_unit', 'pipeworks:tube'},
{'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:hv_generator',
recipe = {
{'technic:carbon_plate', 'technic:mv_generator', 'technic:composite_plate'},
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:hv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:mv_alloy_furnace',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:mv_compressor',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_compressor', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -9,7 +9,7 @@ minetest.register_craft({
output = 'technic:mv_electric_furnace',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:mv_extractor',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_extractor', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:mv_generator',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -4,7 +4,7 @@ minetest.register_craft({
output = 'technic:mv_grinder',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_grinder', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
{'pipeworks:tube', 'technic:mv_transformer', 'pipeworks:tube'},
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})

View File

@ -50,7 +50,7 @@ minetest.register_craft({
recipe = {
{'', 'technic:control_logic_unit',''},
{'', 'default:chest',''},
{'', 'pipeworks:tube_1',''},
{'', 'pipeworks:tube',''},
}
})

View File

@ -119,7 +119,7 @@ end)
minetest.register_craft({
output = "technic:prospector",
recipe = {
{"moreores:pick_silver", "moreores:mithril_block", "pipeworks:teleport_tube_1"},
{"moreores:pick_silver", "moreores:mithril_block", "pipeworks:teleport_tube"},
{"technic:brass_ingot", "technic:control_logic_unit", "technic:brass_ingot"},
{"", "technic:blue_energy_crystal", ""},
}

View File

@ -39,7 +39,7 @@ minetest.register_tool("technic:treetap", {
minetest.register_craft({
output = "technic:treetap",
recipe = {
{"pipeworks:tube_1", "group:wood", "default:stick"},
{"pipeworks:tube", "group:wood", "default:stick"},
{"", "default:stick", "default:stick"}
},
})