diff --git a/modular_ss220/clothing/code/helmet.dm b/modular_ss220/clothing/code/helmet.dm index 9cc35613eb78..dafe0ce18f82 100644 --- a/modular_ss220/clothing/code/helmet.dm +++ b/modular_ss220/clothing/code/helmet.dm @@ -129,6 +129,15 @@ icon_state = "ember_sec" item_state = "ember_sec" +/obj/item/clothing/head/helmet/ert/security/paranormal + icon_state = "knight_templar" + item_state = "knight_templar" + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/helmet.dmi', + "Drask" = 'icons/mob/clothing/species/drask/helmet.dmi', + "Grey" = 'icons/mob/clothing/species/grey/helmet.dmi' + ) + /obj/item/clothing/head/helmet/space/ert_engineer name = "emergency response team engineer space helmet" desc = "Space helmet worn by engineering members of the Nanotrasen Emergency Response Team. Has orange highlights." diff --git a/modular_ss220/clothing/code/suits.dm b/modular_ss220/clothing/code/suits.dm index dc0d4aae4e78..fb1e7aabc112 100644 --- a/modular_ss220/clothing/code/suits.dm +++ b/modular_ss220/clothing/code/suits.dm @@ -306,6 +306,14 @@ icon_state = "ember_sec" item_state = "ember_sec" body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + +/obj/item/clothing/suit/armor/vest/ert/security/paranormal + icon_state = "knight_templar" + item_state = "knight_templar" + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) + /obj/item/clothing/suit/space/ert_engineer name = "emergency response team engineer space suit" desc = "Space suit worn by engineering members of the Nanotrasen Emergency Response Team. Has orange highlights." diff --git a/modular_ss220/clothing/icons/mob/helmet.dmi b/modular_ss220/clothing/icons/mob/helmet.dmi index 4f04df8ddfb9..f446553cf564 100644 Binary files a/modular_ss220/clothing/icons/mob/helmet.dmi and b/modular_ss220/clothing/icons/mob/helmet.dmi differ diff --git a/modular_ss220/clothing/icons/mob/suits.dmi b/modular_ss220/clothing/icons/mob/suits.dmi index e89635f14900..f41d5e0d495d 100644 Binary files a/modular_ss220/clothing/icons/mob/suits.dmi and b/modular_ss220/clothing/icons/mob/suits.dmi differ diff --git a/modular_ss220/clothing/icons/object/helmet.dmi b/modular_ss220/clothing/icons/object/helmet.dmi index 6a9df565e53e..683c86811fb5 100644 Binary files a/modular_ss220/clothing/icons/object/helmet.dmi and b/modular_ss220/clothing/icons/object/helmet.dmi differ diff --git a/modular_ss220/clothing/icons/object/suits.dmi b/modular_ss220/clothing/icons/object/suits.dmi index 023cb112fbdb..bbd542b2234b 100644 Binary files a/modular_ss220/clothing/icons/object/suits.dmi and b/modular_ss220/clothing/icons/object/suits.dmi differ