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:
Batrachophreno
2026-03-16 21:10:31 +00:00
committed by GitHub
parent 4dc2d37ea9
commit e7ce9356c8
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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