diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 85c1d0e114..5d750f3c75 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -325,3 +325,22 @@ desc = "A blue bathrobe." icon_state = "bathrobe" item_state = "bathrobe" + +/obj/item/clothing/under/misc/mechsuitred + name = "red mech suit" + desc = "What are you, stupid?" + icon_state = "red_mech_suit" + item_state = "red_mech_suit" + +/obj/item/clothing/under/misc/mechsuitwhite + name = "white mech suit" + desc = "...Mom?" + icon_state = "white_mech_suit" + item_state = "white_mech_suit" + +/obj/item/clothing/under/misc/mechsuitblue + name = "blue mech suit" + desc = "Get in the damn robot already!" + icon_state = "blue_mech_suit" + item_state = "blue_mech_suit" + diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index 26beccaac0..37c21fc2eb 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -160,7 +160,10 @@ /obj/item/clothing/shoes/sneakers/black = 3, /obj/item/clothing/gloves/fingerless = 3, /obj/item/clothing/head/soft/black = 3, - /obj/item/clothing/mask/bandana/skull = 2) + /obj/item/clothing/mask/bandana/skull = 2, + /obj/item/clothing/under/misc/mechsuitred = 1, + /obj/item/clothing/under/misc/mechsuitwhite = 1, + /obj/item/clothing/under/misc/mechsuitblue = 1) contraband = list(/obj/item/clothing/suit/hooded/techpriest = 2) refill_canister = /obj/item/vending_refill/wardrobe/robo_wardrobe payment_department = ACCOUNT_SCI diff --git a/icons/mob/clothing/uniform.dmi b/icons/mob/clothing/uniform.dmi index 3d24a9addd..8d16ff9a62 100644 Binary files a/icons/mob/clothing/uniform.dmi and b/icons/mob/clothing/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 76f5722c8b..8b90eeb802 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ