From 30babe48c36dcda6b384149d1bf2b7d7b0928224 Mon Sep 17 00:00:00 2001 From: Mark9013100 Date: Thu, 20 Aug 2015 19:34:35 -0400 Subject: [PATCH] Adds medical scrubs to custom loadout --- code/modules/client/preferences_gear.dm | 31 ++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 5170d32f60..d13f78d559 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -361,7 +361,8 @@ var/global/list/gear_datums = list() path = /obj/item/clothing/under/color/blackf slot = slot_w_uniform cost = 1 -/datum/gear/blackfjumpsuit + +/datum/gear/rainbowjumpsuit display_name = "jumpsuit, rainbow" path = /obj/item/clothing/under/rainbow slot = slot_w_uniform @@ -499,6 +500,34 @@ var/global/list/gear_datums = list() slot = slot_w_uniform cost = 1 +/datum/gear/blackscrubs + display_name = "scrubs, black" + path = /obj/item/clothing/under/rank/medical/black + slot = slot_w_uniform + cost = 1 + allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist") + +/datum/gear/bluescrubs + display_name = "scrubs, blue" + path = /obj/item/clothing/under/rank/medical/blue + slot = slot_w_uniform + cost = 1 + allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist") + +/datum/gear/purplescrubs + display_name = "scrubs, purple" + path = /obj/item/clothing/under/rank/medical/purple + slot = slot_w_uniform + cost = 1 + allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist") + +/datum/gear/greenscrubs + display_name = "scrubs, green" + path = /obj/item/clothing/under/rank/medical/green + slot = slot_w_uniform + cost = 1 + allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist") + /datum/gear/sundress display_name = "sundress" path = /obj/item/clothing/under/sundress