diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index ef34c40b328..13f64e5859c 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1138,6 +1138,19 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO cold_protection = UPPER_TORSO|LOWER_TORSO +/obj/item/clothing/suit/jacket/dtx //AffectedArc07: DTX + name = "telecommunications bomber jacket" + desc = "Looks like something only a nerd would buy. Has a tag inside reading Property of DTX." + icon = 'icons/obj/custom_items.dmi' + icon_state = "dtxbomber" + item_state = "dtxbomber" + ignore_suitadjust = 0 + allowed = list(/obj/item/flashlight,/obj/item/tank/emergency_oxygen,/obj/item/toy,/obj/item/storage/fancy/cigarettes,/obj/item/lighter) + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS + actions_types = list(/datum/action/item_action/zipper) + adjust_flavour = "unzip" + //////////// Uniforms //////////// /obj/item/clothing/under/fluff/counterfeitguise_uniform // thatdanguy23 : Rissa Williams icon = 'icons/obj/custom_items.dmi' diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index f2e67a2e7a0..6463ef602b2 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 4d34a43641a..51ca7d9e5af 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ