diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index d86600d023..cc64e7dfe0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -127,6 +127,22 @@ ckeywhitelist = list("benl8561") character_name = list("Quanah Hastings") +//Baybell +//Takira +/datum/gear/fluff/takira_suit + path = /obj/item/clothing/suit/storage/fluff/takirasuit + display_name = "Old Vox Armor" + description = "The rusted and rather useless remains of a Vox Raider suit... Is this thing even safe to wear?" + ckeywhitelist = list("baybell") + character_name = list("Takira") + +/datum/gear/fluff/takira_mask + path = /obj/item/clothing/mask/gas/fluff/takiramask + display_name = "Old Vox Mask" + description = "Half-broken or completely broken? At least its breathing tubes work." + ckeywhitelist = list("baybell") + character_name = list("Takira") + // C CKEYS //captmatt4 diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index dede25d4ac..e953c4005c 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1360,6 +1360,32 @@ icon_state = original_state update_icon() + +// ***** +// BAYBELL +// ***** + +//Takira + +/obj/item/clothing/suit/storage/fluff/takirasuit + name = "Old Vox Armor" + desc = "The rusted and rather useless remains of a Vox Raider suit... Is this thing even safe to wear?" + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "takira_suit" + icon_override = 'icons/vore/custom_onmob_yw.dmi' + item_state = "takira_suit" + body_parts_covered = UPPER_TORSO | LOWER_TORSO + + +/obj/item/clothing/mask/gas/fluff/takiramask + name = "Old Vox Mask" + desc = "Half-broken or completely broken? At least its breathing tubes work." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_override = 'icons/vore/custom_onmob_yw.dmi' + icon_state = "takira_helmet" + item_state = "takira_helmet" + + //GENERAL STUFF (Common - No specific ckey) /obj/item/clothing/suit/storage/fluff/techpriestrobes @@ -1401,4 +1427,5 @@ icon = 'icons/vore/custom_clothes_yw.dmi' icon_state = "tp_gloves_onmob" icon_override = 'icons/vore/custom_clothes_yw.dmi' - item_state = "tp_gloves_onmob" \ No newline at end of file + item_state = "tp_gloves_onmob" + diff --git a/icons/vore/custom_clothes_yw.dmi b/icons/vore/custom_clothes_yw.dmi index 979aa6ede2..688ee54eb5 100644 Binary files a/icons/vore/custom_clothes_yw.dmi and b/icons/vore/custom_clothes_yw.dmi differ diff --git a/icons/vore/custom_onmob_yw.dmi b/icons/vore/custom_onmob_yw.dmi index ac4fd310d3..2f2fd1ba49 100644 Binary files a/icons/vore/custom_onmob_yw.dmi and b/icons/vore/custom_onmob_yw.dmi differ