From 12c0e475d83abdc008df8f5ce345a12c9a002b53 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Fri, 31 Jan 2020 22:36:25 -0500 Subject: [PATCH] Add Nurse Stuff to Loadout, fixes. --- .../code/modules/client/loadout/_medical.dm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/client/loadout/_medical.dm b/modular_citadel/code/modules/client/loadout/_medical.dm index eed1ad32a1..bd0b9ad3e9 100644 --- a/modular_citadel/code/modules/client/loadout/_medical.dm +++ b/modular_citadel/code/modules/client/loadout/_medical.dm @@ -1,9 +1,23 @@ -/datum/gear/stethoscope +/datum/gear/medicbriefcase name = "Medical Briefcase" category = SLOT_HANDS path = /obj/item/storage/briefcase/medical restricted_roles = list("Medical Doctor", "Chief Medical Officer") +/datum/gear/nursehat + name = "Nurse Hat" + category = SLOT_HANDS + path = /obj/item/clothing/head/nursehat + restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist") + restricted_desc = "Medical" + +/datum/gear/nursesuit + name = "Nurse Suit" + category = SLOT_HEAD + path = /obj/item/clothing/under/rank/nursesuit + restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist") + restricted_desc = "Medical" + /datum/gear/stethoscope name = "Stethoscope" category = SLOT_NECK