mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-25 17:42:26 +00:00
500 adds a "color" var to /atom, which conflicts with /obj/item/color, /obj/atmospherics/color and various simple_animals. /obj/item/color is now item_color /obj/atmospherics/color is now pipe_color simple_animals color is now body_color Removes transformer.dm since it conflicted with transform() and was never used. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
26 lines
661 B
Plaintext
26 lines
661 B
Plaintext
/obj/item/clothing/under/shorts
|
|
name = "athletic shorts"
|
|
desc = "95% Polyester, 5% Spandex!"
|
|
gender = PLURAL
|
|
flags = FPRINT | TABLEPASS
|
|
body_parts_covered = LOWER_TORSO
|
|
|
|
/obj/item/clothing/under/shorts/red
|
|
icon_state = "redshorts"
|
|
item_color = "redshorts"
|
|
|
|
/obj/item/clothing/under/shorts/green
|
|
icon_state = "greenshorts"
|
|
item_color = "greenshorts"
|
|
|
|
/obj/item/clothing/under/shorts/blue
|
|
icon_state = "blueshorts"
|
|
item_color = "blueshorts"
|
|
|
|
/obj/item/clothing/under/shorts/black
|
|
icon_state = "blackshorts"
|
|
item_color = "blackshorts"
|
|
|
|
/obj/item/clothing/under/shorts/grey
|
|
icon_state = "greyshorts"
|
|
item_color = "greyshorts" |