diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index bfbcb99f..0da41de0 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -826,3 +826,23 @@ item_state = "tuxedo" mutantrace_variation = NO_MUTANTRACE_VARIATION //temporary can_adjust = FALSE + +//Cyberpunk PI Costume - Sprites from Eris, slightly modified +/obj/item/clothing/under/cyberpunksleek + name = "modern sweater" + desc = "A modern-styled sweater typically worn on more urban planets, made with a neo-laminated fiber lining." + icon_state = "cyberpunksleek" + item_state = "cyberpunksleek" + item_color = "cyberpunksleek" + body_parts_covered = CHEST|GROIN|ARMS|LEGS + can_adjust = FALSE + +/obj/item/clothing/under/costume/cyberpunksleek/long + name = "long modern sweater" + desc = "A long modern-styled sweater typically worn on more urban planets, made with a neo-laminated fiber lining." + icon_state = "cyberpunksleek_long" + item_state = "cyberpunksleek_long" + item_color = "cyberpunksleek_long" + body_parts_covered = CHEST|GROIN|ARMS|LEGS + can_adjust = FALSE +//End Cyberpunk PI port diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index aea057c9..ff6fa0e2 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 77786b9d..95eea9dd 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index 9653ce8a..897d642f 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -198,6 +198,16 @@ category = SLOT_W_UNIFORM path = /obj/item/clothing/under/syndicate/cosmetic +/datum/gear/cyberpunksleek + name = "modern sweater" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/cyberpunksleek + +/datum/gear/cyberpunksleek/long + name = "long modern sweater" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/costume/cyberpunksleek/long + /datum/gear/creamsweater name = "Cream Commando Sweater" category = SLOT_W_UNIFORM diff --git a/modular_citadel/icons/mob/uniform_digi.dmi b/modular_citadel/icons/mob/uniform_digi.dmi index dbf0161f..0ddbc821 100644 Binary files a/modular_citadel/icons/mob/uniform_digi.dmi and b/modular_citadel/icons/mob/uniform_digi.dmi differ