diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm index 7689498133..b154132206 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm @@ -319,7 +319,8 @@ Talon winter coat var/list/choodies = list( "normal hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable, "sleeveless hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/sleeveless, - "cropped hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped + "cropped hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped, + "shortsleeve hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/shortsleeve ) gear_tweaks += gear_tweak_free_color_choice gear_tweaks += new/datum/gear_tweak/path(choodies) diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 02dfe15453..308037b92d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -211,4 +211,24 @@ Talon jumpsuit /datum/gear/uniform/stripeddungarees display_name = "striped dungarees" - path = /obj/item/clothing/under/stripeddungarees \ No newline at end of file + path = /obj/item/clothing/under/stripeddungarees + +// recolorable flame dress + +/datum/gear/uniform/cdress_fire + display_name = "flame dress, colorable" + path = /obj/item/clothing/under/dress/cdress_fire + +/datum/gear/uniform/cdress_fire/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + + +// recolorable yellow dress +/datum/gear/uniform/cbridesmaid + display_name = "fancy dress, colorable" + path = /obj/item/clothing/under/dress/cbridesmaid + +/datum/gear/uniform/cbridesmaid/New() + ..() + gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file diff --git a/code/modules/clothing/suits/hooded_vr.dm b/code/modules/clothing/suits/hooded_vr.dm index f8a0cc46af..2a5da38c4b 100644 --- a/code/modules/clothing/suits/hooded_vr.dm +++ b/code/modules/clothing/suits/hooded_vr.dm @@ -178,4 +178,9 @@ /obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped name = "cropped hoodie" desc = "It's not that this is a size too small, you just like showing off your tum. I guess." - icon_state = "choodie_crop" \ No newline at end of file + icon_state = "choodie_crop" + +/obj/item/clothing/suit/storage/hooded/toggle/colorable/shortsleeve + name = "shortsleeve hoodie" + desc = "For the times you can't decide between having sleeves and not having them." + icon_state = "choodie_shortsleeve" diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 59740a1689..e58eb820a5 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -596,3 +596,17 @@ icon = 'icons/inventory/uniform/item_vr.dmi' default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "striped_clown_uniform" + +/obj/item/clothing/under/dress/cdress_fire + name = "flame dress" + desc = "A small black dress with a flames print on it. Perfect for recoloring!" + icon = 'icons/inventory/uniform/item_vr.dmi' + default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' + icon_state = "cdress_fire" + +/obj/item/clothing/under/dress/cbridesmaid + name = "fancy dress" + desc = "A cute, flirty dress. Good for weddings and fancy parties, or if you just want to look fashionable. Perfect for recoloring!" + icon = 'icons/inventory/uniform/item_vr.dmi' + default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' + icon_state = "cbridesmaid" diff --git a/icons/inventory/suit/item_vr.dmi b/icons/inventory/suit/item_vr.dmi index ce75644444..ac5bec2ec6 100644 Binary files a/icons/inventory/suit/item_vr.dmi and b/icons/inventory/suit/item_vr.dmi differ diff --git a/icons/inventory/suit/mob_vr.dmi b/icons/inventory/suit/mob_vr.dmi index ba04d1041b..8ac153583b 100644 Binary files a/icons/inventory/suit/mob_vr.dmi and b/icons/inventory/suit/mob_vr.dmi differ diff --git a/icons/inventory/uniform/item_vr.dmi b/icons/inventory/uniform/item_vr.dmi index 1363a19d6d..453d01409b 100644 Binary files a/icons/inventory/uniform/item_vr.dmi and b/icons/inventory/uniform/item_vr.dmi differ diff --git a/icons/inventory/uniform/mob_vr.dmi b/icons/inventory/uniform/mob_vr.dmi index c2d8baca44..676722e0dd 100644 Binary files a/icons/inventory/uniform/mob_vr.dmi and b/icons/inventory/uniform/mob_vr.dmi differ