From 6264062845effa134cd7ccddfac51bdba90b130c Mon Sep 17 00:00:00 2001 From: InsaneRed <47158596+InsaneRed@users.noreply.github.com> Date: Wed, 21 Apr 2021 21:51:49 +0300 Subject: [PATCH] VoG nerf/fix (#58491) * nerf/fix fixes cooldowns and nerfs stun timers * Update code/datums/voice_of_god_command.dm Co-authored-by: Fikou * Update code/datums/voice_of_god_command.dm Co-authored-by: Fikou * Update code/datums/voice_of_god_command.dm Co-authored-by: Fikou Co-authored-by: Fikou --- code/datums/voice_of_god_command.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/datums/voice_of_god_command.dm b/code/datums/voice_of_god_command.dm index 318c63a051a..fe701822667 100644 --- a/code/datums/voice_of_god_command.dm +++ b/code/datums/voice_of_god_command.dm @@ -1,6 +1,6 @@ -#define COOLDOWN_STUN 12 SECONDS -#define COOLDOWN_DAMAGE 6 SECONDS -#define COOLDOWN_MEME 3 SECONDS +#define COOLDOWN_STUN 120 SECONDS +#define COOLDOWN_DAMAGE 60 SECONDS +#define COOLDOWN_MEME 30 SECONDS #define COOLDOWN_NONE 1 SECONDS /// Used to stop listeners with silly or clown-esque (first) names such as "Honk" or "Flip" from screwing up certain commands. @@ -141,7 +141,7 @@ GLOBAL_LIST_INIT(voice_of_god_commands, init_voice_of_god_commands()) /datum/voice_of_god_command/stun/execute(list/listeners, mob/living/user, power_multiplier = 1, message) // Ensure 'as anything' is not used for loops that don't target all living mob types. for(var/mob/living/target as anything in listeners) - target.Stun(60 * power_multiplier) + target.Stun(4 SECONDS * power_multiplier) /// This command knocks the listeners down. /datum/voice_of_god_command/paralyze @@ -150,7 +150,7 @@ GLOBAL_LIST_INIT(voice_of_god_commands, init_voice_of_god_commands()) /datum/voice_of_god_command/paralyze/execute(list/listeners, mob/living/user, power_multiplier = 1, message) for(var/mob/living/target as anything in listeners) - target.Paralyze(60 * power_multiplier) + target.Paralyze(4 SECONDS * power_multiplier) /// This command puts carbon listeners to sleep. /datum/voice_of_god_command/sleeping @@ -159,7 +159,7 @@ GLOBAL_LIST_INIT(voice_of_god_commands, init_voice_of_god_commands()) /datum/voice_of_god_command/sleeping/execute(list/listeners, mob/living/user, power_multiplier = 1, message) for(var/mob/living/carbon/target as anything in listeners) - target.Sleeping(40 * power_multiplier) + target.Sleeping(2 SECONDS * power_multiplier) /// This command makes carbon listeners throw up like Mr. Creosote. /datum/voice_of_god_command/vomit