diff --git a/code/modules/client/preference_setup/loadout/items/uniform.dm b/code/modules/client/preference_setup/loadout/items/uniform.dm index 2a597e0241d..7ed5f721b60 100644 --- a/code/modules/client/preference_setup/loadout/items/uniform.dm +++ b/code/modules/client/preference_setup/loadout/items/uniform.dm @@ -177,6 +177,8 @@ pants["red pants"] = /obj/item/clothing/under/pants/red pants["tan pants"] = /obj/item/clothing/under/pants/tan pants["khaki pants"] = /obj/item/clothing/under/pants/khaki + pants["high visibility pants"] = /obj/item/clothing/under/pants/highvis + pants["high visibility pants, alt"] = /obj/item/clothing/under/pants/highvis_alt pants["track pants"] = /obj/item/clothing/under/pants/track pants["blue track pants"] = /obj/item/clothing/under/pants/track/blue pants["green track pants"] = /obj/item/clothing/under/pants/track/green diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index c55c7fa0d59..3b7f0456ce7 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -397,19 +397,19 @@ /obj/item/clothing/suit/storage/toggle/highvis name = "high visibility jacket" - desc = "A loose-fitting, high visibility jacket to help crew be recognizable in high traffic areas with large industrial equipment." - icon = 'icons/clothing/suits/highvis.dmi' - icon_state = "highvis" - item_state = "highvis" + desc = "A loose-fitting, high visibility jacket to help the wearer be recognizable in high traffic areas with large industrial equipment." + icon = 'icons/clothing/kit/highvis.dmi' + icon_state = "jacket_highvis" + item_state = "jacket_highvis" 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" + 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/kit/highvis.dmi' + icon_state = "jacket_highvis_alt" + item_state = "jacket_highvis_alt" body_parts_covered = UPPER_TORSO|ARMS contained_sprite = TRUE diff --git a/code/modules/clothing/under/pants.dm b/code/modules/clothing/under/pants.dm index 3d90cf98ce9..a2825775483 100644 --- a/code/modules/clothing/under/pants.dm +++ b/code/modules/clothing/under/pants.dm @@ -42,6 +42,20 @@ icon_state = "khaki" item_state = "khaki" +/obj/item/clothing/under/pants/highvis + name = "high visibility pants" + desc = "A pair of loose-fitting, high visibility pants to help the wearer be recognizable in high traffic areas with large industrial equipment." + icon = 'icons/clothing/kit/highvis.dmi' + icon_state = "pants_highvis" + item_state = "pants_highvis" + +/obj/item/clothing/under/pants/highvis_alt + name = "high visibility pants" + desc = "A pair of bright yellow pants 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/kit/highvis.dmi' + icon_state = "pants_highvis_alt" + item_state = "pants_highvis_alt" + /obj/item/clothing/under/pants/camo name = "camouflage pants" desc = "A pair of woodland camouflage pants. Probably not the best choice for a space station." diff --git a/html/changelogs/DreamySkrell-highvis-pants.yml b/html/changelogs/DreamySkrell-highvis-pants.yml new file mode 100644 index 00000000000..784fa3b084b --- /dev/null +++ b/html/changelogs/DreamySkrell-highvis-pants.yml @@ -0,0 +1,8 @@ + + +author: DreamySkrell + +delete-after: True + +changes: + - rscadd: "Adds highvis pants to match the two highvis jackets." diff --git a/icons/clothing/kit/highvis.dmi b/icons/clothing/kit/highvis.dmi new file mode 100644 index 00000000000..1ab2a871fea Binary files /dev/null and b/icons/clothing/kit/highvis.dmi differ diff --git a/icons/clothing/suits/highvis.dmi b/icons/clothing/suits/highvis.dmi deleted file mode 100644 index 172d6febed0..00000000000 Binary files a/icons/clothing/suits/highvis.dmi and /dev/null differ