From f3545d8d3b8af278575a3c29d27a2093a8652bfc Mon Sep 17 00:00:00 2001 From: LatD Date: Wed, 8 Jun 2016 10:23:10 +0300 Subject: [PATCH] Balances pyro anomaly (#18310) * End damage buff * Nerfs constant damage --- code/game/objects/effects/anomalies.dm | 2 +- code/modules/events/anomaly_pyro.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/effects/anomalies.dm b/code/game/objects/effects/anomalies.dm index 458633001ca..843bf4411b8 100644 --- a/code/game/objects/effects/anomalies.dm +++ b/code/game/objects/effects/anomalies.dm @@ -172,7 +172,7 @@ ..() var/turf/open/T = get_turf(src) if(istype(T)) - T.atmos_spawn_air("o2=15;plasma=15;TEMP=1000") + T.atmos_spawn_air("o2=5;plasma=5;TEMP=1000") ///////////////////// diff --git a/code/modules/events/anomaly_pyro.dm b/code/modules/events/anomaly_pyro.dm index 1f1b63c9fa3..751089d434d 100644 --- a/code/modules/events/anomaly_pyro.dm +++ b/code/modules/events/anomaly_pyro.dm @@ -30,10 +30,10 @@ if(newAnomaly.loc) var/turf/open/T = get_turf(newAnomaly) if(istype(T)) - T.atmos_spawn_air("o2=200;plasma=200;TEMP=1000") //Make it hot and burny for the new slime + T.atmos_spawn_air("o2=500;plasma=500;TEMP=1000") //Make it hot and burny for the new slime var/mob/living/simple_animal/slime/S = new/mob/living/simple_animal/slime(T) S.colour = pick("red", "orange") S.rabid = 1 - qdel(newAnomaly) \ No newline at end of file + qdel(newAnomaly)