From cb2d166141b7fc534a323c80604b21e49b7706e3 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Mon, 1 Feb 2016 15:24:32 -0500 Subject: [PATCH 1/2] Some more species suicide messages --- .../living/carbon/human/species/plasmaman.dm | 6 ++++++ .../mob/living/carbon/human/species/station.dm | 17 ++++++++++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/plasmaman.dm b/code/modules/mob/living/carbon/human/species/plasmaman.dm index 9cf7a9ed428..0ad9fd2335b 100644 --- a/code/modules/mob/living/carbon/human/species/plasmaman.dm +++ b/code/modules/mob/living/carbon/human/species/plasmaman.dm @@ -18,6 +18,12 @@ heat_level_2 = 400 // Heat damage level 2 above this point. heat_level_3 = 500 // Heat damage level 3 above this point. + suicide_messages = list( + "is twisting their own neck!", + "is letting some O2 in!", + "realizes the existential issue of being made out of plasma!", + "shows their true colors, which happens to be the color of plasma!") + /datum/species/plasmaman/say_filter(mob/M, message, datum/language/speaking) if(copytext(message, 1, 2) != "*") message = replacetext(message, "s", stutter("ss")) diff --git a/code/modules/mob/living/carbon/human/species/station.dm b/code/modules/mob/living/carbon/human/species/station.dm index 349b28b6efb..6d0207741e9 100644 --- a/code/modules/mob/living/carbon/human/species/station.dm +++ b/code/modules/mob/living/carbon/human/species/station.dm @@ -182,6 +182,13 @@ blood_color = "#1D2CBF" reagent_tag = PROCESS_ORG + suicide_messages = list( + "is attempting to bite their tongue off!", + "is jamming their thumbs into their eye sockets!", + "is twisting their own neck!", + "makes like a fish and suffocates!", + "is strangling themselves with their own tendrils!") + /datum/species/vox name = "Vox" name_plural = "Vox" @@ -374,7 +381,8 @@ suicide_messages = list( "is melting into a puddle!", - "is turning a dull, brown color and melting into a puddle!") + "is turning a dull, brown color and melting into a puddle!", + "is ripping out their own core!") /datum/species/grey name = "Grey" @@ -478,7 +486,8 @@ suicide_messages = list( "is losing branches!", - "is pulling themselves apart!") + "is pulling themselves apart!", + "pulls out a secret stash of herbicide and takes a hearty swig!") /datum/species/diona/can_understand(var/mob/other) var/mob/living/simple_animal/diona/D = other @@ -577,7 +586,9 @@ "is powering down!", "is smashing their own monitor!", "is twisting their own neck!", - "is blocking their ventilation port!") + "is blocking their ventilation port!", + "is downloading extra RAM!", + "is frying their own circuits!") /datum/species/machine/handle_death(var/mob/living/carbon/human/H) H.h_style = "" From c3c3fbe577013d9de0b0736176621bfd888f234a Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Tue, 2 Feb 2016 14:30:48 -0500 Subject: [PATCH 2/2] existential problem --- code/modules/mob/living/carbon/human/species/plasmaman.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/plasmaman.dm b/code/modules/mob/living/carbon/human/species/plasmaman.dm index 0ad9fd2335b..6f95a8696ce 100644 --- a/code/modules/mob/living/carbon/human/species/plasmaman.dm +++ b/code/modules/mob/living/carbon/human/species/plasmaman.dm @@ -21,7 +21,7 @@ suicide_messages = list( "is twisting their own neck!", "is letting some O2 in!", - "realizes the existential issue of being made out of plasma!", + "realizes the existential problem of being made out of plasma!", "shows their true colors, which happens to be the color of plasma!") /datum/species/plasmaman/say_filter(mob/M, message, datum/language/speaking)