diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 7d0ffcca5..a2c0e817e 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -16,6 +16,7 @@ /obj/item/clothing/suit/jacket/flannel/brown = 4, /obj/item/clothing/suit/jacket/puffer/vest = 4, /obj/item/clothing/suit/jacket/puffer = 4, + /obj/item/clothing/under/polychromic/flannel = 4, /obj/item/clothing/under/suit_jacket/navy = 3, /obj/item/clothing/under/suit_jacket/really_black = 3, /obj/item/clothing/under/suit_jacket/burgundy = 3, diff --git a/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm b/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm index a91e5b818..2e3a5ecb0 100644 --- a/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm +++ b/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm @@ -88,7 +88,7 @@ primary_color = "#353535" //RGB in hexcode secondary_color = "#808080" tertiary_color = "#808080" - body_parts_covered = CHEST|GROIN|ARMS + body_parts_covered = CHEST|GROIN|ARMS //why do shorts protect your arms and chest anyway? ~VF 2021 /obj/item/clothing/under/polychromic/jumpsuit name = "polychromic tri-tone jumpsuit" @@ -236,4 +236,15 @@ secondary_color = "#eb7a7a" tertiary_color = "#ffffff" body_parts_covered = CHEST|GROIN - do_not_cover_butt = TRUE \ No newline at end of file + do_not_cover_butt = TRUE + +/obj/item/clothing/under/polychromic/flannel + name = "polychromic flannel" + desc = "A polychromatic 'dad shirt'." + icon_state = "polyflan" + item_color = "polyflan" + item_state = "rainbow" + primary_color = "#353535" //RGB in hexcode + secondary_color = "#808080" + tertiary_color = "#808080" + body_parts_covered = CHEST|GROIN|ARMS diff --git a/modular_citadel/icons/polyclothes/item/uniform.dmi b/modular_citadel/icons/polyclothes/item/uniform.dmi index 274a4a779..6f2a604ed 100644 Binary files a/modular_citadel/icons/polyclothes/item/uniform.dmi and b/modular_citadel/icons/polyclothes/item/uniform.dmi differ diff --git a/modular_citadel/icons/polyclothes/mob/uniform.dmi b/modular_citadel/icons/polyclothes/mob/uniform.dmi index 07d3b1aa2..31e2ef80b 100644 Binary files a/modular_citadel/icons/polyclothes/mob/uniform.dmi and b/modular_citadel/icons/polyclothes/mob/uniform.dmi differ