diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 86bb4ed10fa..983b58df746 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -145,6 +145,7 @@ coat["trenchcoat, grey"] = /obj/item/clothing/suit/storage/toggle/trench/grey coat["trenchcoat, dark brown"] = /obj/item/clothing/suit/storage/toggle/trench/alt coat["trenchcoat, grey alternate"] = /obj/item/clothing/suit/storage/toggle/trench/grey_alt + coat["trenchcoat, green"] = /obj/item/clothing/suit/storage/toggle/trench/green gear_tweaks += new/datum/gear_tweak/path(coat) @@ -327,4 +328,4 @@ /datum/gear/suit/cardigan/New() ..() - gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 9eed2316ec1..44be098b05d 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -441,6 +441,15 @@ icon_open = "trenchcoat_grey_open" icon_closed = "trenchcoat_grey" +/obj/item/clothing/suit/storage/toggle/trench/green + name = "green trenchcoat" + desc = "A comfy looking green trenchcoat with fur." + icon_state = "greentrench" + item_state = "greentrench" + icon_open = "greentrench_open" + icon_closed = "greentrench" + body_parts_covered = UPPER_TORSO|ARMS + /obj/item/clothing/suit/storage/dominia name = "dominia cape" desc = "This is a cape in the style of Dominia nobility. It's the latest fashion across Dominian space." diff --git a/html/changelogs/yourdaddy117-greentrench.yml b/html/changelogs/yourdaddy117-greentrench.yml new file mode 100644 index 00000000000..7f676ea6678 --- /dev/null +++ b/html/changelogs/yourdaddy117-greentrench.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: YourDaddy117 + +# 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: + - imageadd: "Adds a fur-lined green trenchcoat." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 94b3cfafd0c..a40c4e51c96 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 70e8f919d65..a8c6d892a6d 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ