Adds Coroner as an alternative title for medical doctors (#18492)

This commit is contained in:
nesquik
2025-09-18 20:02:51 -04:00
committed by GitHub
parent c993b2da0e
commit 6192f574e8
2 changed files with 8 additions and 1 deletions
+2
View File
@@ -240,6 +240,8 @@
#define JOB_ALT_ORDERLY "Orderly"
#define JOB_ALT_VIROLOGIST "Virologist"
#define JOB_ALT_MEDICAL_CONTRACTOR "Medical Contractor"
#define JOB_ALT_CORONER "Coroner"
#define JOB_CHEMIST "Chemist"
// Chemist alt titles
+6 -1
View File
@@ -76,7 +76,7 @@
patients they encounter."
alt_titles = list(JOB_ALT_PHYSICIAN = /datum/alt_title/physician, JOB_ALT_MEDICAL_PRACTITIONER = /datum/alt_title/medical_practitioner, JOB_ALT_SURGEON = /datum/alt_title/surgeon,
JOB_ALT_EMERGENCY_PHYSICIAN = /datum/alt_title/emergency_physician, JOB_ALT_NURSE = /datum/alt_title/nurse, JOB_ALT_ORDERLY = /datum/alt_title/orderly,
JOB_ALT_VIROLOGIST = /datum/alt_title/virologist, JOB_ALT_MEDICAL_CONTRACTOR = /datum/alt_title/medical_contractor)
JOB_ALT_VIROLOGIST = /datum/alt_title/virologist, JOB_ALT_MEDICAL_CONTRACTOR = /datum/alt_title/medical_contractor, JOB_ALT_CORONER = /datum/alt_title/coroner)
min_age_by_species = list(SPECIES_PROMETHEAN = 3)
@@ -126,6 +126,11 @@
title = JOB_ALT_MEDICAL_CONTRACTOR
title_blurb = "A " + JOB_ALT_MEDICAL_CONTRACTOR + " can be anything from a full-blown doctor to the likes of a nurse or orderly, but isn't directly employed by NT proper."
/datum/alt_title/coroner
title = JOB_ALT_CORONER
title_blurb = "A " + JOB_ALT_CORONER + " generally works around the dead, focusing on determining the causes of their untimely demises alongside their general handling. They still are fully medical professionals."
//////////////////////////////////
// Chemist
//////////////////////////////////