Tesla coil upgrade nerf (#66623)

Slight nerf to the tesla coils stock parts upgrade going from a max 85% efficiency to a max 50% efficiency when converting power from the zaps with t4 parts. Roundstart setups remains untouched, but just upgrading the coils will yield 35% less power.
This commit is contained in:
Ghilker
2022-05-07 13:25:09 -07:00
committed by GitHub
parent 08602c4386
commit f62e1afcd9
+1 -1
View File
@@ -45,7 +45,7 @@
for(var/obj/item/stock_parts/capacitor/C in component_parts)
power_multiplier += C.rating
zap_cooldown -= (C.rating * 20)
input_power_multiplier = (0.85 * (power_multiplier / 4)) //Max out at 85% efficency.
input_power_multiplier = max(1 * (power_multiplier / 8), 0.25) //Max out at 50% efficency.
/obj/machinery/power/energy_accumulator/tesla_coil/examine(mob/user)
. = ..()