Files
Yogstation/code/modules/mob/living/brain/emote.dm
Joan Lung 8765bcade3 Fixes some emote bugs and grammar (#22538)
* Fixes some emote bugs and grammar

* no message

* hup
2016-12-29 15:24:07 +01:00

34 lines
801 B
Plaintext

/datum/emote/brain
mob_type_allowed_typecache = list(/mob/living/brain)
mob_type_blacklist_typecache = list()
/datum/emote/brain/can_run_emote(mob/user)
. = ..()
var/mob/living/brain/B = user
if(!istype(B) || (!(B.container && istype(B.container, /obj/item/device/mmi))))
return FALSE
/datum/emote/brain/alarm
key = "alarm"
message = "sounds an alarm."
emote_type = EMOTE_AUDIBLE
/datum/emote/brain/alert
key = "alert"
message = "lets out a distressed noise."
emote_type = EMOTE_AUDIBLE
/datum/emote/brain/flash
key = "flash"
message = "lights' blink."
/datum/emote/brain/notice
key = "notice"
message = "plays a loud tone."
emote_type = EMOTE_AUDIBLE
/datum/emote/brain/whistle
key = "whistle"
key_third_person = "whistles"
message = "whistles."
emote_type = EMOTE_AUDIBLE