From 2879cd1593bfd67479cab25a5c46c5db1444dbe1 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 11 Jul 2017 00:42:48 -0500 Subject: [PATCH] YOU CAN NOW PET BLOBS (#1976) --- code/game/gamemodes/blob/theblob.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index 501e90f8fb..5fdec26563 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -19,6 +19,14 @@ var/atmosblock = 0 //if the blob blocks atmos and heat spread var/mob/camera/blob/overmind +/obj/structure/blob/attack_hand(mob/M) + . = ..() + M.changeNext_move(CLICK_CD_MELEE) + var/a = pick("gently stroke", "nuzzle", "affectionatly pet", "cuddle") + M.visible_message("[M] [a]s [src]!", "You [a] [src]!") + playsound(src, 'sound/effects/blobattack.ogg', 50, 1) //SQUISH SQUISH + + /obj/structure/blob/Initialize() var/area/Ablob = get_area(loc)