mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-04 09:10:38 +02:00
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.
This commit is contained in:
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user