diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 8091e1f63e9..206402a4360 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -504,7 +504,33 @@ attack_verb = list("warned", "cautioned", "smashed") armor = list("melee" = 5, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) +/obj/item/clothing/suit/changshan_red + name = "red changshan" + desc = "A gorgeously embroidered silk shirt." + icon_state = "changshan_red" + item_state = "changshan_red" + body_parts_covered = CHEST|GROIN|ARMS|LEGS +/obj/item/clothing/suit/changshan_blue + name = "blue changshan" + desc = "A gorgeously embroidered silk shirt." + icon_state = "changshan_blue" + item_state = "changshan_blue" + body_parts_covered = CHEST|GROIN|ARMS|LEGS + +/obj/item/clothing/suit/cheongsam_red + name = "red cheongsam" + desc = "A gorgeously embroidered silk dress." + icon_state = "cheongsam_red" + item_state = "cheongsam_red" + body_parts_covered = CHEST|GROIN|ARMS|LEGS + +/obj/item/clothing/suit/cheongsam_blue + name = "blue cheongsam" + desc = "A gorgeously embroidered silk dress." + icon_state = "cheongsam_blue" + item_state = "cheongsam_blue" + body_parts_covered = CHEST|GROIN|ARMS|LEGS // WINTER COATS diff --git a/code/modules/vending/autodrobe.dm b/code/modules/vending/autodrobe.dm index 5de273285be..d75c4426559 100644 --- a/code/modules/vending/autodrobe.dm +++ b/code/modules/vending/autodrobe.dm @@ -119,6 +119,10 @@ /obj/item/clothing/head/wig/random = 3, /obj/item/clothing/head/shrine_wig = 1, /obj/item/clothing/suit/shrine_maiden = 1, + /obj/item/clothing/suit/changshan_red = 1, + /obj/item/clothing/suit/changshan_blue = 1, + /obj/item/clothing/suit/cheongsam_red = 1, + /obj/item/clothing/suit/cheongsam_blue = 1, /obj/item/gohei = 1) contraband = list(/obj/item/clothing/suit/judgerobe = 1, /obj/item/clothing/head/powdered_wig = 1, diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index 7ed1cc720ab..009c8413048 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 03ba2336719..78d47339cff 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ