mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
/obj/item/clothing/under/shorts
|
|
name = "athletic shorts"
|
|
desc = "95% Polyester, 5% Spandex!"
|
|
gender = PLURAL
|
|
body_parts_covered = GROIN
|
|
fitted = NO_FEMALE_UNIFORM
|
|
can_adjust = FALSE
|
|
mutantrace_variation = STYLE_DIGITIGRADE //how do they show up on taurs otherwise?
|
|
|
|
/obj/item/clothing/under/shorts/red
|
|
name = "red athletic shorts"
|
|
icon_state = "redshorts"
|
|
|
|
/obj/item/clothing/under/shorts/green
|
|
name = "green athletic shorts"
|
|
icon_state = "greenshorts"
|
|
|
|
/obj/item/clothing/under/shorts/blue
|
|
name = "blue athletic shorts"
|
|
icon_state = "blueshorts"
|
|
|
|
/obj/item/clothing/under/shorts/black
|
|
name = "black athletic shorts"
|
|
icon_state = "blackshorts"
|
|
|
|
/obj/item/clothing/under/shorts/grey
|
|
name = "grey athletic shorts"
|
|
icon_state = "greyshorts"
|
|
|
|
/obj/item/clothing/under/shorts/purple
|
|
name = "purple athletic shorts"
|
|
icon_state = "purpleshorts"
|
|
|
|
/obj/item/clothing/under/shorts/polychromic
|
|
name = "polychromic athletic shorts"
|
|
desc = "95% Polychrome, 5% Spandex!"
|
|
icon_state = "polyshortpants"
|
|
item_state = "rainbow"
|
|
mutantrace_variation = NONE
|
|
var/list/poly_colors = list("#FFFFFF", "#F08080")
|
|
|
|
/obj/item/clothing/under/shorts/polychromic/ComponentInitialize()
|
|
. = ..()
|
|
AddElement(/datum/element/polychromic, poly_colors, 2)
|
|
|
|
/obj/item/clothing/under/shorts/polychromic/pantsu
|
|
name = "polychromic panties"
|
|
desc = "Topless striped panties. Now with 120% more polychrome!"
|
|
icon_state = "polypantsu"
|
|
item_state = "rainbow"
|
|
body_parts_covered = GROIN
|
|
mutantrace_variation = STYLE_DIGITIGRADE|STYLE_NO_ANTHRO_ICON
|
|
|
|
poly_colors = list("#FFFFFF", "#8CC6FF")
|