Skip to content

Commit

Permalink
Adds new dresses & skirts (Skyrat-SS13#22271)
Browse files Browse the repository at this point in the history
* all the stuff

* adds to loadout + linter fix

* empty states
  • Loading branch information
KathrinBailey authored Jul 11, 2023
1 parent c6ad905 commit f85dd46
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,35 @@
greyscale_config_worn = /datum/greyscale_config/pentagram_dress/worn
greyscale_colors = "#403c46"
flags_1 = IS_PLAYER_COLORABLE_1

/obj/item/clothing/under/dress/skyrat/jute
name = "Jacarta Dress"
desc = "A thick dress with a strong rough exterior layer; lined with a soft breathable thin layer. It's loose-fitting, and has a tag inside that says 'Made in Jacarta'."
icon_state = "jute"
body_parts_covered = CHEST|GROIN|LEGS
can_adjust = TRUE
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION

/obj/item/clothing/under/dress/skirt/skyrat/striped_skirt
name = "Striped Skirt"
desc = "A red side-slit skirt with stripes! Comes with a matching two-tone bra."
icon_state = "striped_skirt"
body_parts_covered = CHEST|GROIN|LEGS
can_adjust = TRUE
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION

/obj/item/clothing/under/dress/skirt/skyrat/red_skirt
name = "Red Skirt"
desc = "An eye-catching knee-length red skirt, with a golden-yellow trim, comes with a two-tone bra."
icon_state = "red_skirt"
body_parts_covered = CHEST|GROIN|LEGS
can_adjust = TRUE
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION

/obj/item/clothing/under/dress/skirt/skyrat/black_skirt
name = "Black Skirt"
desc = "A black side-slit skirt with a golden-yellow trim. Screams 'affluent goth'. Comes with a funky-looking matching bra."
icon_state = "black_skirt"
body_parts_covered = CHEST|GROIN|LEGS
can_adjust = TRUE
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,22 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/
name = "Recolorable Pentagram Strapped Dress"
item_path = /obj/item/clothing/under/dress/skyrat/pentagram

/datum/loadout_item/under/miscellaneous/jacarta_dress
name = "Jacarta Dress"
item_path = /obj/item/clothing/under/dress/skyrat/jute

/datum/loadout_item/under/miscellaneous/striped_skirt
name = "Red Striped Skirt"
item_path = /obj/item/clothing/under/dress/skirt/skyrat/striped_skirt

/datum/loadout_item/under/miscellaneous/red_skirt
name = "Red Skirt"
item_path = /obj/item/clothing/under/dress/skirt/skyrat/red_skirt

/datum/loadout_item/under/miscellaneous/black_skirt
name = "Black Skirt"
item_path = /obj/item/clothing/under/dress/skirt/skyrat/black_skirt

/datum/loadout_item/under/miscellaneous/swept_skirt
name = "Swept Skirt"
item_path = /obj/item/clothing/under/dress/skirt/skyrat/swept
Expand Down

0 comments on commit f85dd46

Please sign in to comment.