diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index e0b62d5464f53..6f40c3ab46186 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -372,3 +372,9 @@ message = replacetextEx(message,regex(capitalize(key),"g"), "[capitalize(value)]") message = replacetextEx(message,regex(key,"g"), "[value]") speech_args[SPEECH_MESSAGE] = trim(message) + +/obj/item/clothing/mask/supervillain//https://www.youtube.com/watch?v=gSJeHDlhYls + name = "SUPER VILLAIN mask" + desc = "ALL CAPS when you spell the man's name." + icon_state = "VILLAIN" + item_state = "VILLAIN" diff --git a/code/modules/clothing/suits/jacket.dm b/code/modules/clothing/suits/jacket.dm index 63709a5f038af..c30c60923349f 100644 --- a/code/modules/clothing/suits/jacket.dm +++ b/code/modules/clothing/suits/jacket.dm @@ -108,3 +108,9 @@ desc = "A fancy coat made of silk. This one is blue." icon_state = "aristo_blue" item_state = "aristo_blue" + +/obj/item/clothing/suit/jacket/underground_serpents//https://www.youtube.com/watch?v=S0ximxe4XtU& + name = "underground serpents jacket" + desc = "Underground Serpents Rule! We are the Undeground Serpents. That's us, and we rule!" + icon_state = "underground_serpents_jacket" + item_state = "underground_serpents_jacket" diff --git a/code/modules/vending/autodrobe.dm b/code/modules/vending/autodrobe.dm index 02ee147f39998..e6b915b4a26a8 100644 --- a/code/modules/vending/autodrobe.dm +++ b/code/modules/vending/autodrobe.dm @@ -68,6 +68,8 @@ /obj/item/clothing/under/costume/griffin = 1, /obj/item/clothing/shoes/griffin = 1, /obj/item/clothing/head/costume/griffin = 1, + /obj/item/clothing/mask/supervillain = 1, + /obj/item/clothing/suit/jacket/underground_serpents = 1, /obj/item/clothing/suit/apron = 1, /obj/item/clothing/under/suit/waiter = 1, /obj/item/clothing/suit/jacket/miljacket = 1, diff --git a/icons/mob/clothing/mask.dmi b/icons/mob/clothing/mask.dmi index b5514e6cadfdc..4dde54cd0a883 100644 Binary files a/icons/mob/clothing/mask.dmi and b/icons/mob/clothing/mask.dmi differ diff --git a/icons/mob/clothing/suits/jacket.dmi b/icons/mob/clothing/suits/jacket.dmi index bcf9b96e33bc9..ea4452ea87e3c 100644 Binary files a/icons/mob/clothing/suits/jacket.dmi and b/icons/mob/clothing/suits/jacket.dmi differ diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index 13f977d2e0a16..0b54e82017484 100644 Binary files a/icons/obj/clothing/masks.dmi and b/icons/obj/clothing/masks.dmi differ diff --git a/icons/obj/clothing/suits/jacket.dmi b/icons/obj/clothing/suits/jacket.dmi index 5c29196f54839..a460233681331 100644 Binary files a/icons/obj/clothing/suits/jacket.dmi and b/icons/obj/clothing/suits/jacket.dmi differ