diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index c94d8bd1ecb4e..e0f62a0e7a4a8 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -804,6 +804,7 @@ name = "farwa plush" desc = "A farwa plush doll. It's soft and comforting!" icon_state = "farwaplushie" + item_state = "farwaplush" /obj/item/toy/plushie/thoom @@ -811,6 +812,12 @@ desc = "A plush Th'oom with big, button eyes. It smells like mushrooms." icon_state = "thoomplushie" +/obj/item/toy/plushie/bee + name = "bee plush" + desc = "A plush space bee with large compound eyes. It smells faintly of honey." + icon_state = "beeplushie" + item_state = "beeplush" + /obj/item/toy/plushie/carp_gold name = "carp plush" diff --git a/code/modules/client/preference_setup/loadout/lists/misc.dm b/code/modules/client/preference_setup/loadout/lists/misc.dm index 9d9bdc5dc1121..66173f957b0ff 100644 --- a/code/modules/client/preference_setup/loadout/lists/misc.dm +++ b/code/modules/client/preference_setup/loadout/lists/misc.dm @@ -149,6 +149,7 @@ plushes["deer plush"] = /obj/item/toy/plushie/deer plushes["blue squid plush"] = /obj/item/toy/plushie/squid_blue plushes["orange squid plush"] = /obj/item/toy/plushie/squid_orange + plushes["bee plush"] = /obj/item/toy/plushie/bee gear_tweaks += new /datum/gear_tweak/path(plushes) /datum/gear/workvisa diff --git a/icons/mob/onmob/items/lefthand.dmi b/icons/mob/onmob/items/lefthand.dmi index 363f44c1f6015..b0943ff615161 100644 Binary files a/icons/mob/onmob/items/lefthand.dmi and b/icons/mob/onmob/items/lefthand.dmi differ diff --git a/icons/mob/onmob/items/righthand.dmi b/icons/mob/onmob/items/righthand.dmi index ef5c0ffc0ab61..9f378644e3030 100644 Binary files a/icons/mob/onmob/items/righthand.dmi and b/icons/mob/onmob/items/righthand.dmi differ diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index acb0144eb5b9d..f57b4ada292b2 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ