diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 6849fe2d222..80f5d9854f6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -228,6 +228,12 @@ datum/gear/suit/colorvest path = /obj/item/clothing/suit/storage/hooded/wintercoat/colorable flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION +/datum/gear/suit/highloft_colorable + display_name = "colorable high loft jacket" + description = "An upper arms and back bands colorable high loft jacket." + path = /obj/item/clothing/suit/storage/toggle/highloft + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/suit/secjacketofficer display_name = "security jacket selection (Security Officer)" path = /obj/item/clothing/suit/storage/security/officer diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index bd09cf8c972..007cbed505c 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -492,6 +492,20 @@ item_state = "asymmetriccoat" body_parts_covered = UPPER_TORSO +/obj/item/clothing/suit/storage/toggle/highloft + name = "high loft jacket" + desc = "A high loft insulated jacket intended for long hours in cold station conditions." + icon = 'icons/clothing/suits/highloft.dmi' + icon_state = "highloft" + item_state = "highloft" + worn_overlay = "over" + contained_sprite = TRUE + build_from_parts = TRUE + body_parts_covered = UPPER_TORSO|ARMS + cold_protection = UPPER_TORSO|ARMS + min_cold_protection_temperature = T0C - 20 + siemens_coefficient = 0.75 + /* * Department Jackets */ diff --git a/html/changelogs/highloft_jacket.yml b/html/changelogs/highloft_jacket.yml new file mode 100644 index 00000000000..fcb30c84c41 --- /dev/null +++ b/html/changelogs/highloft_jacket.yml @@ -0,0 +1,6 @@ +author: Vrow + +delete-after: True + +changes: + - rscadd: "Added a new high loft jacket, which is selectable in the loadout." diff --git a/icons/clothing/suits/highloft.dmi b/icons/clothing/suits/highloft.dmi new file mode 100644 index 00000000000..d5a42114f21 Binary files /dev/null and b/icons/clothing/suits/highloft.dmi differ