mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 08:27:13 +01:00
Adds CMO labcoats to loadout (#15819)
* Adds CMO labcoats to loadout * Wrong folder :waa: * Update code/modules/client/preference_setup/loadout/loadout_suit.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * Duplicate Whitespace Removal --------- Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
This commit is contained in:
@@ -93,6 +93,20 @@ datum/gear/suit/colorvest
|
||||
path = /obj/item/clothing/suit/storage/toggle/labcoat
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/cmo_labcoats
|
||||
display_name = "chief medical officer labcoats selection"
|
||||
path = /obj/item/clothing/suit/storage/toggle/labcoat/cmo
|
||||
allowed_roles = list("Chief Medical Officer")
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/suit/cmo_labcoats/New()
|
||||
..()
|
||||
var/list/cmo_labcoats = list()
|
||||
cmo_labcoats["chief medical officer labcoat"] = /obj/item/clothing/suit/storage/toggle/labcoat/cmo
|
||||
cmo_labcoats["chief medical officer labcoat, alt"] = /obj/item/clothing/suit/storage/toggle/labcoat/cmoalt
|
||||
cmo_labcoats["chief medical officer labcoat, alt 2"] = /obj/item/clothing/suit/storage/toggle/labcoat/cmoalt2
|
||||
gear_tweaks += new /datum/gear_tweak/path(cmo_labcoats)
|
||||
|
||||
/datum/gear/suit/surgeryapron
|
||||
display_name = "surgical apron"
|
||||
path = /obj/item/clothing/accessory/apron/surgery
|
||||
@@ -473,4 +487,4 @@ datum/gear/suit/colorvest
|
||||
/datum/gear/suit/ponczo
|
||||
display_name = "visegradi ponczo"
|
||||
path = /obj/item/clothing/suit/storage/hooded/wintercoat/colorable/ponczo
|
||||
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
Reference in New Issue
Block a user