From 5213682c42b9d26124c8c8d667188ef0be800705 Mon Sep 17 00:00:00 2001 From: VampyrBytes Date: Mon, 13 Jun 2016 19:51:40 +0100 Subject: [PATCH] adds buzz2 (#4561) adds buzz2, with target and access for simple_animal/bot --- code/datums/Emote_system/emotes.dm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/code/datums/Emote_system/emotes.dm b/code/datums/Emote_system/emotes.dm index 3e7058d3f7a..dc36df288a7 100644 --- a/code/datums/Emote_system/emotes.dm +++ b/code/datums/Emote_system/emotes.dm @@ -217,7 +217,6 @@ above it. If you don't want this, make the call to ..() then use commands = new selfText = "buzz" audible = 1 sound = 'sound/machines/buzz-sigh.ogg' - cooldown = 50 canTarget = 1 targetMob = 1 @@ -231,6 +230,19 @@ above it. If you don't want this, make the call to ..() then use commands = new if(user.is_mechanical()) return 1 +/datum/emote/buzz/buzz2 + name = "buzz 2" + desc = "makes the mob buzz in an irritated way" + text = "makes an irritated buzzing sound" + selfText = "make an irritated buzzing sound" + sound = "sound/machines/buzz-two.ogg" + allowParent = 1 + +/datum/emote/buzz/buzz2/New() + ..() + commands = new /list() + commands += "buzz2" + /datum/emote/chirp name = "chirp" desc = "Makes the mob chirp"