From 2499a922c474e10ea0d722ba1de0b9646f7783f5 Mon Sep 17 00:00:00 2001 From: InsaneRed Date: Sat, 9 Dec 2023 20:21:32 +0300 Subject: [PATCH 1/3] base_changes --- .../abilities/praetorian/praetorian_abilities.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm index f876c2c50669..06689d60562b 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm @@ -36,7 +36,7 @@ var/buff_duration = 12 var/damage = 40 - var/shield_regen_threshold = 2 + var/shield_regen_threshold = 1 var/activated_once = FALSE var/time_until_timeout = 20 @@ -54,12 +54,14 @@ xeno_cooldown = 120 // Root config - var/root_duration_unbuffed = 5 - var/root_duration_buffed = 12.5 + var/root_duration_unbuffed = 1 SECONDS + var/root_duration_buffed = 2.5 SECONDS // Fling config var/fling_dist_unbuffed = 3 var/fling_dist_buffed = 6 + var/stun_power = 0.5 + var/weaken_power = 0.5 // Root or do a punch-like-effect. var/root_toggle = TRUE From 2b066277754b5c5e2dbdc77cde6a1a0493df16a8 Mon Sep 17 00:00:00 2001 From: InsaneRed Date: Sat, 9 Dec 2023 20:23:00 +0300 Subject: [PATCH 2/3] better feedback --- .../carbon/xenomorph/abilities/praetorian/praetorian_powers.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm index 1a0205862480..e7aa02bef824 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm @@ -52,7 +52,7 @@ if(!(mob_to_act in target_mobs)) target_mobs += mob_to_act - source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its tail through the area in front of it!"), SPAN_XENODANGER("You slash your tail through the area in front of you!")) + source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its claws through the area in front of it!"), SPAN_XENODANGER("You slash your claws through the area in front of you!")) source_xeno.animation_attack_on(targetted_atom, 15) source_xeno.emote("roar") @@ -67,6 +67,7 @@ current_mob.flick_attack_overlay(current_mob, "slash") current_mob.apply_armoured_damage(get_xeno_damage_slash(current_mob, damage), ARMOR_MELEE, BRUTE, null, 20) + playsound(current_mob, 'sound/weapons/alien_tail_attack.ogg', 30, TRUE) if (target_mobs.len >= shield_regen_threshold) if (source_xeno.mutation_type == PRAETORIAN_VANGUARD) From 3d82e63aa7cee5c57d47806e04580c6475b33aeb Mon Sep 17 00:00:00 2001 From: InsaneRed Date: Sat, 9 Dec 2023 23:21:53 +0300 Subject: [PATCH 3/3] reverting the stun --- .../xenomorph/abilities/praetorian/praetorian_abilities.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm index 06689d60562b..e0c489c723eb 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm @@ -60,8 +60,6 @@ // Fling config var/fling_dist_unbuffed = 3 var/fling_dist_buffed = 6 - var/stun_power = 0.5 - var/weaken_power = 0.5 // Root or do a punch-like-effect. var/root_toggle = TRUE