diff --git a/code/game/machinery/vendors/generic_vendors.dm b/code/game/machinery/vendors/generic_vendors.dm index 26399f01452..06486ee94e4 100644 --- a/code/game/machinery/vendors/generic_vendors.dm +++ b/code/game/machinery/vendors/generic_vendors.dm @@ -272,6 +272,7 @@ /obj/item/clothing/under/color/rainbow = 1) contraband = list(/obj/item/clothing/under/syndicate/tacticool = 5, + /obj/item/clothing/under/syndicate/greyman = 5, /obj/item/clothing/under/color/orange/prison = 5) prices = list(/obj/item/clothing/under/color/black = 30, @@ -297,6 +298,7 @@ /obj/item/clothing/under/color/pink = 50, /obj/item/clothing/under/color/rainbow = 100, /obj/item/clothing/under/syndicate/tacticool = 75, + /obj/item/clothing/under/syndicate/greyman = 75, /obj/item/clothing/under/color/orange/prison = 75) refill_canister = /obj/item/vending_refill/suitdispenser diff --git a/code/game/objects/items/weapons/gift_wrappaper.dm b/code/game/objects/items/weapons/gift_wrappaper.dm index c070e1d1f98..00cdd95782b 100644 --- a/code/game/objects/items/weapons/gift_wrappaper.dm +++ b/code/game/objects/items/weapons/gift_wrappaper.dm @@ -109,6 +109,7 @@ /obj/item/toy/nuke, /obj/item/toy/AI, /obj/item/clothing/under/syndicate/tacticool, + /obj/item/clothing/under/syndicate/greyman, /obj/item/storage/box/fakesyndiesuit, /obj/item/gun/projectile/shotgun/toy/tommygun, /obj/item/stack/tile/fakespace/loaded, diff --git a/code/modules/client/preference/loadout/loadout_uniform.dm b/code/modules/client/preference/loadout/loadout_uniform.dm index a52d1637989..547f443981e 100644 --- a/code/modules/client/preference/loadout/loadout_uniform.dm +++ b/code/modules/client/preference/loadout/loadout_uniform.dm @@ -367,6 +367,11 @@ description = "A sleek black turtleneck paired with some khakis (WARNING DOES NOT HAVE SUIT SENSORS)" path = /obj/item/clothing/under/syndicate/tacticool +/datum/gear/uniform/suit/greyman + display_name = "Greyman Henley" + description = "Khaki henley paired up with some grey cargo pants (WARNING DOES NOT HAVE SUIT SENSORS)" + path = /obj/item/clothing/under/syndicate/greyman + /datum/gear/uniform/suit/assistantformal display_name = "Assistant's Formal Uniform" description = "Formal attire fit for an Assistant." diff --git a/code/modules/clothing/under/syndicate_jumpsuits.dm b/code/modules/clothing/under/syndicate_jumpsuits.dm index 6caf91dab70..92c1c045d0b 100644 --- a/code/modules/clothing/under/syndicate_jumpsuits.dm +++ b/code/modules/clothing/under/syndicate_jumpsuits.dm @@ -21,6 +21,14 @@ icon_state = "syndicate_combat" item_color = "syndicate_combat" + +/obj/item/clothing/under/syndicate/greyman + name = "greyman henley" + desc = "Attire for someone who finds it hard to survive in the safest place known to man - urban environment " + icon_state = "greyman" + item_color = "greyman" + armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, RAD = 5, FIRE = 40, ACID = 35) + /obj/item/clothing/under/syndicate/tacticool name = "tacticool turtleneck" desc = "Just looking at it makes you want to buy an SKS, go into the woods, and -operate-." diff --git a/icons/mob/clothing/species/drask/under/syndicate.dmi b/icons/mob/clothing/species/drask/under/syndicate.dmi index 597d4aec42b..5143c58f4e8 100644 Binary files a/icons/mob/clothing/species/drask/under/syndicate.dmi and b/icons/mob/clothing/species/drask/under/syndicate.dmi differ diff --git a/icons/mob/clothing/species/grey/under/syndicate.dmi b/icons/mob/clothing/species/grey/under/syndicate.dmi index 1d5400f6274..feb87bfde37 100644 Binary files a/icons/mob/clothing/species/grey/under/syndicate.dmi and b/icons/mob/clothing/species/grey/under/syndicate.dmi differ diff --git a/icons/mob/clothing/species/vox/under/syndicate.dmi b/icons/mob/clothing/species/vox/under/syndicate.dmi index f3053bf4fed..4123e646a7e 100644 Binary files a/icons/mob/clothing/species/vox/under/syndicate.dmi and b/icons/mob/clothing/species/vox/under/syndicate.dmi differ diff --git a/icons/mob/clothing/under/syndicate.dmi b/icons/mob/clothing/under/syndicate.dmi index b8c7ae065c6..69ff9c52489 100644 Binary files a/icons/mob/clothing/under/syndicate.dmi and b/icons/mob/clothing/under/syndicate.dmi differ diff --git a/icons/obj/clothing/under/syndicate.dmi b/icons/obj/clothing/under/syndicate.dmi index 3965f4b07a3..4526660e117 100644 Binary files a/icons/obj/clothing/under/syndicate.dmi and b/icons/obj/clothing/under/syndicate.dmi differ