diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 8bcebe8047f..2b9775f23d8 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -131,11 +131,27 @@ body_parts_covered = SLOT_UPPER_BODY|SLOT_LOWER_BODY|SLOT_ARMS /obj/item/clothing/under/schoolgirl - name = "schoolgirl uniform" + name = "blue schoolgirl uniform" desc = "It's just like one of my Japanese animes!" icon = 'icons/clothing/under/uniform_schoolgirl.dmi' body_parts_covered = SLOT_UPPER_BODY|SLOT_LOWER_BODY +/obj/item/clothing/under/schoolgirl/red + name = "red schoolgirl uniform" + icon = 'icons/clothing/under/uniform_schoolgirl_red.dmi' + +/obj/item/clothing/under/schoolgirl/yellow + name = "yellow schoolgirl uniform" + icon = 'icons/clothing/under/uniform_schoolgirl_yellow.dmi' + +/obj/item/clothing/under/schoolgirl/green + name = "green schoolgirl uniform" + icon = 'icons/clothing/under/uniform_schoolgirl_green.dmi' + +/obj/item/clothing/under/schoolgirl/pink + name = "pink schoolgirl uniform" + icon = 'icons/clothing/under/uniform_schoolgirl_pink.dmi' + /obj/item/clothing/under/overalls name = "laborer's overalls" desc = "A set of durable overalls for getting the job done." diff --git a/icons/clothing/under/uniform_schoolgirl.dmi b/icons/clothing/under/uniform_schoolgirl.dmi index b9eb876e54b..3292aa2d114 100644 Binary files a/icons/clothing/under/uniform_schoolgirl.dmi and b/icons/clothing/under/uniform_schoolgirl.dmi differ diff --git a/icons/clothing/under/uniform_schoolgirl_green.dmi b/icons/clothing/under/uniform_schoolgirl_green.dmi new file mode 100644 index 00000000000..eba9fa1044a Binary files /dev/null and b/icons/clothing/under/uniform_schoolgirl_green.dmi differ diff --git a/icons/clothing/under/uniform_schoolgirl_pink.dmi b/icons/clothing/under/uniform_schoolgirl_pink.dmi new file mode 100644 index 00000000000..487a09e78c9 Binary files /dev/null and b/icons/clothing/under/uniform_schoolgirl_pink.dmi differ diff --git a/icons/clothing/under/uniform_schoolgirl_red.dmi b/icons/clothing/under/uniform_schoolgirl_red.dmi new file mode 100644 index 00000000000..fd749652890 Binary files /dev/null and b/icons/clothing/under/uniform_schoolgirl_red.dmi differ diff --git a/icons/clothing/under/uniform_schoolgirl_yellow.dmi b/icons/clothing/under/uniform_schoolgirl_yellow.dmi new file mode 100644 index 00000000000..6e5b8d40f35 Binary files /dev/null and b/icons/clothing/under/uniform_schoolgirl_yellow.dmi differ