diff --git a/code/game/objects/items/toys/toys_yw.dm b/code/game/objects/items/toys/toys_yw.dm index b312d70341..d70c69352e 100644 --- a/code/game/objects/items/toys/toys_yw.dm +++ b/code/game/objects/items/toys/toys_yw.dm @@ -107,3 +107,27 @@ slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', slot_back_str = 'icons/mob/toy_worn_yw.dmi', slot_head_str = 'icons/mob/toy_worn_yw.dmi') + +/obj/item/toy/plushie/jeans + name = "Chocodoggo" + desc = "This plushie looks like a puppified version of Jeanne Petite. It seems as though it is watching you intently..." + icon_state = "Jeans_plushie" + item_state = "Jeans_plushie" + slot_flags = SLOT_HEAD + pokephrase = "pokerface" + icon = 'icons/vore/custom_items_yw.dmi' + item_icons = list( + slot_head_str = 'icons/vore/custom_onmob_yw.dmi') + + + rename_plushie() + set name = "Name Plushie" + set category = "Object" + set desc = "Give your plushie a cute name!" + var/mob/M = usr + if(!M.mind) + return 0 + + if(src && !M.stat && in_range(M,src)) + to_chat(M, "You cannot rename Jeans! You hug her anyway.") + return 1 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 b9bd6b51ec..f9fd488da5 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -641,6 +641,21 @@ description = "You're such a goggle head!" ckeywhitelist = list("kbraid") character_name = list("Eili") //Character name. this variable is required, or the item doesn't show in loadout. Change to "character_name = null" if not character restricted. + +/datum/gear/fluff/jeanscrystelchime + path = /obj/item/clothing/accessory/fluff/jeanscrystelchime + display_name = "valhollide chimes" + description = "a precious gift from a precious friend" + ckeywhitelist = list("kbraid") + character_name = list("Eili") //Character name. this variable is required, or the item doesn't show in loadout. Change to "character_name = null" if not character restricted. + +/datum/gear/fluff/jeansplushie + path = /obj/item/toy/plushie/jeans + display_name = "Jeans Plushi" + description = "Pupper Pitite" + ckeywhitelist = list("dopiotl","kbraid") + character_name = list("Jeanne Petite","Eili","Braid") + //Braid /datum/gear/fluff/kbraidoutfit path = /obj/item/clothing/suit/storage/hooded/fluff/kbraid diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index 20828c133b..3d442918a5 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1716,6 +1716,20 @@ item_state = "kbraid_head_s" ear_protection = 1 +/obj/item/clothing/accessory/fluff/jeanscrystelchime + name = "valhollide chime" + desc = "a set of white crystal chimes attached to a silver ring. the sound they make when they clink together is otherworldly..." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "jeanscrystelchime" + icon_override = 'icons/vore/custom_clothes_yw.dmi' + item_state = "jeanscrystelchime_s" + overlay_state = "jeanscrystelchime_s" + slot_flags = ACCESSORY_SLOT_DECOR + w_class = ITEMSIZE_TINY + species_restricted = list(SPECIES_TESHARI) + drop_sound = 'sound/items/pickup/ring.ogg' + pickup_sound = 'sound/items/pickup/ring.ogg' + // ******** // Whiteout // ******** @@ -1726,4 +1740,4 @@ icon_state = "gear_harness_white" icon_override = 'icons/vore/custom_clothes_yw.dmi' item_state = "gear_harness_white" - body_parts_covered = 0 + body_parts_covered = 0 \ No newline at end of file diff --git a/icons/vore/custom_clothes_yw.dmi b/icons/vore/custom_clothes_yw.dmi index 315b086a96..4d450f0085 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_items_yw.dmi b/icons/vore/custom_items_yw.dmi index 2cb0aae253..ce76795b39 100644 Binary files a/icons/vore/custom_items_yw.dmi and b/icons/vore/custom_items_yw.dmi differ diff --git a/icons/vore/custom_onmob_yw.dmi b/icons/vore/custom_onmob_yw.dmi index 4a44db9bd4..eb2e2e103e 100644 Binary files a/icons/vore/custom_onmob_yw.dmi and b/icons/vore/custom_onmob_yw.dmi differ