summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--technic/machines/HV/forcefield.lua6
-rw-r--r--technic/machines/HV/nuclear_reactor.lua2
-rw-r--r--technic/machines/HV/quarry.lua2
-rw-r--r--technic/machines/LV/alloy_furnace.lua6
-rw-r--r--technic/machines/LV/battery_box.lua4
-rw-r--r--technic/machines/LV/cnc.lua2
-rw-r--r--technic/machines/LV/compressor.lua6
-rw-r--r--technic/machines/LV/electric_furnace.lua6
-rw-r--r--technic/machines/LV/extractor.lua6
-rw-r--r--technic/machines/LV/generator.lua6
-rw-r--r--technic/machines/LV/geothermal.lua4
-rw-r--r--technic/machines/LV/grinder.lua6
-rw-r--r--technic/machines/LV/music_player.lua6
-rw-r--r--technic/machines/LV/water_mill.lua6
-rw-r--r--technic/machines/MV/power_radiator.lua6
-rw-r--r--technic/machines/MV/tool_workshop.lua6
-rw-r--r--technic/machines/supply_converter.lua6
-rw-r--r--technic/machines/switching_station.lua6
18 files changed, 46 insertions, 46 deletions
diff --git a/technic/machines/HV/forcefield.lua b/technic/machines/HV/forcefield.lua
index 32a93fc..7e05292 100644
--- a/technic/machines/HV/forcefield.lua
+++ b/technic/machines/HV/forcefield.lua
@@ -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' },
}
})
diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua
index abe71bc..3936fd1 100644
--- a/technic/machines/HV/nuclear_reactor.lua
+++ b/technic/machines/HV/nuclear_reactor.lua
@@ -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'},
}
})
diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua
index f22e094..09421de 100644
--- a/technic/machines/HV/quarry.lua
+++ b/technic/machines/HV/quarry.lua
@@ -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",
})
diff --git a/technic/machines/LV/alloy_furnace.lua b/technic/machines/LV/alloy_furnace.lua
index f0e2bc5..e267f44 100644
--- a/technic/machines/LV/alloy_furnace.lua
+++ b/technic/machines/LV/alloy_furnace.lua
@@ -4,9 +4,9 @@
minetest.register_craft({
output = 'technic:lv_alloy_furnace',
recipe = {
- {'default:brick', 'default:brick', 'default:brick'},
- {'default:brick', '', 'default:brick'},
- {'technic:cast_iron_ingot', 'default:copper_ingot', 'technic:cast_iron_ingot'},
+ {'default:brick', 'default:brick', 'default:brick'},
+ {'default:brick', 'technic:machine_casing', 'default:brick'},
+ {'default:brick', 'default:copper_ingot', 'default:brick'},
}
})
diff --git a/technic/machines/LV/battery_box.lua b/technic/machines/LV/battery_box.lua
index e21a66a..63c285b 100644
--- a/technic/machines/LV/battery_box.lua
+++ b/technic/machines/LV/battery_box.lua
@@ -2,9 +2,9 @@
minetest.register_craft({
output = 'technic:lv_battery_box0',
recipe = {
- {'technic:battery', 'group:wood', 'technic:battery'},
{'technic:battery', 'default:copper_ingot', 'technic:battery'},
- {'technic:cast_iron_ingot', 'technic:cast_iron_ingot', 'technic:cast_iron_ingot'},
+ {'technic:battery', 'technic:machine_casing', 'technic:battery'},
+ {'group:wood', 'group:wood', 'group:wood'},
}
})
diff --git a/technic/machines/LV/cnc.lua b/technic/machines/LV/cnc.lua
index 7395645..1af0884 100644
--- a/technic/machines/LV/cnc.lua
+++ b/technic/machines/LV/cnc.lua
@@ -229,7 +229,7 @@ minetest.register_craft({
output = 'technic:cnc',
recipe = {
{'default:glass', 'technic:diamond_drill_head', 'default:glass'},
- {'technic:control_logic_unit', 'technic:motor', 'technic:carbon_steel_ingot'},
+ {'technic:control_logic_unit', 'technic:machine_casing', 'technic:motor'},
{'technic:carbon_steel_ingot', 'default:copper_ingot', 'technic:carbon_steel_ingot'},
},
})
diff --git a/technic/machines/LV/compressor.lua b/technic/machines/LV/compressor.lua
index 11bf16d..2b9752f 100644
--- a/technic/machines/LV/compressor.lua
+++ b/technic/machines/LV/compressor.lua
@@ -4,9 +4,9 @@ minetest.register_alias("compressor", "technic:lv_compressor")
minetest.register_craft({
output = 'technic:lv_compressor',
recipe = {
- {'default:stone', 'default:stone', 'default:stone'},
- {'mesecons:piston', 'technic:motor', 'mesecons:piston'},
- {'default:stone', 'technic:lv_cable0', 'default:stone'},
+ {'default:stone', 'technic:motor', 'default:stone'},
+ {'mesecons:piston', 'technic:machine_casing', 'mesecons:piston'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/LV/electric_furnace.lua b/technic/machines/LV/electric_furnace.lua
index 8bb1562..58570d9 100644
--- a/technic/machines/LV/electric_furnace.lua
+++ b/technic/machines/LV/electric_furnace.lua
@@ -5,9 +5,9 @@
minetest.register_craft({
output = 'technic:electric_furnace',
recipe = {
- {'default:cobble', 'default:cobble', 'default:cobble'},
- {'default:cobble', '', 'default:cobble'},
- {'technic:cast_iron_ingot', 'moreores:copper_ingot', 'technic:cast_iron_ingot'},
+ {'default:cobble', 'default:cobble', 'default:cobble'},
+ {'default:cobble', 'technic:machine_casing', 'default:cobble'},
+ {'default:cobble', 'moreores:copper_ingot', 'default:cobble'},
}
})
diff --git a/technic/machines/LV/extractor.lua b/technic/machines/LV/extractor.lua
index df1ca2e..363d2e3 100644
--- a/technic/machines/LV/extractor.lua
+++ b/technic/machines/LV/extractor.lua
@@ -4,9 +4,9 @@ minetest.register_alias("extractor", "technic:lv_extractor")
minetest.register_craft({
output = 'technic:lv_extractor',
recipe = {
- {'technic:treetap', 'technic:motor', 'technic:treetap'},
- {'technic:treetap', 'technic:lv_cable0', 'technic:treetap'},
- {'', '', ''},
+ {'technic:treetap', 'technic:motor', 'technic:treetap'},
+ {'technic:treetap', 'technic:machine_casing', 'technic:treetap'},
+ {'', 'technic:lv_cable0', ''},
}
})
diff --git a/technic/machines/LV/generator.lua b/technic/machines/LV/generator.lua
index eae7951..356beb3 100644
--- a/technic/machines/LV/generator.lua
+++ b/technic/machines/LV/generator.lua
@@ -8,9 +8,9 @@ minetest.register_alias("lv_generator", "technic:lv_generator")
minetest.register_craft({
output = 'technic:lv_generator',
recipe = {
- {'default:stone', 'default:stone', 'default:stone'},
- {'default:stone', '', 'default:stone'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'default:stone', 'default:stone'},
+ {'default:stone', 'technic:machine_casing', 'default:stone'},
+ {'default:stone', 'default:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua
index 8c64708..8b9b42c 100644
--- a/technic/machines/LV/geothermal.lua
+++ b/technic/machines/LV/geothermal.lua
@@ -10,8 +10,8 @@ local S = technic.getter
minetest.register_craft({
output = 'technic:geothermal',
recipe = {
- {'default:stone', 'default:stone', 'default:stone'},
- {'default:copper_ingot', 'default:diamond', 'default:copper_ingot'},
+ {'default:stone', 'default:diamond', 'default:stone'},
+ {'default:copper_ingot', 'technic:machine_casing', 'default:copper_ingot'},
{'default:stone', 'default:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/LV/grinder.lua b/technic/machines/LV/grinder.lua
index 7b54b35..6a98922 100644
--- a/technic/machines/LV/grinder.lua
+++ b/technic/machines/LV/grinder.lua
@@ -3,9 +3,9 @@ minetest.register_alias("grinder", "technic:grinder")
minetest.register_craft({
output = 'technic:grinder',
recipe = {
- {'default:desert_stone', 'default:desert_stone', 'default:desert_stone'},
- {'default:desert_stone', 'default:diamond', 'default:desert_stone'},
- {'default:stone', 'moreores:copper_ingot', 'default:stone'},
+ {'default:desert_stone', 'default:diamond', 'default:desert_stone'},
+ {'default:desert_stone', 'technic:machine_casing', 'default:desert_stone'},
+ {'default:stone', 'moreores:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/LV/music_player.lua b/technic/machines/LV/music_player.lua
index 39dd329..c5bfee9 100644
--- a/technic/machines/LV/music_player.lua
+++ b/technic/machines/LV/music_player.lua
@@ -7,9 +7,9 @@ minetest.register_alias("music_player", "technic:music_player")
minetest.register_craft({
output = 'technic:music_player',
recipe = {
- {'group:wood', 'group:wood', 'group:wood'},
- {'default:diamond', 'default:diamond', 'default:diamond'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'group:wood', 'default:diamond', 'group:wood'},
+ {'default:diamond', 'technic:machine_casing', 'default:diamond'},
+ {'default:stone', 'default:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/LV/water_mill.lua b/technic/machines/LV/water_mill.lua
index 0ddccc7..eb5a430 100644
--- a/technic/machines/LV/water_mill.lua
+++ b/technic/machines/LV/water_mill.lua
@@ -9,9 +9,9 @@ minetest.register_alias("water_mill", "technic:water_mill")
minetest.register_craft({
output = 'technic:water_mill',
recipe = {
- {'default:stone', 'default:stone', 'default:stone'},
- {'group:wood', 'default:diamond', 'group:wood'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'default:diamond', 'default:stone'},
+ {'group:wood', 'technic:machine_casing', 'group:wood'},
+ {'default:stone', 'default:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/MV/power_radiator.lua b/technic/machines/MV/power_radiator.lua
index 6523471..4f9a837 100644
--- a/technic/machines/MV/power_radiator.lua
+++ b/technic/machines/MV/power_radiator.lua
@@ -138,9 +138,9 @@ minetest.register_node("technic:power_radiator", {
minetest.register_craft({
output = 'technic:power_radiator 1',
recipe = {
- {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
- {'technic:copper_coil', 'technic:mv_transformer', 'technic:copper_coil'},
- {'technic:rubber', 'technic:mv_cable0', 'technic:rubber'},
+ {'technic:stainless_steel_ingot', 'technic:mv_transformer', 'technic:stainless_steel_ingot'},
+ {'technic:copper_coil', 'technic:machine_casing', 'technic:copper_coil'},
+ {'technic:rubber', 'technic:mv_cable0', 'technic:rubber'},
}
})
diff --git a/technic/machines/MV/tool_workshop.lua b/technic/machines/MV/tool_workshop.lua
index 15aa09d..36ce0d2 100644
--- a/technic/machines/MV/tool_workshop.lua
+++ b/technic/machines/MV/tool_workshop.lua
@@ -8,9 +8,9 @@ local S = technic.getter
minetest.register_craft({
output = 'technic:tool_workshop',
recipe = {
- {'group:wood', 'group:wood', 'group:wood'},
- {'group:wood', 'default:diamond', 'group:wood'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'group:wood', 'default:diamond', 'group:wood'},
+ {'group:wood', 'technic:machine_casing', 'group:wood'},
+ {'default:stone', 'default:copper_ingot', 'default:stone'},
}
})
diff --git a/technic/machines/supply_converter.lua b/technic/machines/supply_converter.lua
index 4340f22..3247e34 100644
--- a/technic/machines/supply_converter.lua
+++ b/technic/machines/supply_converter.lua
@@ -32,9 +32,9 @@ minetest.register_node("technic:supply_converter", {
minetest.register_craft({
output = 'technic:supply_converter 1',
recipe = {
- {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
- {'technic:mv_transformer', 'technic:mv_cable0', 'technic:lv_transformer'},
- {'technic:mv_cable0', 'technic:rubber', 'technic:lv_cable0'},
+ {'technic:stainless_steel_ingot', 'technic:machine_casing', 'technic:stainless_steel_ingot'},
+ {'technic:mv_transformer', 'technic:mv_cable0', 'technic:lv_transformer'},
+ {'technic:mv_cable0', 'technic:rubber', 'technic:lv_cable0'},
}
})
diff --git a/technic/machines/switching_station.lua b/technic/machines/switching_station.lua
index 88d1890..f71664b 100644
--- a/technic/machines/switching_station.lua
+++ b/technic/machines/switching_station.lua
@@ -35,9 +35,9 @@ local S = technic.getter
minetest.register_craft({
output = "technic:switching_station",
recipe = {
- {"technic:cast_iron_ingot", "technic:lv_transformer", "technic:cast_iron_ingot"},
- {"default:copper_ingot", "technic:lv_cable0", "default:copper_ingot"},
- {"technic:cast_iron_ingot", "technic:lv_cable0", "technic:cast_iron_ingot"}
+ {"", "technic:lv_transformer", ""},
+ {"default:copper_ingot", "technic:machine_casing", "default:copper_ingot"},
+ {"technic:lv_cable0", "technic:lv_cable0", "technic:lv_cable0"}
}
})