diff --git a/code/game/objects/items/toys/toys_yw.dm b/code/game/objects/items/toys/toys_yw.dm index c79b27c3e8..cc1389de48 100644 --- a/code/game/objects/items/toys/toys_yw.dm +++ b/code/game/objects/items/toys/toys_yw.dm @@ -15,4 +15,23 @@ if(src && !M.stat && in_range(M,src)) to_chat(M, "You cannot rename Strix Hades! You hug him anyway.") + return 1 + +/obj/item/toy/plushie/teshari/eili + name = "Eili" + desc = "This is a plushie that resembles an Avali named Eili. The ammount of detail makes it almost look lifelike! Looks like he is sleeping. Shhh!" + icon_state = "jeans_eiliplush" + pokephrase = "Weh!" + icon = 'icons/vore/custom_items_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 Eili! You hug her anyway.") return 1 \ No newline at end of file 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 fc5e3ca082..7cbbe8d07a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -292,6 +292,12 @@ description = "M-M-M-M-MONEY SHOT" ckeywhitelist = list("dopiotl") character_name = list("Jeanne Petite") +/datum/gear/fluff/jeans_eiliplush + path = /obj/item/toy/plushie/teshari/eili + display_name = "Eili Plishi" + description = "My Favorite Pupil" + ckeywhitelist = list("dopiotl","kbraid") + character_name = list("Jeanne Petite","Eili","Braid") //dwaggy90 //Saur Darastrix /datum/gear/fluff/saur_rig diff --git a/icons/obj/toy_yw.dmi b/icons/obj/toy_yw.dmi index f72e860422..4a1b5ca46c 100644 Binary files a/icons/obj/toy_yw.dmi and b/icons/obj/toy_yw.dmi differ diff --git a/icons/vore/custom_items_yw.dmi b/icons/vore/custom_items_yw.dmi index a4bce86d2c..de79ac001a 100644 Binary files a/icons/vore/custom_items_yw.dmi and b/icons/vore/custom_items_yw.dmi differ