mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-17 10:05:27 +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)
|
||||
|
||||
@@ -377,3 +377,82 @@
|
||||
desc = "A very descript undersuit, intended for wearing under a voidsuit or other EVA equipment. This one is specifically made for NanoTrasen Central Command officers, and comes with a swanky gold trim and other fancy markings."
|
||||
icon_state = "bodysuit_cent"
|
||||
item_state = "bodysuit_cent"
|
||||
|
||||
|
||||
//FEMININE JUMPSUITS.
|
||||
/obj/item/clothing/under/color/fjumpsuit //They won't see this so we can make it whatever we want.
|
||||
name = "blue feminine jumpsuit"
|
||||
desc = "It's very smart and in a ladies size!"
|
||||
icon = 'icons/inventory/uniform/item.dmi'
|
||||
default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
|
||||
icon_state = "blue" // In hand
|
||||
worn_state = "bluef" // On mob
|
||||
|
||||
/obj/item/clothing/under/color/fjumpsuit/bluef
|
||||
name = "blue feminine jumpsuit"
|
||||
icon_state = "blue"
|
||||
worn_state = "bluef"
|
||||
/obj/item/clothing/under/color/fjumpsuit/aquaf
|
||||
name = "aqua feminine jumpsuit"
|
||||
icon_state = "aqua"
|
||||
worn_state = "aquaf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/brownf
|
||||
name = "brown feminine jumpsuit"
|
||||
icon_state = "brown"
|
||||
worn_state = "brownf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/darkbluef
|
||||
name = "dark blue feminine jumpsuit"
|
||||
icon_state = "darkblue"
|
||||
worn_state = "darkbluef"
|
||||
/obj/item/clothing/under/color/fjumpsuit/darkredf
|
||||
name = "dark red feminine jumpsuit"
|
||||
icon_state = "darkred"
|
||||
worn_state = "darkredf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/greenf
|
||||
name = "green feminine jumpsuit"
|
||||
icon_state = "green"
|
||||
worn_state = "greenf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/lightbluef
|
||||
name = "light blue feminine jumpsuit"
|
||||
icon_state = "lightblue"
|
||||
worn_state = "lightbluef"
|
||||
/obj/item/clothing/under/color/fjumpsuit/lightbrownf
|
||||
name = "light brown feminine jumpsuit"
|
||||
icon_state = "lightbrown"
|
||||
worn_state = "lightbrownf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/lightgreenf
|
||||
name = "light green feminine jumpsuit"
|
||||
icon_state = "lightgreen"
|
||||
worn_state = "lightgreenf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/lightpurplef
|
||||
name = "light purple feminine jumpsuit"
|
||||
icon_state = "lightpurple"
|
||||
worn_state = "lightpurplef"
|
||||
/obj/item/clothing/under/color/fjumpsuit/lightredf
|
||||
name = "light red feminine jumpsuit"
|
||||
icon_state = "lightred"
|
||||
worn_state = "lightredf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/maroonf
|
||||
name = "maroon feminine jumpsuit"
|
||||
icon_state = "maroon"
|
||||
worn_state = "maroonf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/pinkf
|
||||
name = "pink feminine jumpsuit"
|
||||
icon_state = "pink"
|
||||
worn_state = "pinkf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/purplef //NEEDS EAST SPRITE.
|
||||
name = "purple feminine jumpsuit"
|
||||
icon_state = "purple"
|
||||
worn_state = "purplef"
|
||||
/obj/item/clothing/under/color/fjumpsuit/redf
|
||||
name = "red feminine jumpsuit"
|
||||
icon_state = "red"
|
||||
worn_state = "redf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/yellowf
|
||||
name = "yellow feminine jumpsuit"
|
||||
icon_state = "yellow"
|
||||
worn_state = "yellowf"
|
||||
/obj/item/clothing/under/color/fjumpsuit/yellowgreenf
|
||||
name = "yellow-green feminine jumpsuit"
|
||||
icon_state = "yellowgreen"
|
||||
worn_state = "yellowgreenf"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 89 KiB |
Reference in New Issue
Block a user