IPC power core rejigging (#23018)

By modifying power cell capacities,
https://github.com/Aurorastation/Aurora.3/pull/21285 inadvertently
tripled the amount of power available to IPCs in their roundstart power
core, going from 20000 --> 60000. This drags that down to 30000 with a
high-capacity power cell, still half again higher than the original
value, and increases the efficiency of recharge stations a little so
sitting in them is less tedious.
This commit is contained in:
hazelrat
2026-08-13 16:24:55 +00:00
committed by GitHub
parent bd0ac4101b
commit f604244197
3 changed files with 61 additions and 3 deletions
@@ -19,7 +19,7 @@
var/icon_update_tick = 0 // Used to rebuild the overlay only once every 10 ticks
///Multiplier applied to all operations of giving power to cells, represents entropy, efficiency increases with upgrades
var/charging_efficiency = 1.3
var/charging_efficiency = 2
///Watts, Power rating drawn from internal cell to recharge occupant's cell 60 kW unupgraded
var/charging_power
@@ -229,7 +229,7 @@
man_rating += P.rating
cell = locate(/obj/item/cell) in component_parts
charging_efficiency = 1.3 + 0.030 * cap_rating
charging_efficiency = 2 + 0.030 * cap_rating
charging_power = 30000 + 12000 * cap_rating
restore_power_active = 10000 + 10000 * cap_rating
restore_power_passive = 5000 + 1000 * cap_rating