diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 85cb9e7ef8..701f0cdace 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -455,6 +455,18 @@ var/global/list/gear_datums = list() cost = 4 slot = slot_wear_suit +/datum/gear/leather_jacket + display_name = "leather jacket" + path = /obj/item/clothing/suit/storage/leather_jacket + cost = 3 + slot = slot_wear_suit + +/datum/gear/leather_jacket + display_name = "leather jacket, NanoTrasen" + path = /obj/item/clothing/suit/storage/leather_jacket/nanotrasen + cost = 3 + slot = slot_wear_suit + /datum/gear/unathi_mantle display_name = "hide mantle (Unathi)" path = /obj/item/clothing/suit/unathi/mantle diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 7ce3b6ebd9..ed0cbad81a 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -380,7 +380,7 @@ /obj/item/clothing/suit/storage/bomber name = "bomber jacker" - desc = "A well-worn WW2 leather bomber jacket." + desc = "A thick, well-worn WW2 leather bomber jacket." icon_state = "bomber" item_state = "bomber" flags = FPRINT | TABLEPASS @@ -388,3 +388,17 @@ cold_protection = UPPER_TORSO|ARMS min_cold_protection_temperature = T0C - 20 siemens_coefficient = 0.7 + +/obj/item/clothing/suit/storage/leather_jacket + name = "leather jacket" + desc = "A black leather coat." + icon_state = "leather_jacket" + item_state = "leather_jacket" + body_parts_covered = UPPER_TORSO|ARMS + +/obj/item/clothing/suit/storage/leather_jacket/nanotrasen + name = "leather jacket" + desc = "A black leather coat. The letters NT are proudly displayed on the back." + icon_state = "leather_jacket_nt" + item_state = "leather_jacket_nt" + body_parts_covered = UPPER_TORSO|ARMS \ No newline at end of file diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 761a76a083..bac90ffc0c 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 d164facd5a..c3dbb3fadd 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ