diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 6272e402042..659a243fa79 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -94,5 +94,14 @@ /datum/gear/suit/taur/white_dress display_name = "white wedding dress (Wolf/Horse-taur)" - path = /obj/item/clothing/suit/taur_dress/white + path = /obj/item/clothing/suit/taur/dress sort_category = "Xenowear" + +/datum/gear/uniform/taur/colorable_skirt + display_name = "colorable skirt (Wolf/Horse-taur)" + path = /obj/item/clothing/under/taur/skirt + sort_category = "Xenowear" + +/datum/gear/uniform/taur/colorable_skirt/New() + ..() + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm index 26554967a4d..90dc81ba445 100644 --- a/code/modules/clothing/suits/miscellaneous_vr.dm +++ b/code/modules/clothing/suits/miscellaneous_vr.dm @@ -74,12 +74,12 @@ desc = "Knightly armor for a mount who doesn't need any rider. This one is marked to the house of Mason." icon_state = "Mason_barding" -/obj/item/clothing/suit/taur_dress +/obj/item/clothing/suit/taur icon = 'icons/mob/taursuits_horse_vr.dmi' body_parts_covered = UPPER_TORSO|LOWER_TORSO pixel_x = -16 -/obj/item/clothing/suit/taur_dress/white +/obj/item/clothing/suit/taur/dress name = "white wedding dress" desc = "A fancy white dress with a blue underdress." icon_state = "whitedress1" diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 2207f31385d..1747e3d2c7e 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -376,4 +376,15 @@ name = "Central Command undersuit" 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" \ No newline at end of file + item_state = "bodysuit_cent" + +/obj/item/clothing/under/taur + icon = 'icons/mob/taursuits_horse_vr.dmi' + body_parts_covered = UPPER_TORSO|LOWER_TORSO + pixel_x = -16 + +/obj/item/clothing/under/taur/skirt + name = "black skirt" + desc = "A fancy black skirt with white corset." + icon_state = "skirt_colorable" + flags_inv = HIDESHOES diff --git a/icons/mob/taursuits_horse_vr.dmi b/icons/mob/taursuits_horse_vr.dmi index 4986bed14f3..33ab8cd9af8 100644 Binary files a/icons/mob/taursuits_horse_vr.dmi and b/icons/mob/taursuits_horse_vr.dmi differ