diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 9d2ae62eafc..b819bb48326 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -48,6 +48,7 @@ datum/gear/suit/colorvest jackets["flannel jacket, purple"] = /obj/item/clothing/suit/storage/toggle/flannel/purple jackets["flannel jacket, yellow"] = /obj/item/clothing/suit/storage/toggle/flannel/yellow jackets["high visibility jacket"] = /obj/item/clothing/suit/storage/toggle/highvis + jackets["high visibility jacket, alt"] = /obj/item/clothing/suit/storage/toggle/highvis_alt jackets["black vest"] = /obj/item/clothing/suit/storage/toggle/leather_vest jackets["brown vest"] = /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless jackets["leather coat"] = /obj/item/clothing/suit/storage/leathercoat diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 5f12260643a..3fe49f4a020 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -388,6 +388,15 @@ body_parts_covered = UPPER_TORSO|ARMS contained_sprite = TRUE +/obj/item/clothing/suit/storage/toggle/highvis_alt + name = "high visibility jacket" + desc = "A bright yellow jacket with reflective stripes. For use in operations, engineering, and sometimes even law enforcement in cold and poor weather or when visibility is low." + icon = 'icons/clothing/suits/highvis.dmi' + icon_state = "highvis_alt" + item_state = "highvis_alt" + body_parts_covered = UPPER_TORSO|ARMS + contained_sprite = TRUE + /obj/item/clothing/suit/storage/toggle/track name = "track jacket" desc = "a track jacket, for the athletic." diff --git a/html/changelogs/KingOfThePing - 14970 .yml b/html/changelogs/KingOfThePing - 14970 .yml new file mode 100644 index 00000000000..4dcc2c98089 --- /dev/null +++ b/html/changelogs/KingOfThePing - 14970 .yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: KingOfThePing + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds an alternative bright yellow high visibility jacket from Shiptest. It has two pocket slots. Available in the loadout under the jacket selection." diff --git a/icons/clothing/suits/highvis.dmi b/icons/clothing/suits/highvis.dmi index faebaef6113..172d6febed0 100644 Binary files a/icons/clothing/suits/highvis.dmi and b/icons/clothing/suits/highvis.dmi differ