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 40835cb091..7384efa196 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -467,6 +467,12 @@ ckeywhitelist = list("killerdragn") character_name = list("Excess") +/datum/gear/fluff/excess_uniform + path = /obj/item/clothing/under/fluff/excess + display_name = "Excess's Uniform" + ckeywhitelist = list("killerdragn") + character_name = list("Excess") + /datum/gear/fluff/lassara_sheath path = /obj/item/clothing/accessory/storage/knifeharness display_name = "Lassara's Knife Harness" diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 0a0f61455e..4992b87421 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1919,3 +1919,19 @@ Departamental Swimsuits, for general use /obj/item/clothing/accessory/collar/pink/fluff/warning name = "Warning Collar (AGGRESSIVE)" desc = "A bright red warning collar with white text - \"AGGRESSIVE\"." + +//KillerDragn:Excess +/obj/item/clothing/under/fluff/excess + name = "XS-21E Labeled Latex Clothing" + desc = "A latex navy blue tube-top and matching compression shorts, with a bright yellow stripe down the side. \"XS-21E\" is written on the thigh. \"Warning\" is written in yellow by the stripe on the top." + body_parts_covered = UPPER_TORSO|LOWER_TORSO + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "latex_clothes" + item_icons = list() + default_worn_icon = 'icons/vore/custom_clothes_vr.dmi' + color = COLOR_NAVY + sprite_sheets = null + +/obj/item/clothing/under/fluff/excess/get_worn_icon_state(var/slot_name) + . = ..() + . = copytext(. , 1 , lentext( . ) - 1) //get rid of the extra "_s" added by /obj/item/clothing/under/get_worn_icon_state() diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 494465b8ad..3dc8f81b91 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ