From 7438cfe5cfe7428c4ed9fc78436fdcf54c8081ad Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Tue, 4 Jul 2023 21:33:12 -0400 Subject: [PATCH] Death Rattle and Death Message (First Pass) --- code/modules/mob/living/carbon/human/species/synthetic.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/synthetic.dm b/code/modules/mob/living/carbon/human/species/synthetic.dm index bdd0a994ed49..efa9bf76c1a6 100644 --- a/code/modules/mob/living/carbon/human/species/synthetic.dm +++ b/code/modules/mob/living/carbon/human/species/synthetic.dm @@ -109,6 +109,7 @@ /datum/species/synthetic/colonial/working_joe name = SYNTH_WORKING_JOE name_plural = "Working Joes" + death_message = "PLACEHOLDER: PLEASE BULLY THE MAINTS IF THIS SOMEHOW GETS THROUGH!!!!" uses_ethnicity = FALSE mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_EMOTE_CD_EXEMPT) @@ -116,6 +117,11 @@ icobase = 'icons/mob/humans/species/r_synthetic.dmi' deform = 'icons/mob/humans/species/r_synthetic.dmi' +// Special death noise for Working Joe +/datum/species/synthetic/colonial/working_joe/handle_death(mob/M, gibbed) + if(!gibbed) //A gibbed Joe won't have a death rattle + playsound(M.loc,'sound/voice/predalien_death.ogg', 25, TRUE) + // Synth used for W-Y Deathsquads /datum/species/synthetic/colonial/combat name = SYNTH_COMBAT