mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user