Skip to content

Commit

Permalink
Department Jacket Tweaks (#7893)
Browse files Browse the repository at this point in the history
Adds zippers to every single jacket's open sprite. Adds NT logo to back of Security jackets. Adds Service jacket. Makes descriptions slightly funnier.
  • Loading branch information
Nerev4r authored and skull132 committed Jan 22, 2020
1 parent b7d7393 commit a48d883
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 5 deletions.
Expand Up @@ -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)


Expand Down
18 changes: 13 additions & 5 deletions code/modules/clothing/suits/miscellaneous.dm
Expand Up @@ -587,44 +587,52 @@
*/
/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"
icon_closed = "engi_dep_jacket"

/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"
icon_closed = "supply_dep_jacket"

/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"
icon_closed = "sci_dep_jacket"

/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"
icon_closed = "med_dep_jacket"

/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."
Expand Down
43 changes: 43 additions & 0 deletions 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%"
Binary file modified icons/mob/suit.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.

0 comments on commit a48d883

Please sign in to comment.