From 5f9c9274fb8d0d2f6ec973e37d01ede0af40df07 Mon Sep 17 00:00:00 2001 From: Pierre-Louis <44984704+PIerreLouisH@users.noreply.github.com> Date: Tue, 26 Dec 2023 18:48:08 +0100 Subject: [PATCH] Add health analyzer to coroner (#23486) * Add health analyzer to coroner's starting equipment This commit adds a health analyzer to the starting equipment of the coroner job. This will help coroners to better assess the condition of bodies they are examining. * Add the health analyzer upon morgue maps * Forgot cerestation Silly beans * Replaced the health analyzer from maps to locker Optimization only fix: gotta remove some stress out of the map queue. --------- Co-authored-by: Pierre-Louis --- code/game/jobs/job/medical_jobs.dm | 1 + code/game/objects/structures/crates_lockers/closets/wardrobe.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/game/jobs/job/medical_jobs.dm b/code/game/jobs/job/medical_jobs.dm index 3449f62a653..736351bb585 100644 --- a/code/game/jobs/job/medical_jobs.dm +++ b/code/game/jobs/job/medical_jobs.dm @@ -113,6 +113,7 @@ /obj/item/clothing/head/surgery/black = 1, /obj/item/autopsy_scanner = 1, /obj/item/reagent_scanner = 1, + /obj/item/healthanalyzer = 1, /obj/item/storage/box/bodybags = 1) /datum/outfit/job/doctor/pre_equip(mob/living/carbon/human/H, visualsOnly = FALSE) diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index 5826b53f95c..b5563eacc8d 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -449,3 +449,4 @@ new /obj/item/clothing/head/surgery/black(src) new /obj/item/reagent_containers/glass/bottle/reagent/formaldehyde(src) new /obj/item/reagent_containers/dropper(src) + new /obj/item/healthanalyzer(src)