diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 69a0165bc..0a3044a6f 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -111,6 +111,7 @@ /obj/item/clothing/suit/toggle/jacket_white = 3, /obj/item/clothing/suit/jacket/letterman_red = 3, /obj/item/clothing/suit/fluffyhalfcrop = 3, + /obj/item/clothing/under/officesexy = 3, /obj/item/clothing/ears/headphones = 10, /obj/item/clothing/suit/apron/purple_bartender = 4, /obj/item/clothing/under/rank/bartender/purple = 4, diff --git a/hyperstation/code/obj/kinkyclothes.dm b/hyperstation/code/obj/kinkyclothes.dm index 9ea2c72bf..8f02c482e 100644 --- a/hyperstation/code/obj/kinkyclothes.dm +++ b/hyperstation/code/obj/kinkyclothes.dm @@ -137,4 +137,16 @@ obj/item/clothing/neck/stole/black icon_state = "raccveralls" alternate_worn_icon = 'hyperstation/icons/mobs/uniforms.dmi' item_state = "raccveralls" - can_adjust = FALSE \ No newline at end of file + can_adjust = FALSE + +/obj/item/clothing/under/officesexy + name = "Revealing office uniform" + desc = "A sexy office uniform, that has a low cropped front to show off some chest, or bra. And a tall dress that covers the stomach, complete with a set of buttons." + icon = 'hyperstation/icons/obj/clothing/uniforms.dmi' + icon_state = "office_revealing" + alternate_worn_icon = 'hyperstation/icons/mobs/uniforms.dmi' + item_state = "office_revealing" + can_adjust = FALSE + mutantrace_variation = NO_MUTANTRACE_VARIATION + + diff --git a/hyperstation/icons/mob/clothes/extra.dmi b/hyperstation/icons/mob/clothes/extra.dmi index be95878b8..8f3745ff7 100644 Binary files a/hyperstation/icons/mob/clothes/extra.dmi and b/hyperstation/icons/mob/clothes/extra.dmi differ diff --git a/hyperstation/icons/mobs/uniforms.dmi b/hyperstation/icons/mobs/uniforms.dmi index 89868e8c4..4c545feea 100644 Binary files a/hyperstation/icons/mobs/uniforms.dmi and b/hyperstation/icons/mobs/uniforms.dmi differ diff --git a/hyperstation/icons/obj/clothing/uniforms.dmi b/hyperstation/icons/obj/clothing/uniforms.dmi index c902de978..36af5788c 100644 Binary files a/hyperstation/icons/obj/clothing/uniforms.dmi and b/hyperstation/icons/obj/clothing/uniforms.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index df09470ef..88c40e85f 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -529,4 +529,10 @@ name = "form fitting overalls" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/raccveralls + cost = 1 + +/datum/gear/sexyoffice + name = "Revealing office uniform" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/officesexy cost = 1 \ No newline at end of file