From f6d01da043c9369fff69bec01e56afa04a9eacbd Mon Sep 17 00:00:00 2001 From: Blossom <127415623+StudentBlossom@users.noreply.github.com> Date: Tue, 27 Aug 2024 22:37:10 +0200 Subject: [PATCH] Added attack_self to the petrock so you can appreciate it (#26534) * Added attack_self to the petrock so you can appreciate it * Update code/game/objects/items/toys.dm Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> Signed-off-by: Blossom <127415623+StudentBlossom@users.noreply.github.com> --------- Signed-off-by: Blossom <127415623+StudentBlossom@users.noreply.github.com> Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> --- code/game/objects/items/toys.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index d96dbff1f5a..fcf93613fe0 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1051,6 +1051,10 @@ attack_verb = list("attacked", "bashed", "smashed", "stoned") hitsound = "swing_hit" +/obj/item/toy/pet_rock/attack_self(mob/user) + var/cuddle_verb = pick("admires", "respects", "cherises", "appreciates") + user.visible_message("[user] [cuddle_verb] [src].") + /obj/item/toy/pet_rock/fred name = "fred" desc = "Fred, the bestest boy pet in the whole wide universe!"