diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index dd49ef6e16c..04b69c88696 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -25,7 +25,8 @@ /obj/item/toy/prize/phazon = 1, /obj/item/toy/cards/deck = 2, /obj/item/toy/nuke = 2, - /obj/item/toy/minimeteor = 2 + /obj/item/toy/minimeteor = 2, + /obj/item/toy/carpplushie = 2 ) /obj/machinery/computer/arcade/New() diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 20a18af1564..59b0ced072c 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -12,6 +12,7 @@ * Cards * Toy nuke * Mini-Meteor + * Carp plushie */ @@ -1039,7 +1040,7 @@ obj/item/toy/cards/deck/syndicate /obj/item/toy/minimeteor name = "\improper Mini-Meteor" - desc = "Relive the fun of a meteor shower! SweetMeat-eor. Co is not responsible for any headaches or hearing loss caused by Mini-Meteor™" + desc = "Relive the excitement of a meteor shower! SweetMeat-eor. Co is not responsible for any injuries, headaches or hearing loss caused by Mini-Meteor™" icon = 'icons/obj/toy.dmi' icon_state = "minimeteor" w_class = 2.0 @@ -1051,3 +1052,14 @@ obj/item/toy/cards/deck/syndicate if(!M.stat && !istype(M, /mob/living/silicon/ai))\ shake_camera(M, 3, 1) qdel(src) + +/* + * Carp plushie + */ + +/obj/item/toy/carpplushie + name = "space carp plushie" + desc = "An adorable stuffed toy that resembles a space carp." + icon = 'icons/obj/toy.dmi' + icon_state = "carpplushie" + w_class = 2.0 \ No newline at end of file diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 508a9ef92d6..26c1afe81df 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ