diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 9d4fba5c06f..35e94497c5f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -264,6 +264,7 @@ jacket["department jacket, science"] = /obj/item/clothing/suit/storage/toggle/sci_dep_jacket jacket["department jacket, medical"] = /obj/item/clothing/suit/storage/toggle/med_dep_jacket jacket["department jacket, security"] = /obj/item/clothing/suit/storage/toggle/sec_dep_jacket + jacket["departmental jacket, service"] = /obj/item/clothing/suit/storage/toggle/serv_dep_jacket gear_tweaks += new/datum/gear_tweak/path(jacket) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index b418c72ee02..d38617f06ac 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -587,7 +587,7 @@ */ /obj/item/clothing/suit/storage/toggle/engi_dep_jacket name = "engineering department jacket" - desc = "A cozy jacket in engineering's colors. Show your department pride!" + desc = "A cozy jacket in engineering's colors, featuring spacious pockets you won't even use." icon_state = "engi_dep_jacket" item_state = "engi_dep_jacket" icon_open = "engi_dep_jacket_open" @@ -595,7 +595,7 @@ /obj/item/clothing/suit/storage/toggle/supply_dep_jacket name = "supply department jacket" - desc = "A cozy jacket in supply's colors. Show your department pride!" + desc = "A cozy jacket in supply's colors, perfect for folding up and forgetting bounty lists." icon_state = "supply_dep_jacket" item_state = "supply_dep_jacket" icon_open = "supply_dep_jacket_open" @@ -603,7 +603,7 @@ /obj/item/clothing/suit/storage/toggle/sci_dep_jacket name = "science department jacket" - desc = "A cozy jacket in science's colors. Show your department pride!" + desc = "A cozy jacket in science's colors, offering the latest in a complete lack of protection against chemical spills." icon_state = "sci_dep_jacket" item_state = "sci_dep_jacket" icon_open = "sci_dep_jacket_open" @@ -611,7 +611,7 @@ /obj/item/clothing/suit/storage/toggle/med_dep_jacket name = "medical department jacket" - desc = "A cozy jacket in medical's colors. Show your department pride!" + desc = "A cozy jacket in medical's colors, guaranteed not to leak the latest gossip." icon_state = "med_dep_jacket" item_state = "med_dep_jacket" icon_open = "med_dep_jacket_open" @@ -619,12 +619,20 @@ /obj/item/clothing/suit/storage/toggle/sec_dep_jacket name = "security department jacket" - desc = "A cozy jacket in security's colors. Show your department pride!" + desc = "A cozy jacket in security's colors, luckily able to be easily cleaned of blood stains" icon_state = "sec_dep_jacket" item_state = "sec_dep_jacket" icon_open = "sec_dep_jacket_open" icon_closed = "sec_dep_jacket" +/obj/item/clothing/suit/storage/toggle/serv_dep_jacket + name = "service department jacket" + desc = "A cozy jacket in service's colors, reminding many employees that even service has colors." + icon_state = "serv_dep_jacket" + item_state = "serv_dep_jacket" + icon_open = "serv_dep_jacket_open" + icon_closed = "serv_dep_jacket" + /obj/item/clothing/suit/storage/fib name = "\improper FIB agent jacket" desc = "A jacket used by Federal Investigations Bureau agents while on the field." diff --git a/html/changelogs/paradoxspace-forgotten.yml b/html/changelogs/paradoxspace-forgotten.yml new file mode 100644 index 00000000000..85eb9027b02 --- /dev/null +++ b/html/changelogs/paradoxspace-forgotten.yml @@ -0,0 +1,43 @@ +################################ +# 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: ParadoxSpace + +# 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: + - bugfix: "The Security department jacket now has an NT logo on the back." + - rscadd: "Adds a department jacket for Service." + - tweak: "Increases the wittiness in the department jacket descs by 75%" diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index e2243b6d68d..94b3cfafd0c 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index d4390cb7d6a..70e8f919d65 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ