mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
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:
@@ -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)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user