diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 8c85f414e6..0832104195 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -732,3 +732,35 @@ fitted = NO_FEMALE_UNIFORM can_adjust = FALSE resistance_flags = NONE + +/obj/item/clothing/under/swimsuit + name = "black swimsuit" + desc = "Perfect for the beach episode." + icon_state = "swim_black" + item_state = "bl_suit" + item_color = "swim_black" + can_adjust = FALSE + +/obj/item/clothing/under/swimsuit/blue + name = "blue swimsuit" + icon_state = "swim_blue" + item_state = "b_suit" + item_color = "swim_blue" + +/obj/item/clothing/under/swimsuit/green + name = "green swimsuit" + icon_state = "swim_green" + item_state = "g_suit" + item_color = "swim_green" + +/obj/item/clothing/under/swimsuit/purple + name = "purple swimsuit" + icon_state = "swim_purple" + item_state = "p_suit" + item_color = "swim_purple" + +/obj/item/clothing/under/swimsuit/red + name = "red swimsuit" + icon_state = "swim_red" + item_state = "r_suit" + item_color = "swim_red" \ No newline at end of file diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 23541a8e40..c83a82b1bd 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index c6f6798076..38d97e0440 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ