diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 635faa43..9a49c593 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -149,7 +149,9 @@ new /obj/item/clothing/under/rank/warden(src) // new /obj/item/clothing/under/rank/warden/corp(src) new /obj/item/clothing/suit/armor/vest/warden(src) + new /obj/item/clothing/suit/armor/vest/warden/commissar(src) new /obj/item/clothing/head/helmet/warden(src) + new /obj/item/clothing/head/helmet/warden/commissar(src) // new /obj/item/weapon/cartridge/security(src) new /obj/item/device/radio/headset/headset_sec(src) new /obj/item/clothing/glasses/sunglasses/sechud(src) diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 2f17d11a..6d66305e 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -15,6 +15,12 @@ icon_state = "policehelm" flags_inv = 0 +/obj/item/clothing/head/helmet/warden/commissar + name = "commissar's cap" + desc = "A security commissar's cap." + icon_state = "commissarcap" + flags_inv = 0 + /obj/item/clothing/head/helmet/secfcap name = "officer's cap" desc = "A security officer's cap." diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 20b33ca8..fd388efa 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -38,6 +38,12 @@ icon_state = "formal_warden" item_state = "formal_warden" +/obj/item/clothing/suit/armor/vest/warden/commissar + name = "Commissar's jacket" + desc = "An tasteful dark blue jacket with silver and white highlights. Has hard-plate inserts for armor." + icon_state = "commissar_warden" + item_state = "commissar_warden" + /obj/item/clothing/suit/armor/riot name = "Riot Suit" desc = "A suit of armor with heavy padding to protect against melee attacks. Looks like it might impair movement." diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index e78d210c..d7896b5b 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 232074a8..259c62a9 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 2fc01874..111138e9 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 8a5856f1..3c226544 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ