diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index a28da73f..84aae5bc 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -19,6 +19,12 @@ icon_state = "policehelm" flags_inv = 0 +/obj/item/clothing/head/helmet/secfcap + name = "officer's cap" + desc = "A security officer's cap." + icon_state = "officercap" + flags_inv = 0 + /obj/item/clothing/head/helmet/riot name = "riot helmet" desc = "It's a helmet specifically designed to protect against close range attacks." diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index d0d91efb..36fbc439 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -32,6 +32,11 @@ icon_state = "warden_jacket" item_state = "armor" +/obj/item/clothing/suit/armor/vest/warden/jacket + name = "Warden's jacket" + desc = "An armoured jacket with silver rank pips and livery." + icon_state = "formal_warden" + item_state = "formal_warden" /obj/item/clothing/suit/armor/riot name = "Riot Suit" diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index 73bef0cd..4b1d9576 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -58,6 +58,16 @@ item_state = "warden_corporate" item_color = "warden_corporate" +/obj/item/clothing/under/rank/security/formal + icon_state = "sec_f" + item_state = "sec_f" + item_color = "sec_f" + +/obj/item/clothing/under/rank/warden/formal + icon_state = "warden_f" + item_state = "warden_f" + item_color = "warden_f" + /obj/item/clothing/under/tactical name = "tactical jumpsuit" desc = "It's made of a slightly sturdier material than standard jumpsuits, to allow for robust protection." @@ -128,6 +138,11 @@ item_state = "hos_corporate" item_color = "hos_corporate" +/obj/item/clothing/under/rank/head_of_security/formal + icon_state = "hos_f" + item_state = "hos_f" + item_color = "hos_f" + /obj/item/clothing/head/helmet/HoS name = "Head of Security Hat" desc = "The hat of the Head of Security. For showing the officers who's in charge." @@ -156,6 +171,11 @@ flags_inv = 0 siemens_coefficient = 0.6 +/obj/item/clothing/suit/armor/hos/formal + name = "Head of Security's jacket" + desc = "An armoured jacket with golden rank pips and livery." + icon_state = "formal_hos" + item_state = "formal_hos" /obj/item/clothing/head/helmet/HoS/dermal name = "Dermal Armour Patch" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index d094c3d0..ab05d894 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 91443b1a..e9ed7b7b 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index a52adf88..bda059ad 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/card.dmi b/icons/obj/card.dmi index eae09b3b..21b91a76 100644 Binary files a/icons/obj/card.dmi and b/icons/obj/card.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 8fd829dd..7de52b78 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 96fdadb6..1aba2cb3 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 56cd95d0..7440321d 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/icons/obj/pda.dmi b/icons/obj/pda.dmi index 806aa5e5..01f79a9d 100644 Binary files a/icons/obj/pda.dmi and b/icons/obj/pda.dmi differ