mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-17 10:05:27 +01:00
Merge pull request #1466 from Yoshax/chenogasm
Adds different colored cheongsams
This commit is contained in:
@@ -6,8 +6,15 @@
|
||||
sort_category = "Uniforms and Casual Dress"
|
||||
|
||||
/datum/gear/uniform/cheongsam
|
||||
display_name = "cheongsam, white"
|
||||
path = /obj/item/clothing/under/cheongsam
|
||||
display_name = "cheongsam selection"
|
||||
|
||||
/datum/gear/uniform/cheongsam/New()
|
||||
..()
|
||||
var/list/cheongasms = list()
|
||||
for(var/cheongasm in typesof(/obj/item/clothing/under/cheongsam))
|
||||
var/obj/item/clothing/under/cheongsam/cheongasm_type = cheongasm
|
||||
cheongasms[initial(cheongasm_type.name)] = cheongasm_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cheongasms))
|
||||
|
||||
/datum/gear/uniform/kilt
|
||||
display_name = "kilt"
|
||||
|
||||
@@ -561,6 +561,27 @@
|
||||
worn_state = "mai_yang"
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
|
||||
|
||||
/obj/item/clothing/under/cheongsam/red
|
||||
name = "red cheongsam"
|
||||
desc = "It is a red cheongsam dress."
|
||||
icon_state = "cheongsam-red"
|
||||
item_state = "cheongsam-red"
|
||||
worn_state = "cheongsam-red"
|
||||
|
||||
/obj/item/clothing/under/cheongsam/blue
|
||||
name = "blue cheongsam"
|
||||
desc = "It is a blue cheongsam dress."
|
||||
icon_state = "cheongsam-blue"
|
||||
item_state = "cheongsam-blue"
|
||||
worn_state = "cheongsam-blue"
|
||||
|
||||
/obj/item/clothing/under/cheongsam/black
|
||||
name = "black cheongsam"
|
||||
desc = "It is a black cheongsam dress."
|
||||
icon_state = "cheongsam-black"
|
||||
item_state = "cheongsam-black"
|
||||
worn_state = "cheongsam-black"
|
||||
|
||||
/obj/item/clothing/under/blazer
|
||||
name = "blue blazer"
|
||||
desc = "A bold but yet conservative outfit, red corduroys, navy blazer and a tie."
|
||||
|
||||
Reference in New Issue
Block a user