diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index a324875a581..a2bde3aaa93 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -505,6 +505,10 @@ path = /obj/item/clothing/suit/storage/hooded/wintercoat/cosmic // winter coats end here +/datum/gear/suit/runner + display_name = "runner jacket" + path = /obj/item/clothing/suit/runner + /datum/gear/suit/varsity display_name = "varsity jacket selection" path = /obj/item/clothing/suit/varsity diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 176e0b697fa..b6bad999969 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -374,6 +374,10 @@ display_name = "halter top" path = /obj/item/clothing/under/haltertop +/datum/gear/uniform/tanktop + display_name = "tank top" + path = /obj/item/clothing/under/tanktop + /datum/gear/uniform/revealingdress display_name = "revealing dress" path = /obj/item/clothing/under/dress/revealingdress diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index e7de3d361fb..10974fcda80 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -799,6 +799,14 @@ name = "brown varsity jacket" icon_state = "varsity_brown" +/obj/item/clothing/suit/runner + name = "runner jacket" + desc = "A red sports jacket with white trim and an unfolded collar." + icon_state = "runner" + allowed = list (/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight, /obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask) + item_state_slots = list(slot_r_hand_str = "suit_red", slot_l_hand_str = "suit_red") + flags_inv = HIDEHOLSTER + /* * Department Jackets */ diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index d4f0f3dc780..bcea7431f65 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -981,6 +981,11 @@ desc = "Jean shorts and a black halter top. Perfect for casual Fridays!" icon_state = "haltertop" +/obj/item/clothing/under/tanktop + name = "tank top" + desc = "The most versatile top ever created." + icon_state = "tanktop" + /obj/item/clothing/under/rippedpunk name = "ripped punk jeans" desc = "Black ripped jeans and a fishnet top. How punk."