diff --git a/code/modules/clothing/spacesuits/void/zaddat.dm b/code/modules/clothing/spacesuits/void/zaddat.dm index 65956b5c75..92f18ba0b0 100644 --- a/code/modules/clothing/spacesuits/void/zaddat.dm +++ b/code/modules/clothing/spacesuits/void/zaddat.dm @@ -38,7 +38,7 @@ to_chat(M, "This Shroud has already been customized!") return 0 - suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged", "Soft", "Ancient", "Healer", "Clockwork", "Retro") + suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged", "Soft", "Ancient", "Healer", "Clockwork", "Retro", "Retro - Pink") switch(suit_style) if("Engineer") name = "\improper Engineer's Guild Shroud" @@ -161,6 +161,18 @@ helmet.desc = "A classic design for the modern age." helmet.icon_state = "zaddat_retro" helmet.item_state = "zaddat_retro" + if("Retro - Pink") + name = "pink retro Shroud" + base_name = "pink retro Shroud" + desc = "In 2572, the Dzaz Fashion House released this hasty recolor of one of their Shroud designs shamelessly appropriated from human media to universal acclaim." + icon_state = "zaddat_retro_pink" + item_state = "zaddat_retro_pink" + if(helmet) + helmet.name = "pink retro Shroud helmet" + helmet.desc = "A classic design for the modern age. Now at least fifteen percent more feminine." + helmet.icon_state = "zaddat_retro_pink" + helmet.item_state = "zaddat_retro_pink" + to_chat(M, "You finish customizing your Shroud. Looking good!") has_been_customized = TRUE diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index c9874b4788..4ee1cc4987 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/spacesuit.dmi b/icons/mob/spacesuit.dmi index f340a96557..6bc935c5c9 100644 Binary files a/icons/mob/spacesuit.dmi and b/icons/mob/spacesuit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index e7d86e4f89..f38a54bd01 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/spacesuits.dmi b/icons/obj/clothing/spacesuits.dmi index 792e133423..22e7f3d509 100644 Binary files a/icons/obj/clothing/spacesuits.dmi and b/icons/obj/clothing/spacesuits.dmi differ