diff --git a/code/game/machinery/vending/misc.dm b/code/game/machinery/vending/misc.dm index cd073249020..82debfc237b 100644 --- a/code/game/machinery/vending/misc.dm +++ b/code/game/machinery/vending/misc.dm @@ -133,6 +133,12 @@ /obj/item/toy/plushie/doll = 3, /obj/item/storage/daki = 10, /obj/item/toy/gnome = 4, + /obj/item/toy/axi = 3, + /obj/item/toy/snek = 3, + /obj/item/toy/pan = 3, + /obj/item/toy/bun = 3, + /obj/item/toy/demon = 3, + /obj/item/toy/jay = 3 ) premium = list( /obj/item/reagent_containers/food/drinks/bottle/champagne = 1, @@ -176,6 +182,12 @@ /obj/item/toy/plushie/doll = 50, /obj/item/storage/daki = 100, /obj/item/toy/gnome = 20, + /obj/item/toy/axi = 30, + /obj/item/toy/snek = 30, + /obj/item/toy/pan = 30, + /obj/item/toy/bun = 25, + /obj/item/toy/demon = 15, + /obj/item/toy/jay = 10 ) //Custom vendors diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 794faedf935..d5524f01865 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1786,3 +1786,40 @@ name = "giant lawn gnome" icon_state = "gnome_giant" desc = "A life-sized ceramic gnome statue, often used in lawn displays. For a brief while, carrying a gnome safely through hazardous areas was seen as a popular challenge." + +//Squishimals +/obj/item/toy/axi + name = "Axiom the Axolotl Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "axi" + desc = "Axiom the Axolotl, a little blue squishimal axolotl with fluffy fringes on his external gills." + +/obj/item/toy/snek + name = "Sneki the Snake Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "snek" + desc = "Sneki the Snake, a medium sized yellow snake squishimal with velvety ventral scales." + +/obj/item/toy/pan + name = "Pandy the Red Panda Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "pan" + desc = "Pandy the Red Panda, a large fluffy red panda squishimal with big soft ears and silky cheek fur." + +/obj/item/toy/bun + name = "Matcha the Rabbit Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "bun" + desc = "Matcha the Rabbit, a large green squishimal that faintly smells of green tea and has floppy ears." + +/obj/item/toy/demon + name = "Demi the Imp Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "demon" + desc = "Demi the Imp, a squishimal imp with scaley glittery ears and horns." + +/obj/item/toy/jay + name = "Jaymes the Bluejay Squishimal" + icon = 'icons/obj/toy.dmi' + icon_state = "jay" + desc = "Jaymes the Bluejay, a smaller squishimal that looks to resemble probably someone's favorite bird. Fun fact: Bluejays are corvids!" diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 8f68f1dc072..ef32c2d4351 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ