diff --git a/code/_helpers/lists.dm~1fb83e6... Merge pull request #5959 from elgeonmb_suit++ b/code/_helpers/lists.dm~1fb83e6... Merge pull request #5959 from elgeonmb_suit++ new file mode 100644 index 00000000000..e69de29bb2d diff --git a/code/game/objects/effects/temporary_visuals/temproary_visual.dm~1fb83e6... Merge pull request #5959 from elgeonmb_suit++ b/code/game/objects/effects/temporary_visuals/temproary_visual.dm~1fb83e6... Merge pull request #5959 from elgeonmb_suit++ new file mode 100644 index 00000000000..e69de29bb2d diff --git a/code/modules/clothing/spacesuits/void/zaddat.dm b/code/modules/clothing/spacesuits/void/zaddat.dm index 4fd1fde4be0..cbf08d8c71b 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") + suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged") switch(suit_style) if("Engineer") name = "\improper Engineer's Guild Shroud" @@ -90,6 +90,16 @@ helmet.desc = "The Shroud helmet that inspired a dozen lawsuits." helmet.icon_state = "zaddat_bishop" helmet.item_state = "zaddat_bishop" + if("Rugged") + name = "rugged Shroud" + desc = "This Shroud was patterned after from First Contact era human voidsuits." + icon_state = "zaddat_rugged" + item_state = "zaddat_rugged" + if(helmet) + helmet.name = "rugged Shroud helmet" + 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" to_chat(M, "You finish customizing your Shroud. Looking good!") has_been_customized = TRUE