diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm index 0aa29b7b9c9..ed528d3bdd0 100644 --- a/code/datums/supplypacks/misc.dm +++ b/code/datums/supplypacks/misc.dm @@ -84,7 +84,8 @@ /obj/item/toy/plushie/borgplushie/scrubpuppy, /obj/item/toy/plushie/foxbear, /obj/item/toy/plushie/nukeplushie, - /obj/item/toy/plushie/otter) + /obj/item/toy/plushie/otter, + /obj/item/toy/plushie/vox) //VOREStation Add End name = "Plushies Crate" cost = 15 diff --git a/code/game/machinery/vending_machines.dm b/code/game/machinery/vending_machines.dm index e04568c1d08..098d231ce77 100644 --- a/code/game/machinery/vending_machines.dm +++ b/code/game/machinery/vending_machines.dm @@ -753,7 +753,9 @@ /obj/item/toy/plushie/borgplushie/scrubpuppy = 1, /obj/item/toy/plushie/foxbear = 1, /obj/item/toy/plushie/nukeplushie = 1, - /obj/item/toy/plushie/otter = 1) + /obj/item/toy/plushie/otter = 1, + /obj/item/toy/plushie/vox = 1, + /obj/item/toy/mistletoe = 1) //VOREStation Add End premium = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne = 1, /obj/item/weapon/storage/trinketbox = 2) @@ -793,7 +795,9 @@ /obj/item/toy/plushie/borgplushie/scrubpuppy = 50, /obj/item/toy/plushie/foxbear = 50, /obj/item/toy/plushie/nukeplushie = 50, - /obj/item/toy/plushie/otter = 50) + /obj/item/toy/plushie/otter = 50, + /obj/item/toy/plushie/vox = 50, + /obj/item/toy/mistletoe = 50) //VOREStation Add End diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm index 6081d99b0a8..b10cd98b1f1 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -1,3 +1,9 @@ +/obj/item/toy/mistletoe + name = "mistletoe" + desc = "You are supposed to kiss someone under these" + icon = 'icons/obj/toy_vr.dmi' + icon_state = "mistletoe" + /obj/item/toy/plushie/lizardplushie name = "lizard plushie" desc = "An adorable stuffed toy that resembles a lizardperson." diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index 913ffda9b74..ef49033bd3f 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -673,7 +673,8 @@ /obj/item/toy/plushie/borgplushie/scrubpuppy, /obj/item/toy/plushie/foxbear, /obj/item/toy/plushie/nukeplushie, - /obj/item/toy/plushie/otter) + /obj/item/toy/plushie/otter, + /obj/item/toy/plushie/vox) //VOREStation Add End /obj/random/plushielarge diff --git a/icons/obj/toy_vr.dmi b/icons/obj/toy_vr.dmi index 70660c9cb5b..29563d8791f 100644 Binary files a/icons/obj/toy_vr.dmi and b/icons/obj/toy_vr.dmi differ