From 0fb46b59a3728196f85fb521bd4fb7bbf9dbb1b9 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Wed, 24 May 2023 19:59:31 +0100 Subject: [PATCH] tg clothing polish --- .../crates_lockers/closets/secure/security.dm | 5 ++- .../closets/secure/security_vr.dm | 1 + code/modules/clothing/suits/neosuits.dm | 37 +++++++++---------- 3 files changed, 21 insertions(+), 22 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index ed330f383c..b2c4591218 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -144,8 +144,9 @@ /obj/item/clothing/under/rank/neo_warden_red, /obj/item/clothing/under/rank/neo_warden_red_skirt, /obj/item/clothing/under/rank/neo_warden_blue, - /obj/item/clothing/suit/neo_armsco_trench, - /obj/item/clothing/suit/neo_warden_heavy, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_armsco_trench, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_bluewarden, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_warden_heavy, /obj/item/weapon/cartridge/security, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/headset/headset_sec/alt, diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm b/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm index d4710b1d06..065258e491 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm @@ -26,6 +26,7 @@ /obj/item/clothing/under/rank/neo_hos_parade_blue_fem, /obj/item/clothing/suit/storage/toggle/labcoat/neo_hos_parade, /obj/item/clothing/suit/storage/toggle/labcoat/neo_hosformal_blue, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_armsco_trench, /obj/item/clothing/head/helmet/HoS/hat/blue, /obj/item/clothing/head/helmet/dermal, /obj/item/device/radio/headset/heads/hos, diff --git a/code/modules/clothing/suits/neosuits.dm b/code/modules/clothing/suits/neosuits.dm index 802557b697..5f70441870 100644 --- a/code/modules/clothing/suits/neosuits.dm +++ b/code/modules/clothing/suits/neosuits.dm @@ -117,12 +117,6 @@ this file deals with suits/overwear. */ // non transforming coats -/obj/item/clothing/suit/neo_armsco_trench - name = "armsco heavy coat" - desc = "it bears a tag that says 'Product of Total Gear & Co.'" - icon_state = "neo_armsco_trench" - body_parts_covered = UPPER_TORSO|ARMS - /obj/item/clothing/suit/neo_gorka name = "gorka jacket" desc = "it bears a tag that says 'Product of Total Gear & Co.'" @@ -135,28 +129,31 @@ this file deals with suits/overwear. */ icon_state = "neo_gorka_cargo" body_parts_covered = UPPER_TORSO|ARMS -/obj/item/clothing/suit/neo_warden_heavy - name = "heavy warden coat" - desc = "it bears a tag that says 'Product of Total Gear & Co.'" - icon_state = "neo_warden_heavy" - body_parts_covered = UPPER_TORSO|ARMS - armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0) - /obj/item/clothing/suit/neo_runner_coat name = "runner's coat" desc = "it bears a tag that says 'Product of Total Gear & Co.'" icon_state = "neo_runner_coat" body_parts_covered = UPPER_TORSO|ARMS -/obj/item/clothing/suit/neo_bluewarden - name = "blue warden's jacket" - desc = "it bears a tag that says 'Product of Total Gear & Co.'" - icon_state = "neo_bluewarden" - body_parts_covered = UPPER_TORSO|ARMS - armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0) - /obj/item/clothing/suit/neo_medical_coat name = "medical coat" desc = "it bears a tag that says 'Product of Total Gear & Co.'" icon_state = "neo_medical_coat" body_parts_covered = UPPER_TORSO|ARMS + +// non-transforming armoured coats with storage + +/obj/item/clothing/suit/storage/vest/wardencoat/neo_bluewarden + name = "blue warden's jacket" + desc = "A common style of warden's jacket with armour vest, but in blue. It bears a tag that says 'Product of Total Gear & Co.'" + icon_state = "neo_bluewarden" + +/obj/item/clothing/suit/storage/vest/wardencoat/neo_warden_heavy + name = "heavy warden coat" + desc = "A heavy and somewhat-imposing looking armour vest over a long jacket. It bears a tag that says 'Product of Total Gear & Co.'" + icon_state = "neo_warden_heavy" + +/obj/item/clothing/suit/storage/vest/wardencoat/neo_armsco_trench + name = "armsco heavy coat" + desc = "A rich red longcoat trimmed in black with a warm brown synthetic fur ruff around the neck, lined with layers of para-aramid fibers for increased durability without compromising comfort. It bears a tag that says 'Product of Total Gear & Co.'" + icon_state = "neo_armsco_trench" \ No newline at end of file