mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-12 23:54:24 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user