Skip to content

Commit

Permalink
Adds Peepy (#432)
Browse files Browse the repository at this point in the history
Ouioui not included
  • Loading branch information
Wallemations authored Feb 22, 2024
1 parent 1995acd commit 92c3060
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/machinery/computer/arcade/arcade.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ GLOBAL_LIST_INIT(arcade_prize_pool, list(
/obj/item/toy/foamfinger = 2,
/obj/item/clothing/glasses/trickblindfold = 2,
/obj/item/clothing/mask/party_horn = 2,
/obj/item/storage/box/party_poppers = 2))
/obj/item/storage/box/party_poppers = 2,
/obj/item/toy/plush/peepy = 2)) // NON-MODULE CHANGE: PEEPY

/obj/machinery/computer/arcade
name = "random arcade"
Expand Down
10 changes: 10 additions & 0 deletions maplestation_modules/code/game/objects/items/plushes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@

/obj/item/toy/plush/lizard_plushie/space
icon = 'icons/obj/toys/plushes.dmi'

/obj/item/toy/plush/peepy
name = "peepy"
desc = "After committing a dangerous and disrespectful crime, Peepy is out on bail and ready to come to your house."
icon = 'maplestation_modules/icons/obj/plushes.dmi'
icon_state = "peepy"

/obj/item/toy/plush/peepy/examine(mob/user)
. = ..()
. += span_notice("A tag on the back says: \"This is a collectible artwork and not a toy. Do not give to children under 12 years old or pets.\"")
Binary file modified maplestation_modules/icons/obj/plushes.dmi
Binary file not shown.

0 comments on commit 92c3060

Please sign in to comment.