diff --git a/code/modules/clothing/under/pants.dm b/code/modules/clothing/under/pants.dm index a76bf41e62..004a1f2374 100644 --- a/code/modules/clothing/under/pants.dm +++ b/code/modules/clothing/under/pants.dm @@ -46,7 +46,7 @@ desc = "Some tan pants. You look like a white collar worker with these on." icon_state = "tanpants" -/obj/item/clothing/under/pants/polypants/polychromic +/obj/item/clothing/under/pants/polypants name = "polychromic pants" desc = "Some stylish pair of pants made from polychrome." icon_state = "polypants" diff --git a/code/modules/clothing/under/shorts.dm b/code/modules/clothing/under/shorts.dm index 426e0e28d9..910af84f1f 100644 --- a/code/modules/clothing/under/shorts.dm +++ b/code/modules/clothing/under/shorts.dm @@ -43,6 +43,13 @@ . = ..() AddElement(/datum/element/polychromic, poly_colors, 2) +/obj/item/clothing/under/shorts/polychromic/polyworkout + name = "polychromatic workout shorts" + desc = "Unnaturally scanty and provocative for anyone with a posterior larger than your average malnourished station secretary." + icon_state = "workout" + item_state = "rainbow" + poly_colors = list("#323232", "#FFFFFF") + /obj/item/clothing/under/shorts/polychromic/pantsu name = "polychromic panties" desc = "Topless striped panties. Now with 120% more polychrome!" @@ -50,5 +57,4 @@ item_state = "rainbow" body_parts_covered = GROIN mutantrace_variation = STYLE_DIGITIGRADE|STYLE_NO_ANTHRO_ICON - poly_colors = list("#FFFFFF", "#8CC6FF") diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 67c376bb98..5551152b85 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -68,7 +68,8 @@ /obj/item/clothing/under/pants/black = 4, /obj/item/clothing/under/pants/tan = 4, /obj/item/clothing/under/pants/track = 3, - /obj/item/clothing/under/pants/polypants/polychromic = 4, + /obj/item/clothing/under/pants/polypants = 4, + /obj/item/clothing/under/shorts/polychromic/polyworkout = 4, /obj/item/clothing/accessory/suitjacket = 2, /obj/item/clothing/accessory/suitjacket/charcoal = 2, /obj/item/clothing/accessory/suitjacket/navy = 2, diff --git a/icons/mob/clothing/uniform.dmi b/icons/mob/clothing/uniform.dmi index ce25963360..32018b117a 100644 Binary files a/icons/mob/clothing/uniform.dmi and b/icons/mob/clothing/uniform.dmi differ diff --git a/icons/mob/clothing/uniform_digi.dmi b/icons/mob/clothing/uniform_digi.dmi index 9c220466b4..12b12301d9 100644 Binary files a/icons/mob/clothing/uniform_digi.dmi and b/icons/mob/clothing/uniform_digi.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index de7dd234b1..77c1f1211e 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/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 d70d3d4fa1..7f922876f5 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -172,11 +172,18 @@ /datum/gear/uniform/pants/polypants name = "Polychromic Pants" - path = /obj/item/clothing/under/pants/polypants/polychromic + path = /obj/item/clothing/under/pants/polypants cost = 2 loadout_flags = LOADOUT_CAN_NAME | LOADOUT_CAN_DESCRIPTION | LOADOUT_CAN_COLOR_POLYCHROMIC loadout_initial_colors = list("#75634F", "#3D3D3D", "#575757") +/datum/gear/uniform/pants/workout + name = "Polychromatic Workout Shorts" + path = /obj/item/clothing/under/shorts/polychromic/polyworkout + cost = 2 + loadout_flags = LOADOUT_CAN_NAME | LOADOUT_CAN_DESCRIPTION | LOADOUT_CAN_COLOR_POLYCHROMIC + loadout_initial_colors = list("#323232", "#FFFFFF") + /datum/gear/uniform/pants/track name = "Track Pants" path = /obj/item/clothing/under/pants/track