Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/datums/status_effects/rogue/debuff.dm
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@
/datum/status_effect/debuff/self_revived
id = "revived"
alert_type = /atom/movable/screen/alert/status_effect/debuff/self_revived
effectedstats = list(STATKEY_STR = -3, STATKEY_PER = -1, STATKEY_INT = -1, STATKEY_WIL = -3, STATKEY_CON = -3, STATKEY_SPD = -2, STATKEY_LCK = -2)
duration = 25 MINUTES //+10 minutes for self revive
effectedstats = list(STATKEY_STR = -5, STATKEY_PER = -3, STATKEY_INT = -6, STATKEY_WIL = -3, STATKEY_CON = -8, STATKEY_SPD = -4, STATKEY_LCK = -20)
duration = 35 MINUTES //+20 minutes for self revive

/atom/movable/screen/alert/status_effect/debuff/self_revived
name = "Self Revival Sickness"
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/structures/fluff.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@
. = ..()
var/mob/living/carbon/H = user
if(user.mind?.antag_datums)
if(living_player_count() <= 25) //Only works if less than 25 people in a round. Otherwise good fucking luck lol
if(living_player_count() <= 15) //Only works if less than 15 people in a round. Otherwise good fucking luck lol
for(var/datum/antagonist/D in user.mind?.antag_datums)
if(istype(D, /datum/antagonist/zombie))
to_chat(H, span_warning("I press my palm to the cross and focus..."))
Expand Down
Loading