diff --git a/code/modules/clothing/under/color.dm b/code/modules/clothing/under/color.dm index 925d9f1f036..424a3e50edb 100644 --- a/code/modules/clothing/under/color.dm +++ b/code/modules/clothing/under/color.dm @@ -16,6 +16,9 @@ item_state = "bl_suit" _color = "black" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/blackf name = "feminine black jumpsuit" @@ -30,6 +33,10 @@ item_state = "b_suit" _color = "blue" flags = ONESIZEFITSALL + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/blue/dodgeball flags = ONESIZEFITSALL | NODROP @@ -40,6 +47,9 @@ item_state = "g_suit" _color = "green" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/grey name = "grey jumpsuit" @@ -63,6 +73,9 @@ item_state = "o_suit" _color = "orange" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/orange/prison name = "orange jumpsuit" @@ -73,6 +86,9 @@ has_sensor = 2 sensor_mode = 3 flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/pink name = "pink jumpsuit" @@ -81,6 +97,9 @@ item_state = "p_suit" _color = "pink" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/red name = "red jumpsuit" @@ -88,6 +107,9 @@ item_state = "r_suit" _color = "red" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/red/dodgeball flags = ONESIZEFITSALL | NODROP @@ -98,6 +120,9 @@ item_state = "w_suit" _color = "white" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/yellow name = "yellow jumpsuit" @@ -105,77 +130,120 @@ item_state = "y_suit" _color = "yellow" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/psyche name = "psychedelic jumpsuit" desc = "Groovy!" icon_state = "psyche" _color = "psyche" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) + /obj/item/clothing/under/color/lightblue name = "light blue jumpsuit" icon_state = "lightblue" _color = "lightblue" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/aqua name = "aqua jumpsuit" icon_state = "aqua" _color = "aqua" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/purple name = "purple jumpsuit" icon_state = "purple" item_state = "p_suit" _color = "purple" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/lightpurple name = "light purple jumpsuit" icon_state = "lightpurple" _color = "lightpurple" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/lightgreen name = "light green jumpsuit" icon_state = "lightgreen" _color = "lightgreen" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/lightblue name = "light blue jumpsuit" icon_state = "lightblue" _color = "lightblue" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/lightbrown name = "light brown jumpsuit" icon_state = "lightbrown" _color = "lightbrown" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/brown name = "brown jumpsuit" icon_state = "brown" _color = "brown" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/yellowgreen name = "yellow green jumpsuit" icon_state = "yellowgreen" _color = "yellowgreen" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/darkblue name = "dark blue jumpsuit" icon_state = "darkblue" _color = "darkblue" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/lightred name = "light red jumpsuit" icon_state = "lightred" _color = "lightred" + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/darkred name = "dark red jumpsuit" icon_state = "darkred" _color = "darkred" flags = ONESIZEFITSALL + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/uniform.dmi' + ) /obj/item/clothing/under/color/red/jersey name = "red team jersey" diff --git a/icons/mob/species/vox/uniform.dmi b/icons/mob/species/vox/uniform.dmi index 830034c2d59..1df0f98df85 100644 Binary files a/icons/mob/species/vox/uniform.dmi and b/icons/mob/species/vox/uniform.dmi differ