From a94f6cdbc091fa5913f25dd23700ccf708dc1c4f Mon Sep 17 00:00:00 2001 From: Archie Date: Tue, 1 Jun 2021 21:26:08 -0300 Subject: [PATCH] Intensity change --- yogstation/code/modules/power/energyharvester.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yogstation/code/modules/power/energyharvester.dm b/yogstation/code/modules/power/energyharvester.dm index 4b250791..4bc2c9c6 100644 --- a/yogstation/code/modules/power/energyharvester.dm +++ b/yogstation/code/modules/power/energyharvester.dm @@ -117,12 +117,13 @@ GLOBAL_LIST_EMPTY(energy_harvesters) playsound(src, 'sound/machines/engine_alert2.ogg', 100) alerted = TRUE if(prob(25)) - shake_animation(0.5) + shake_animation(1) playsound(loc, 'sound/machines/clockcult/steam_whoosh.ogg', 75, TRUE) var/turf/T = get_turf(src) T.atmos_spawn_air("co2=25;TEMP=300]") if(prob(7)) tesla_zap(src, 5, 1000, TESLA_MOB_DAMAGE | TESLA_OBJ_DAMAGE) + playsound(src.loc, 'sound/weapons/emitter2.ogg', 100, 1, extrarange = 10) take_damage(1) if(99 to INFINITY) //Should've read the instructions buddy. tesla_zap(src, 20, 25000, TESLA_MOB_DAMAGE | TESLA_OBJ_DAMAGE)