Adds in colored female jumpsuits.

https://i.imgur.com/fFFqxOD.png
Purple is broken ATM. Waiting for the spriter to send me last icon needed.
This commit is contained in:
C.L
2022-10-07 20:30:11 -04:00
parent b0a6a2c2f8
commit 5c1fa561cd
4 changed files with 95 additions and 2 deletions
@@ -150,4 +150,4 @@ Talon winter coat
cost = 2 //It's got armor, yo.
/datum/gear/suit/cyberpunk_recolorable/New()
gear_tweaks += gear_tweak_free_color_choice
gear_tweaks += gear_tweak_free_color_choice
@@ -291,4 +291,18 @@ Talon jumpsuit
var/list/pants = list()
for(var/obj/item/clothing/under/pants/altevian/pants_type as anything in typesof(/obj/item/clothing/under/pants/altevian))
pants[initial(pants_type.name)] = pants_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants))
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants))
//Feminine Colored Jumpsuits.
/datum/gear/suit/f_jumpsuit_alt
display_name = "Colored Feminine Jumpsuit"
path = /obj/item/clothing/under/color/fjumpsuit
/datum/gear/uniform/f_jumpsuit_alt/New()
..()
var/list/jumpsuits = list()
for(var/jumpsuit_style in typesof(/obj/item/clothing/under/color/fjumpsuit))
var/obj/item/clothing/under/color/fjumpsuit/jumpsuit = jumpsuit_style
jumpsuits[initial(jumpsuit.name)] = jumpsuit
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(jumpsuits)