diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index dbacf45e34..4216ab50c6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -199,6 +199,41 @@ path = /obj/item/clothing/accessory/poncho/roles/cargo allowed_roles = list("Quartermaster","Cargo Technician") +/datum/gear/suit/roles/poncho/cloak/hos + display_name = "cloak, head of security" + path = /obj/item/clothing/accessory/poncho/roles/cloak/hos + allowed_roles = list("Head of Security") + +/datum/gear/suit/roles/poncho/cloak/cmo + display_name = "cloak, chief medical officer" + path = /obj/item/clothing/accessory/poncho/roles/cloak/cmo + allowed_roles = list("Chief Medical Officer") + +/datum/gear/suit/roles/poncho/cloak/ce + display_name = "cloak, chief engineer" + path = /obj/item/clothing/accessory/poncho/roles/cloak/ce + allowed_roles = list("Chief Engineer") + +/datum/gear/suit/roles/poncho/cloak/rd + display_name = "cloak, research director" + path = /obj/item/clothing/accessory/poncho/roles/cloak/rd + allowed_roles = list("Research Director") + +/datum/gear/suit/roles/poncho/cloak/qm + display_name = "cloak, quartermaster" + path = /obj/item/clothing/accessory/poncho/roles/cloak/qm + allowed_roles = list("Quartermaster") + +/datum/gear/suit/roles/poncho/cloak/captain + display_name = "cloak, colony director" + path = /obj/item/clothing/accessory/poncho/roles/cloak/captain + allowed_roles = list("Colony Director") + +/datum/gear/suit/roles/poncho/cloak/hop + display_name = "cloak, head of personnel" + path = /obj/item/clothing/accessory/poncho/roles/cloak/hop + allowed_roles = list("Head of Personnel") + /datum/gear/suit/unathi_robe display_name = "roughspun robe" path = /obj/item/clothing/suit/unathi/robe diff --git a/code/modules/clothing/under/accessories/clothing.dm b/code/modules/clothing/under/accessories/clothing.dm index dff0740ace..363476eb2b 100644 --- a/code/modules/clothing/under/accessories/clothing.dm +++ b/code/modules/clothing/under/accessories/clothing.dm @@ -115,6 +115,58 @@ icon_state = "cargoponcho" item_state = "cargoponcho" +/* + * Cloak + */ +/obj/item/clothing/accessory/poncho/roles/cloak + name = "brown cloak" + desc = "An elaborate brown cloak." + icon_state = "qmcloak" + item_state = "qmcloak" + body_parts_covered = null + +/obj/item/clothing/accessory/poncho/roles/cloak/ce + name = "chief engineer's cloak" + desc = "An elaborate cloak worn by the chief engineer." + icon_state = "cecloak" + item_state = "cecloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/cmo + name = "chief medical officer's cloak" + desc = "An elaborate cloak meant to be worn by the chief medical officer." + icon_state = "cmocloak" + item_state = "cmocloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/hop + name = "head of personnel's cloak" + desc = "An elaborate cloak meant to be worn by the head of personnel." + icon_state = "hopcloak" + item_state = "hopcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/rd + name = "research director's cloak" + desc = "An elaborate cloak meant to be worn by the research director." + icon_state = "rdcloak" + item_state = "rdcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/qm + name = "quartermaster's cloak" + desc = "An elaborate cloak meant to be worn by the quartermaster." + icon_state = "qmcloak" + item_state = "qmcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/hos + name = "head of security's cloak" + desc = "An elaborate cloak meant to be worn by the head of security." + icon_state = "hoscloak" + item_state = "hoscloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/captain + name = "colony director's cloak" + desc = "An elaborate cloak meant to be worn by the colony director." + icon_state = "capcloak" + item_state = "capcloak" + /obj/item/clothing/accessory/hawaii name = "flower-pattern shirt" desc = "You probably need some welder googles to look at this." diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index d041818abb..4105a9f68e 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 84117e2754..8f5aac8ff6 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ