mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
34 lines
801 B
Plaintext
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 |