diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 883e46cd5f7..3ca07276754 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -109,6 +109,24 @@ display_name = "trenchcoat, grey" path = /obj/item/clothing/suit/storage/toggle/trench/grey +/datum/gear/suit/det_trenchcoat_brown + display_name = "brown trenchcoat (Detective)" + description = "A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. The coat is externally impact resistant - perfect for your next act of autodefenestration!" + path = /obj/item/clothing/suit/storage/toggle/det_trench + allowed_roles = list("Detective", "Head of Security") + +/datum/gear/suit/det_trenchcoat_black + display_name = "black trenchcoat (Detective)" + description = "A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. The coat is externally impact resistant - perfect for your next act of autodefenestration!" + path = /obj/item/clothing/suit/storage/toggle/det_trench/black + allowed_roles = list("Detective", "Head of Security") + +/datum/gear/suit/det_trenchcoat_techni + display_name = "technicolor trenchcoat (Detective)" + description = "A 23rd-century multi-purpose trenchcoat. It's fibres are hyper-absorbent. Can be painted into any color." + path = /obj/item/clothing/suit/storage/toggle/det_trench/technicolor + allowed_roles = list("Detective", "Head of Security") + /datum/gear/suit/ian display_name = "worn shirt" description = "A worn out, curiously comfortable t-shirt with a picture of Ian." @@ -190,4 +208,4 @@ coat["dominia cape"] = /obj/item/clothing/suit/storage/dominia coat["dominia great coat, black"] = /obj/item/clothing/suit/storage/toggle/dominia/black coat["dominia great coat, alternative black"] = /obj/item/clothing/suit/storage/toggle/dominia/black/alt - gear_tweaks += new/datum/gear_tweak/path(coat) \ No newline at end of file + gear_tweaks += new/datum/gear_tweak/path(coat) diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index f0f911e4a8f..854fff0d5e7 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -137,11 +137,13 @@ siemens_coefficient = 0.7 /obj/item/clothing/suit/storage/toggle/det_trench/black + name = "black trenchcoat" icon_state = "detective2" icon_open = "detective2_open" icon_closed = "detective2" /obj/item/clothing/suit/storage/toggle/det_trench/technicolor + name = "black trenchcoat" desc = "A 23rd-century multi-purpose trenchcoat. It's fibres are hyper-absorbent." icon_state = "suit_detective_black" item_state = "suit_detective_black" diff --git a/html/changelogs/Sindorman-trench.yml b/html/changelogs/Sindorman-trench.yml new file mode 100644 index 00000000000..5eed98a7af3 --- /dev/null +++ b/html/changelogs/Sindorman-trench.yml @@ -0,0 +1,7 @@ +author: PoZe + +delete-after: True + +changes: + - bugfix: "Fixed names for black and technicolor detective armoured trenchcoats" + - rscadd: "Detective armoured trenchcoats are avaliable in loadout section of character setup. (Only for detectives and HOS)"