diff --git a/code/modules/vending/autodrobe.dm b/code/modules/vending/autodrobe.dm index e53d8a471..2dbaf5394 100644 --- a/code/modules/vending/autodrobe.dm +++ b/code/modules/vending/autodrobe.dm @@ -111,7 +111,8 @@ /obj/item/clothing/ears/headphones = 2, /obj/item/clothing/head/wig/random = 3, /obj/item/clothing/suit/ran = 2, - /obj/item/clothing/head/ran = 2) + /obj/item/clothing/head/ran = 2, + /obj/item/clothing/under/vaultsuit = 3) contraband = list(/obj/item/clothing/suit/judgerobe = 1, /obj/item/clothing/head/powdered_wig = 1, /obj/item/gun/magic/wand = 2, diff --git a/hyperstation/code/obj/kinkyclothes.dm b/hyperstation/code/obj/kinkyclothes.dm index 8f02c482e..ae2b40fdd 100644 --- a/hyperstation/code/obj/kinkyclothes.dm +++ b/hyperstation/code/obj/kinkyclothes.dm @@ -149,4 +149,11 @@ obj/item/clothing/neck/stole/black can_adjust = FALSE mutantrace_variation = NO_MUTANTRACE_VARIATION - +/obj/item/clothing/under/vaultsuit + name = "vault suit" + desc = "A tight form fitting Vault-Tec standard issue Vault Jumpsuit! Snazzy!" + icon = 'hyperstation/icons/obj/clothing/uniforms.dmi' + icon_state = "vaultsuit" + alternate_worn_icon = 'hyperstation/icons/mobs/uniforms.dmi' + item_state = "b_suit" + can_adjust = FALSE \ No newline at end of file diff --git a/hyperstation/icons/mob/clothes/extra.dmi b/hyperstation/icons/mob/clothes/extra.dmi index 8f3745ff7..1decf972d 100644 Binary files a/hyperstation/icons/mob/clothes/extra.dmi and b/hyperstation/icons/mob/clothes/extra.dmi differ diff --git a/hyperstation/icons/obj/clothing/uniforms.dmi b/hyperstation/icons/obj/clothing/uniforms.dmi index 36af5788c..ec1fe01f9 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 88c40e85f..487aa5032 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -535,4 +535,10 @@ name = "Revealing office uniform" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/officesexy + cost = 1 + +/datum/gear/overalls + name = "vaultsuit" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/vaultsuit cost = 1 \ No newline at end of file diff --git a/modular_citadel/icons/mob/uniform_digi.dmi b/modular_citadel/icons/mob/uniform_digi.dmi index 09a7af2a3..221688ec0 100644 Binary files a/modular_citadel/icons/mob/uniform_digi.dmi and b/modular_citadel/icons/mob/uniform_digi.dmi differ