diff --git a/code/game/objects/structures/crates_lockers/closets/fitness.dm b/code/game/objects/structures/crates_lockers/closets/fitness.dm index 1aec0343fd..182a9aa84c 100644 --- a/code/game/objects/structures/crates_lockers/closets/fitness.dm +++ b/code/game/objects/structures/crates_lockers/closets/fitness.dm @@ -12,6 +12,11 @@ new /obj/item/clothing/under/shorts/red(src) new /obj/item/clothing/under/shorts/blue(src) new /obj/item/clothing/under/shorts/green(src) + new /obj/item/clothing/under/swimsuit/red(src) + new /obj/item/clothing/under/swimsuit/black(src) + new /obj/item/clothing/under/swimsuit/blue(src) + new /obj/item/clothing/under/swimsuit/green(src) + new /obj/item/clothing/under/swimsuit/purple(src) /obj/structure/closet/boxinggloves diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 828b9387c4..8118f4400a 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -16,6 +16,7 @@ else new /obj/item/weapon/storage/backpack/satchel_cap(src) new /obj/item/clothing/suit/captunic(src) + new /obj/item/clothing/suit/captunic/trek(src) new /obj/item/clothing/head/helmet/cap(src) new /obj/item/clothing/under/rank/captain(src) new /obj/item/clothing/suit/armor/vest(src) @@ -27,6 +28,7 @@ new /obj/item/weapon/gun/energy/gun(src) new /obj/item/clothing/suit/armor/captain(src) new /obj/item/weapon/melee/telebaton(src) + new /obj/item/clothing/under/dress/dress_cap(src) return @@ -55,6 +57,7 @@ new /obj/item/weapon/gun/energy/gun(src) new /obj/item/device/flash(src) new /obj/item/clothing/glasses/sunglasses(src) + new /obj/item/clothing/under/dress/dress_hop(src) return diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 568923fc8d..19bb098b4f 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -7,6 +7,13 @@ flags = FPRINT|TABLEPASS item_state = "centhat" +/obj/item/clothing/head/hairflower + name = "hair flower pin" + icon_state = "hairflower" + desc = "Smells nice." + item_state = "hairflower" + flags = FPRINT|TABLEPASS + /obj/item/clothing/head/powdered_wig name = "powdered wig" desc = "A powdered wig." diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm index 4edc78a46e..4ad3d51ffb 100644 --- a/code/modules/clothing/shoes/colour.dm +++ b/code/modules/clothing/shoes/colour.dm @@ -68,6 +68,12 @@ permeability_coefficient = 0.01 color = "white" +/obj/item/clothing/shoes/leather + name = "leather shoes" + desc = "A sturdy pair of leather shoes." + icon_state = "leather" + color = "leather" + /obj/item/clothing/shoes/rainbow name = "rainbow shoes" desc = "Very gay shoes." diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index a5550e132a..9365176417 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -21,6 +21,11 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS flags_inv = HIDEJUMPSUIT +/obj/item/clothing/suit/captunic/trek + name = "captain's uniform jacket" + desc = "A less formal jacket for everyday captain use." + icon_state = "capjacket" + //Chaplain /obj/item/clothing/suit/chaplain_hoodie name = "chaplain hoodie" diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 23b5890333..0029cca694 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -287,6 +287,13 @@ desc = "A rather skimpy green dress." icon_state = "stripper_g_over" item_state = "stripper_g" + +/obj/item/clothing/under/stripper/mankini + name = "the mankini" + desc = "No honest man would wear this abomination" + icon_state = "mankini" + color = "mankini" + /obj/item/clothing/suit/xenos name = "xenos suit" desc = "A suit made out of chitinous alien hide." @@ -294,3 +301,35 @@ item_state = "xenos_helm" body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS|HANDS flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT + +//swimsuit + +/obj/item/clothing/under/swimsuit/black + name = "black swimsuit" + desc = "An oldfashioned black swimsuit." + icon_state = "swim_black" + color = "swim_black" + +/obj/item/clothing/under/swimsuit/blue + name = "blue swimsuit" + desc = "An oldfashioned blue swimsuit." + icon_state = "swim_blue" + color = "swim_blue" + +/obj/item/clothing/under/swimsuit/purple + name = "purple swimsuit" + desc = "An oldfashioned purple swimsuit." + icon_state = "swim_purp" + color = "swim_purp" + +/obj/item/clothing/under/swimsuit/green + name = "green swimsuit" + desc = "An oldfashioned green swimsuit." + icon_state = "swim_green" + color = "swim_green" + +/obj/item/clothing/under/swimsuit/red + name = "red swimsuit" + desc = "An oldfashioned red swimsuit." + icon_state = "swim_red" + color = "swim_red" diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index c410d66ec3..91ad33c20d 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -12,6 +12,13 @@ color = "blue_pyjamas" item_state = "w_suit" +/obj/item/clothing/under/captain_fly + name = "rogue captains uniform" + desc = "For the man who doesn't care because he's still free." + icon_state = "captain_fly" + item_state = "captain_fly" + color = "captain_fly" + /obj/item/clothing/under/scratch name = "white suit" desc = "A white suit, suitable for an excellent host" @@ -232,70 +239,116 @@ color = "gladiator" body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS +//dress + +/obj/item/clothing/under/dress/dress_fire + name = "flame dress" + desc = "A small black dress with blue flames print on it." + icon_state = "dress_fire" + color = "dress_fire" + +/obj/item/clothing/under/dress/dress_green + name = "green dress" + desc = "A simple, tight fitting green dress." + icon_state = "dress_green" + color = "dress_green" + +/obj/item/clothing/under/dress/dress_orange + name = "orange dress" + desc = "A fancy orange gown for those who like to show leg." + icon_state = "dress_orange" + color = "dress_orange" + +/obj/item/clothing/under/dress/dress_pink + name = "pink dress" + desc = "A simple, tight fitting pink dress." + icon_state = "dress_pink" + color = "dress_pink" + +/obj/item/clothing/under/dress/dress_yellow + name = "yellow dress" + desc = "A flirty, little yellow dress." + icon_state = "dress_yellow" + color = "dress_yellow" + +/obj/item/clothing/under/dress/dress_saloon + name = "saloon girl dress" + desc = "A old western inspired gown for the girl who likes to drink." + icon_state = "dress_saloon" + color = "dress_saloon" + +/obj/item/clothing/under/dress/dress_rd + name = "research director dress uniform" + desc = "Feminine fashion for the style concious RD." + icon_state = "dress_rd" + color = "dress_rd" + +/obj/item/clothing/under/dress/dress_cap + name = "captain dress uniform" + desc = "Feminine fashion for the style concious captain." + icon_state = "dress_cap" + color = "dress_cap" + +/obj/item/clothing/under/dress/dress_hop + name = "head of personal dress uniform" + desc = "Feminine fashion for the style concious HoP." + icon_state = "dress_hop" + color = "dress_hop" + +/obj/item/clothing/under/dress/plaid_blue + name = "blue plaid skirt" + desc = "A preppy blue skirt with a white blouse." + icon_state = "plaid_blue" + color = "plaid_blue" + +/obj/item/clothing/under/dress/plaid_red + name = "red plaid skirt" + desc = "A preppy red skirt with a white blouse." + icon_state = "plaid_red" + color = "plaid_red" + +/obj/item/clothing/under/dress/plaid_purple + name = "blue purple skirt" + desc = "A preppy purple skirt with a white blouse." + icon_state = "plaid_purple" + color = "plaid_purple" + //wedding stuff + /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/suit_white - name = "white suit" - desc = "A fabulous white suit with orange shirt." - icon_state = "white_suit" - item_state = "creamsuit" - color = "white_suit" +/obj/item/clothing/under/wedding/bride_purple + name = "purple wedding dress" + desc = "A big and puffy purple dress." + icon_state = "bride_purple" + color = "bride_purple" + 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/bride_blue + name = "blue wedding dress" + desc = "A big and puffy blue dress." + icon_state = "bride_blue" + color = "bride_blue" + flags_inv = HIDESHOES -/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/bride_red + name = "red wedding dress" + desc = "A big and puffy red dress." + icon_state = "bride_red" + color = "bride_red" + flags_inv = HIDESHOES -/obj/item/clothing/under/wedding/dress_orange - name = "orange dress" - icon_state = "d_orange" - color = "d_orange" - -/obj/item/clothing/under/wedding/dress_green - name = "green dress" - icon_state = "d_green" - color = "d_green" - -/obj/item/clothing/under/wedding/dress_purple - name = "purple dress" - icon_state = "d_purple" - color = "d_purple" - -/obj/item/clothing/under/wedding/dress_red - name = "red dress" - icon_state = "d_red" - color = "d_red" - -/obj/item/clothing/under/wedding/dress_blue - name = "blue dress" - icon_state = "d_blue" - color = "d_blue" - -/obj/item/clothing/under/wedding/officer_blue - name = "blue officer dress" - icon_state = "officer_blue" - color = "officer_blue" - -/obj/item/clothing/under/wedding/dress_vampire - name = "vampire dress" - icon_state = "d_vampire" - color = "d_vampire" +/obj/item/clothing/under/wedding/bride_white + name = "orange wedding dress" + desc = "A white wedding gown made from the finest silk." + icon_state = "bride_white" + color = "bride_white" + flags_inv = HIDESHOES /obj/item/clothing/under/sundress name = "sundress" diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index ee24377a23..81c7532304 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 5d93bf187c..f16c6daced 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 75e4dc8c9b..b0b72e0f1d 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 aa78fc1e3e..aaaa2a9593 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index f28943162b..cb35f8aa07 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 16f7270282..6134bd6068 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index db6f3dc461..42cb83fa37 100644 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 37a2054550..c23809c394 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ