diff --git a/code/modules/clothing/spacesuits/void/zaddat.dm b/code/modules/clothing/spacesuits/void/zaddat.dm index 103cf39c12..3162265e54 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") + suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged", "Soft") switch(suit_style) if("Engineer") name = "\improper Engineer's Guild Shroud" @@ -106,6 +106,17 @@ helmet.desc = "Supposedly, this helmet should make humans more comfortable and familiar with the Zaddat." helmet.icon_state = "zaddat_rugged" helmet.item_state = "zaddat_rugged" + if("Soft") + name = "\improper soft Shroud" + base_name = "\improper soft Shroud" + desc = "Material and design is chosen for practical reasons, making it take as little space as possible when stowed whilst also providing reasonable comfort when worn for long periods." + icon_state = "zaddat_soft" + item_state = "zaddat_soft" + if(helmet) + helmet.name = "\improper soft Shroud hood" + helmet.desc = "Not as solid as a proper helmet, but works nonetheless." + helmet.icon_state = "zaddat_soft" + helmet.item_state = "zaddat_soft" 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 f5eba71f08..3dd2c190b7 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 10953bd651..504a947b22 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 86e1e7945a..f913a4381b 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 a2ea4f7775..bffef09846 100644 Binary files a/icons/obj/clothing/spacesuits.dmi and b/icons/obj/clothing/spacesuits.dmi differ