diff --git a/code/modules/client/preference/loadout/loadout_racial.dm b/code/modules/client/preference/loadout/loadout_racial.dm index 79aaf93c8ec..d8a669572b7 100644 --- a/code/modules/client/preference/loadout/loadout_racial.dm +++ b/code/modules/client/preference/loadout/loadout_racial.dm @@ -58,3 +58,15 @@ display_name = "Cloth footwraps" path = /obj/item/clothing/shoes/footwraps slot = SLOT_HUD_SHOES + +/datum/gear/racial/vox_casual + display_name = "Vox jumpsuit" + description = "These loose clothes are optimized for the labors of the lower castes onboard the arkships. Large openings in the top allow for breathability while the pants are durable yet flexible enough to not restrict movement." + path = /obj/item/clothing/under/vox/vox_casual + slot = SLOT_HUD_JUMPSUIT + +/datum/gear/racial/vox_robes + display_name = "Vox robes" + description = "Large, comfortable robes worn by those who need a bit more covering. The thick fabric contains a pocket suitable for those that need their hands free during their work, while the cloth serves to cover scars or other injuries to the wearer's body." + path = /obj/item/clothing/suit/hooded/vox_robes + slot = SLOT_HUD_OUTER_SUIT diff --git a/code/modules/clothing/spacesuits/alien_suits.dm b/code/modules/clothing/spacesuits/alien_suits.dm index c761b793dd9..40e84a3e1e3 100644 --- a/code/modules/clothing/spacesuits/alien_suits.dm +++ b/code/modules/clothing/spacesuits/alien_suits.dm @@ -143,30 +143,47 @@ desc = "An almost organic looking nonhuman pressure suit." /obj/item/clothing/under/vox - has_sensor = FALSE - icon = 'icons/obj/clothing/species/vox/uniforms.dmi' + icon = 'icons/mob/clothing/species/vox/under/misc.dmi' species_restricted = list("Vox") sprite_sheets = list( "Vox" = 'icons/mob/clothing/species/vox/under/misc.dmi' ) /obj/item/clothing/under/vox/vox_casual - name = "alien clothing" - desc = "This doesn't look very comfortable." - icon_state = "vox-casual-1" - item_color = "vox-casual-1" - item_state = "vox-casual-1" - body_parts_covered = LEGS + name = "Vox jumpsuit" + desc = "These loose clothes are optimized for the labors of the lower castes onboard the arkships. Large openings in the top allow for breathability while the pants are durable yet flexible enough to not restrict movement." + icon_state = "vox-jumpsuit_s" + item_color = "vox-jumpsuit" + item_state = "vox-jumpsuit" -/obj/item/clothing/under/vox/vox_robes - name = "alien robes" - desc = "Weird and flowing!" - icon_state = "vox-casual-2" - item_color = "vox-casual-2" - item_state = "vox-casual-2" +/obj/item/clothing/suit/hooded/vox_robes + name = "Vox robes" + desc = "Large, comfortable robes worn by those who need a bit more covering. The thick fabric contains a pocket suitable for those that need their hands free during their work, while the cloth serves to cover scars or other injuries to the wearer's body." + icon = 'icons/mob/clothing/species/vox/suit.dmi' + icon_state = "vox-robes" + item_color = "vox-robes" + item_state = "vox-robes" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + hoodtype = /obj/item/clothing/head/hooded/vox_robe_hood species_restricted = list("Vox") sprite_sheets = list( - "Vox" = 'icons/mob/clothing/species/vox/under/misc.dmi') + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) + +//Vox Robes Hood +/obj/item/clothing/head/hooded/vox_robe_hood + name = "Vox hood" + desc = "The thick fabric of this hood serves a variety of purposes to the vox wearing it - serving as a method to hide a scarred face or a way to keep warm in the coldest areas onboard the ship." + icon = 'icons/mob/clothing/species/vox/head.dmi' + icon_state = "vox-robes-hood" + item_color = "vox-robes-hood" + item_state = "vox-robes-hood" + flags = BLOCKHAIR + flags_cover = HEADCOVERSEYES + species_restricted = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/head.dmi' + ) /obj/item/clothing/gloves/color/yellow/vox name = "insulated gauntlets" diff --git a/icons/mob/clothing/species/vox/head.dmi b/icons/mob/clothing/species/vox/head.dmi index 41a97fb9a55..3354dd215ba 100644 Binary files a/icons/mob/clothing/species/vox/head.dmi and b/icons/mob/clothing/species/vox/head.dmi differ diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index 8aeade56f59..63c10abda38 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ diff --git a/icons/mob/clothing/species/vox/under/misc.dmi b/icons/mob/clothing/species/vox/under/misc.dmi index 74cacd03647..ee70b43eab0 100644 Binary files a/icons/mob/clothing/species/vox/under/misc.dmi and b/icons/mob/clothing/species/vox/under/misc.dmi differ