mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-30 23:30: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:
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user