diff --git a/code/modules/clothing/gimmick.dm b/code/modules/clothing/gimmick.dm index 09215988312..d16f201fcc4 100644 --- a/code/modules/clothing/gimmick.dm +++ b/code/modules/clothing/gimmick.dm @@ -710,3 +710,59 @@ obj/item/clothing/suit/justice icon_state = "creamsuit" item_state = "creamsuit" flags = FPRINT | TABLEPASS + + +/obj/item/clothing/under/wedding/bride_orange + name = "orange wedding dress" + desc = "A big and puffy orange dress." + icon_state = "bride_orange" + item_state = "creamsuit" + color = "bride_orange" + flags_inv = HIDESHOES + +/obj/item/clothing/under/wedding/bridesmaid + name = "yellow dress" + desc = "A big and puffy orange dress." + icon_state = "bridesmaid" + item_state = "creamsuit" + color = "bridesmaid" + +/obj/item/clothing/under/wedding/firedress + name = "flaming hot black dress" + desc = "A small black dress with blue flames print on it." + icon_state = "dress_fire" + item_state = "creamsuit" + color = "dress_fire" + +/obj/item/clothing/under/wedding/orangedress + name = "orange dress" + desc = "A small and not puffy orange dress." + icon_state = "dress_orange" + item_state = "creamsuit" + color = "dress_orange" + + flags_inv = HIDESHOES + +/obj/item/clothing/under/stripper/stripper_pink + name = "pink swimsuit" + desc = "A rather skimpy pink swimsuit." + icon_state = "stripper_p_under" + color = "stripper_p" + +/obj/item/clothing/under/stripper/stripper_green + name = "green swimsuit" + desc = "A rather skimpy green swimsuit." + icon_state = "stripper_g_under" + color = "stripper_g" + +/obj/item/clothing/suit/stripper/stripper_pink + name = "pink skimpy dress" + desc = "A rather skimpy pink dress." + icon_state = "stripper_p_over" + item_state = "stripper_p" + +/obj/item/clothing/suit/stripper/stripper_green + name = "green skimpy dress" + desc = "A rather skimpy green dress." + icon_state = "stripper_g_over" + item_state = "stripper_g" \ No newline at end of file diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 5989fd8e6f4..62fb5753e59 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 139ee6b04ef..ad2fc075a4f 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index a62bdc3130b..e75c4b02ad9 100755 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index d5a6aa6004a..65d10020090 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ