diff options
author | Zefram <zefram@fysh.org> | 2014-07-07 15:51:02 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-09 09:17:44 +0200 |
commit | 5ec2d10dbcaad1ab1e1c6ff5982227b52d1a936f (patch) | |
tree | a5de7422b939afadd2dad53a405fd89dadd98c31 | |
parent | f7819b4cb8a27dea1b00b367854fbc88d5163eef (diff) |
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.
-rw-r--r-- | technic/machines/HV/cables.lua | 6 | ||||
-rw-r--r-- | technic/machines/LV/cables.lua | 2 | ||||
-rw-r--r-- | technic/textures/technic_lv_cable.png | bin | 381 -> 504 bytes | |||
-rw-r--r-- | 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 Binary files differindex 87076c9..0071bc9 100644 --- a/technic/textures/technic_lv_cable.png +++ b/technic/textures/technic_lv_cable.png diff --git a/technic/textures/technic_lv_cable_wield.png b/technic/textures/technic_lv_cable_wield.png Binary files differindex c4ada04..bc7704d 100644 --- a/technic/textures/technic_lv_cable_wield.png +++ b/technic/textures/technic_lv_cable_wield.png |