Skip to content

Commit

Permalink
Merge pull request #3 from Merrgear/cinematic-crit
Browse files Browse the repository at this point in the history
Cinematic crit
  • Loading branch information
800maximum123 authored Aug 29, 2024
2 parents 65f4089 + d0915f7 commit 946a9ea
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
if(isfacehugger(checked_xeno))
return FALSE

var/mob/parent_mob = parent
var/mob/living/parent_mob = parent

var/captee_stat = parent_mob.stat
var/mob/pulledby = parent_mob.pulledby
Expand All @@ -45,7 +45,7 @@
if(distance > 10)
return FALSE

if(captee_stat == CONSCIOUS)
if(captee_stat == CONSCIOUS && !(locate(/datum/effects/crit) in parent_mob.effects_list))
return FALSE

if(isxeno(pulledby) && pulledby != checked_xeno)
Expand Down
3 changes: 2 additions & 1 deletion code/datums/effects/mob_crit/human_crit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
qdel(src)
return FALSE

affected_mob.apply_effect(3, PARALYZE)
affected_mob.KnockDown(3)
affected_mob.Stun(3)
if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline"))
affected_mob.apply_damage(1, OXY)

Expand Down
6 changes: 4 additions & 2 deletions code/datums/effects/pain/human_pain.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@

var/mob/living/carbon/affected_mob = affected_atom
if(do_once)
affected_mob.apply_effect(3, PARALYZE)
affected_mob.KnockDown(3)
affected_mob.Stun(3)
do_once = FALSE

affected_mob.EyeBlur(2)
Expand All @@ -83,7 +84,8 @@
affected_mob.EyeBlur(2)
if(affected_mob.pain && affected_mob.pain.feels_pain)
affected_mob.TalkStutter(2)
affected_mob.apply_effect(2, PARALYZE)
affected_mob.KnockDown(2)
affected_mob.Stun(2)
if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline"))
affected_mob.apply_damage(0.5, OXY)

Expand Down
3 changes: 3 additions & 0 deletions code/modules/cm_marines/overwatch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,9 @@
if(DEAD)
mob_state = "Dead"

if(mob_state == "Conscious" && (locate(/datum/effects/crit) in marine_human.effects_list))
mob_state = "Incapacitated"

if(!istype(marine_human.head, /obj/item/clothing/head/helmet/marine))
has_helmet = FALSE

Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/human_attackhand.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
return 1

// If unconcious with oxygen damage, do CPR. If dead, we do CPR
if(!(stat == UNCONSCIOUS && getOxyLoss() > 0) && !(stat == DEAD))
if(!((stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list)) && getOxyLoss() > 0) && !(stat == DEAD))
help_shake_act(attacking_mob)
return 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

if(stat != DEAD) //the dead get zero fullscreens

if(stat == UNCONSCIOUS)
if(stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list))
var/severity = 0
switch(health)
if(-20 to -10) severity = 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@

//UNCONSCIOUS. NO-ONE IS HOME
if(regular_update && ((getOxyLoss() > 50)))
apply_effect(3, PARALYZE)
KnockDown(3)
Stun(3)

if((src.species.flags & HAS_HARDCRIT) && HEALTH_THRESHOLD_CRIT > health)
var/already_in_crit = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ At bare minimum, make sure the relevant checks from parent types gets copied in
// MOBS //
/////////////////////////////
/mob/living/ai_check_stat(mob/living/carbon/xenomorph/X)
return stat == CONSCIOUS
return stat == CONSCIOUS && !(locate(/datum/effects/crit) in effects_list)


/////////////////////////////
Expand Down
3 changes: 2 additions & 1 deletion tgui/packages/tgui/interfaces/OverwatchConsole.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -370,12 +370,13 @@ const SquadMonitor = (props) => {

let determine_status_color = (status) => {
let conscious = status.includes('Conscious');
let incapacitated = status.includes('Incapacitated');
let unconscious = status.includes('Unconscious');

let state_color = 'red';
if (conscious) {
state_color = 'green';
} else if (unconscious) {
} else if (incapacitated || unconscious) {
state_color = 'yellow';
}
return state_color;
Expand Down

0 comments on commit 946a9ea

Please sign in to comment.