mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-31 09:46:09 +01:00
5879254629
Brings the shirt selection and colourable polos to the new palette and updates most of the shirt sprites too so they work a little better with the updated colours. <details> <summary>Basic shirts:</summary> <img width="764" height="572" alt="image" src="https://github.com/user-attachments/assets/53632412-4981-4dba-a72c-d1e12b80a0c8" /> </details> <details> <summary>Alternative shirts:</summary> <img width="763" height="572" alt="image" src="https://github.com/user-attachments/assets/8a7de694-7cf2-467f-ba3a-79dee2a9b6e6" /> </details> <details> <summary>T-shirts and longsleeves:</summary> <img width="769" height="568" alt="image" src="https://github.com/user-attachments/assets/e2ceeb7e-3c0d-4e82-bc15-785b39b257c9" /> </details> <details> <summary>Blouses:</summary> <img width="765" height="574" alt="image" src="https://github.com/user-attachments/assets/2f481d5e-2bd5-410e-92ae-15ef2b2f9e26" /> </details> <details> <summary>Halter top and striped shirts:</summary> <img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/c275c69e-6599-48c0-b6f4-9629b7270a1c" /> </details> <details> <summary>Tanktops:</summary> <img width="765" height="376" alt="image" src="https://github.com/user-attachments/assets/f9b4d92d-50f2-4677-a41f-caaa995b445f" /> </details>
78 lines
3.7 KiB
Plaintext
78 lines
3.7 KiB
Plaintext
ABSTRACT_TYPE(/datum/gear/shirts)
|
|
sort_category = "Shirts and Tops"
|
|
slot = slot_w_uniform
|
|
|
|
/datum/gear/shirts/polo_colorable
|
|
display_name = "polo shirts selection (colorable)"
|
|
description = "A selection of colorable polo shirts."
|
|
path = /obj/item/clothing/under/dressshirt/polo
|
|
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
|
|
|
|
/datum/gear/shirts/polo_colorable/New()
|
|
..()
|
|
var/list/polo_colorable = list()
|
|
|
|
polo_colorable["polo shirt"] = /obj/item/clothing/under/dressshirt/polo
|
|
polo_colorable["polo shirt (waist fitted)"] = /obj/item/clothing/under/dressshirt/polo/polo_fem
|
|
|
|
gear_tweaks += new /datum/gear_tweak/path(polo_colorable)
|
|
|
|
/datum/gear/shirts/shirt
|
|
display_name = "shirt selection"
|
|
path = /obj/item/clothing/under/dressshirt
|
|
description = "A selection of shirts."
|
|
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
|
|
|
/datum/gear/shirts/shirt/New()
|
|
..()
|
|
var/list/shirt = list()
|
|
shirt["dress shirt"] = /obj/item/clothing/under/dressshirt
|
|
shirt["dress shirt, rolled up"] = /obj/item/clothing/under/dressshirt/rolled
|
|
shirt["dress shirt, cropped"] = /obj/item/clothing/under/dressshirt/crop
|
|
shirt["cropped dress shirt, rolled up"] = /obj/item/clothing/under/dressshirt/crop/rolled
|
|
shirt["dress shirt, alt"] = /obj/item/clothing/under/dressshirt/alt
|
|
shirt["dress shirt, alt rolled up"] = /obj/item/clothing/under/dressshirt/alt/rolled
|
|
shirt["dress shirt, v-neck alt"] = /obj/item/clothing/under/dressshirt/alt/vneck
|
|
shirt["dress shirt, v-neck alt rolled up"] = /obj/item/clothing/under/dressshirt/alt/vneck/rolled
|
|
shirt["dress shirt, deep v-neck"] = /obj/item/clothing/under/dressshirt/deepv
|
|
shirt["dress shirt, deep v-neck rolled up"] = /obj/item/clothing/under/dressshirt/deepv/rolled
|
|
shirt["dress shirt, asymmetric"] = /obj/item/clothing/under/dressshirt/asymmetric
|
|
shirt["long-sleeved shirt"] = /obj/item/clothing/under/dressshirt/longsleeve
|
|
shirt["t-shirt"] = /obj/item/clothing/under/dressshirt/tshirt
|
|
shirt["t-shirt, cropped"] = /obj/item/clothing/under/dressshirt/tshirt_crop
|
|
shirt["blouse"] = /obj/item/clothing/under/dressshirt/blouse
|
|
shirt["long-sleeved blouse"] = /obj/item/clothing/under/dressshirt/longblouse
|
|
shirt["puffy blouse"] = /obj/item/clothing/under/dressshirt/puffyblouse
|
|
shirt["halter top"] = /obj/item/clothing/under/dressshirt/haltertop
|
|
shirt["tank top"] = /obj/item/clothing/under/dressshirt/tanktop
|
|
shirt["tank top, feminine"] = /obj/item/clothing/under/dressshirt/tanktop/feminine
|
|
gear_tweaks += new /datum/gear_tweak/path(shirt)
|
|
|
|
/datum/gear/shirts/stripes
|
|
display_name = "striped shirt selection"
|
|
path = /obj/item/clothing/under/dressshirt
|
|
description = "A selection of shirts."
|
|
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
|
|
|
|
/datum/gear/shirts/stripes/New()
|
|
..()
|
|
var/list/shirt = list()
|
|
shirt["striped long-sleeved shirt"] = /obj/item/clothing/under/dressshirt/longsleeve_s
|
|
shirt["striped t-shirt"] = /obj/item/clothing/under/dressshirt/tshirt_s
|
|
gear_tweaks += new /datum/gear_tweak/path(shirt)
|
|
|
|
|
|
/datum/gear/shirts/silversun
|
|
display_name = "silversun floral shirt selection"
|
|
path = /obj/item/clothing/under/dressshirt/silversun
|
|
description = "A selection of Silversun floral shirts."
|
|
flags = GEAR_HAS_DESC_SELECTION
|
|
|
|
/datum/gear/shirts/silversun/New()
|
|
..()
|
|
var/list/shirts = list()
|
|
shirts["cyan silversun shirt"] = /obj/item/clothing/under/dressshirt/silversun
|
|
shirts["red silversun shirt"] = /obj/item/clothing/under/dressshirt/silversun/red
|
|
shirts["random colored silversun shirt"] = /obj/item/clothing/under/dressshirt/silversun/random
|
|
gear_tweaks += new /datum/gear_tweak/path(shirts)
|