* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
34 lines
807 B
Plaintext
34 lines
807 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 = "blinks their lights."
|
|
|
|
/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 |