Skip to content

Commit

Permalink
Revert "Sentinel buffs (cmss13-devs#7197)"
Browse files Browse the repository at this point in the history
This reverts commit 3f2a476.
  • Loading branch information
irakligabunia authored Nov 5, 2024
1 parent 0bd86f2 commit 5ede378
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion code/__DEFINES/weapon_stats.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ It DOES NOT control where your bullets go, that's scatter and projectile varianc
////SCATTER////
*/

#define SCATTER_AMOUNT_NEURO 45
#define SCATTER_AMOUNT_NEURO 60
#define SCATTER_AMOUNT_TIER_1 15
#define SCATTER_AMOUNT_TIER_2 10
#define SCATTER_AMOUNT_TIER_3 8
Expand Down
2 changes: 1 addition & 1 deletion code/datums/ammo/xeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
return

if(ishuman(M))
M.apply_effect(4, SUPERSLOW)
M.apply_effect(2.5, SUPERSLOW)
M.visible_message(SPAN_DANGER("[M]'s movements are slowed."))

var/no_clothes_neuro = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
macro_path = /datum/action/xeno_action/verb/verb_slowing_spit
action_type = XENO_ACTION_CLICK
ability_primacy = XENO_PRIMARY_ACTION_1
xeno_cooldown = 2 SECONDS
xeno_cooldown = 1.5 SECONDS
plasma_cost = 20

// Scatterspit
Expand All @@ -17,7 +17,7 @@
macro_path = /datum/action/xeno_action/verb/verb_scattered_spit
action_type = XENO_ACTION_CLICK
ability_primacy = XENO_PRIMARY_ACTION_2
xeno_cooldown = 6 SECONDS
xeno_cooldown = 8 SECONDS
plasma_cost = 30

// Paralyzing slash
Expand Down
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
// State
var/next_slash_buffed = FALSE

#define NEURO_TOUCH_DELAY 3 SECONDS
#define NEURO_TOUCH_DELAY 4 SECONDS

/datum/behavior_delegate/sentinel_base/melee_attack_modify_damage(original_damage, mob/living/carbon/carbon_target)
if (!next_slash_buffed)
Expand Down Expand Up @@ -112,6 +112,6 @@
return INTENT_HARM

/datum/behavior_delegate/sentinel_base/proc/paralyzing_slash(mob/living/carbon/human/human_target)
human_target.KnockDown(2.5)
human_target.Stun(2.5)
human_target.KnockDown(2)
human_target.Stun(2)
to_chat(human_target, SPAN_XENOHIGHDANGER("You fall over, paralyzed by the toxin!"))

0 comments on commit 5ede378

Please sign in to comment.