From 5ec2d10dbcaad1ab1e1c6ff5982227b52d1a936f Mon Sep 17 00:00:00 2001 From: Zefram Date: Mon, 7 Jul 2014 15:51:02 +0100 Subject: Vary cable insulation type with tier LV cables are now paper-insulated, rather than uninsulated (which made no sense). MV cables are rubber-insulated as before. HV cables are now plastic-insulated (which they already visually appeared to be). MV and HV cables are still crafted by adding insulation onto lower-tier cable, rather than by insulating raw copper; this matches the way machines are upgraded between tiers rather than crafted afresh. --- technic/machines/HV/cables.lua | 6 +++--- technic/machines/LV/cables.lua | 2 ++ technic/textures/technic_lv_cable.png | Bin 381 -> 504 bytes technic/textures/technic_lv_cable_wield.png | Bin 286 -> 655 bytes 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/technic/machines/HV/cables.lua b/technic/machines/HV/cables.lua index 288965f..25297c8 100644 --- a/technic/machines/HV/cables.lua +++ b/technic/machines/HV/cables.lua @@ -2,9 +2,9 @@ minetest.register_craft({ output = 'technic:hv_cable0 3', recipe = { - {'technic:rubber', 'technic:rubber', 'technic:rubber'}, - {'technic:mv_cable0', 'technic:mv_cable0', 'technic:mv_cable0'}, - {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + {'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting'}, + {'technic:mv_cable0', 'technic:mv_cable0', 'technic:mv_cable0'}, + {'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting'}, } }) diff --git a/technic/machines/LV/cables.lua b/technic/machines/LV/cables.lua index ea8e8c7..e18eae1 100644 --- a/technic/machines/LV/cables.lua +++ b/technic/machines/LV/cables.lua @@ -4,7 +4,9 @@ minetest.register_alias("lv_cable", "technic:lv_cable0") minetest.register_craft({ output = 'technic:lv_cable0 6', recipe = { + {'default:paper', 'default:paper', 'default:paper'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'}, + {'default:paper', 'default:paper', 'default:paper'}, } }) diff --git a/technic/textures/technic_lv_cable.png b/technic/textures/technic_lv_cable.png index 87076c9..0071bc9 100644 Binary files a/technic/textures/technic_lv_cable.png and b/technic/textures/technic_lv_cable.png differ diff --git a/technic/textures/technic_lv_cable_wield.png b/technic/textures/technic_lv_cable_wield.png index c4ada04..bc7704d 100644 Binary files a/technic/textures/technic_lv_cable_wield.png and b/technic/textures/technic_lv_cable_wield.png differ -- cgit v1.2.3