diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 1a4b493f044..51e99af2b62 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -513,6 +513,11 @@ desc = "For when you're stepping on up to the plate." icon_state = "JackFrostShoes" inhand_icon_state = "JackFrostShoes_worn" +/obj/item/clothing/shoes/swagshoes + name = "swag shoes" + desc = "They got me for my foams!" + icon_state = "SwagShoes" + inhand_icon_state = "SwagShoes" /obj/item/clothing/shoes/gunboots //admin boots that fire gunshots randomly while walking name = "gunboots" diff --git a/code/modules/clothing/under/costume.dm b/code/modules/clothing/under/costume.dm index f13b35333be..069cf03cf06 100644 --- a/code/modules/clothing/under/costume.dm +++ b/code/modules/clothing/under/costume.dm @@ -274,3 +274,9 @@ icon_state = "DutchUniform" inhand_icon_state = "DutchUniform" can_adjust = FALSE +/obj/item/clothing/under/costume/swagoutfit + name = "Swag outfit" + desc = "Why don't you go secure some bitches?" + icon_state = "SwagOutfit" + inhand_icon_state = "SwagOutfit" + can_adjust = FALSE diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index ac9d3933506..5bc08b073e2 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -128,6 +128,8 @@ /obj/item/clothing/under/pants/mustangjeans = 1, /obj/item/clothing/neck/necklace/dope = 3, /obj/item/clothing/suit/jacket/letterman_nanotrasen = 1, + /obj/item/clothing/under/costume/swagoutfit = 1, + /obj/item/clothing/shoes/swagshoes = 1, /obj/item/instrument/piano_synth/headphones/spacepods = 1) refill_canister = /obj/item/vending_refill/clothing default_price = PAYCHECK_ASSISTANT * 0.7 //Default of diff --git a/icons/mob/clothing/feet.dmi b/icons/mob/clothing/feet.dmi index c6f09b7840c..b9be2508f3b 100644 Binary files a/icons/mob/clothing/feet.dmi and b/icons/mob/clothing/feet.dmi differ diff --git a/icons/mob/clothing/under/costume.dmi b/icons/mob/clothing/under/costume.dmi index 53913f1f3cd..612100da7a0 100644 Binary files a/icons/mob/clothing/under/costume.dmi and b/icons/mob/clothing/under/costume.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 19b6e8d5b65..e9af893af6d 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/icons/obj/clothing/under/costume.dmi b/icons/obj/clothing/under/costume.dmi index 1793e6b4564..91a83560e8d 100644 Binary files a/icons/obj/clothing/under/costume.dmi and b/icons/obj/clothing/under/costume.dmi differ