5ec2d10dbc
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.
15 lines
388 B
Lua
15 lines
388 B
Lua
|
|
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'},
|
|
}
|
|
})
|
|
|
|
technic.register_cable("LV", 2/16)
|
|
|