mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Multiz Shield Gen balance adjustments (#22017)
Based on observed behavior in first live rounds following https://github.com/Aurorastation/Aurora.3/pull/21862! changes: - balance: "Reduces Horizon multi-z hull generator Watt -> Renwick conversion rate from 0.0002 to 0.00006, given increased capacitor throughput and reactor outputs." - balance: "Reduces maximum shield capacitor storage from 200 mJ to 20 mJ." - bugfix: "Corrects Shield Capacitor TGUI displaying capacitor storage as Watts instead of Joules."
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
/// The time passed since the last "fail", AKA losing charge faster than you can replenish it.
|
||||
var/time_since_fail = 100
|
||||
/// How many renwicks per watt.
|
||||
var/energy_conversion_rate = 0.0002
|
||||
var/energy_conversion_rate = 0.00006
|
||||
/// If the field is strong, then the energy field objects will turn dense.
|
||||
var/strong_field = FALSE
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
var/stored_charge = 0
|
||||
var/last_stored_charge = 0
|
||||
var/time_since_fail = 100
|
||||
var/max_charge = 2e8 //200 MJ
|
||||
var/max_charge = 2e7 //20 MJ
|
||||
var/max_charge_rate = 9000000 //9 MW
|
||||
var/locked = FALSE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user