diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 4bf03d0267f..61fdbf5ecbc 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -1427,6 +1427,17 @@ ckeywhitelist = list("verysoft") character_name = list("Shine-Runner") +/datum/gear/fluff/dessa_hat + path = /obj/item/clothing/head/fluff/giantbow/dessa + display_name = "Dessa's Giant Bow" + slot = slot_head + ckeywhitelist = list("verysoft") + character_name = list("Dessa Ton") + +/datum/gear/fluff/dessa_hat/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + // W CKEYS /datum/gear/fluff/sthasha_bracer path = /obj/item/clothing/accessory/bracer/fluff/xander_sthasha diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 7d3de40ee7d..435ed5ff309 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -406,3 +406,11 @@ "virologist's beret"=/obj/item/clothing/head/beret/medical/viro ) gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_uniforms)) + +/datum/gear/head/giantbow //Public version of Dessa's bow! + display_name = "Giant Bow" + path = /obj/item/clothing/head/fluff/giantbow + +/datum/gear/head/giantbow/New() + ..() + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 1d28a0fcf82..44bcb9dbf31 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -2678,3 +2678,20 @@ Departamental Swimsuits, for general use icon_override = 'icons/vore/custom_clothes_vr.dmi' icon_state = "grand_purple_cloak_hat" item_state = "grand_purple_cloak_hat_onmob" + +//verysoft:Dessa Ton +/obj/item/clothing/head/fluff/giantbow/dessa + desc = "It's a huge bow! So pretty! This one is fitted specially for Dessa's rediculously large ears." + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "dessabow_mob" + +/obj/item/clothing/head/fluff/giantbow //Public version + name = "Giant Bow" + desc = "It's a huge bow! So pretty!" + slot_flags = SLOT_HEAD | SLOT_EARS + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "dessabow" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "giantbow_mob" diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index d7bcc60f871..a94316da760 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ