Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New silicon emote, slowclap + emotes for MMIs #12043

Merged
merged 4 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions code/modules/mob/living/carbon/human/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,16 @@
if(..())
playsound(user.loc, 'sound/emotes/dwoop.ogg', 50)

/datum/emote/living/carbon/human/robot_tongue/slowclap
key = "slowclap"
key_third_person = "activates their slow clap processor."
message = "activates their slow clap processor."
mrmanlikesbt marked this conversation as resolved.
Show resolved Hide resolved
emote_type = EMOTE_AUDIBLE

/datum/emote/living/carbon/human/robot_tongue/slowclap/run_emote(mob/user, params)
if(..())
playsound(user.loc, 'sound/machines/slowclap.ogg', 50)

// Clown Robotic Tongue ONLY. Henk.

/datum/emote/living/carbon/human/robot_tongue/clown/can_run_emote(mob/user, status_check = TRUE , intentional)
Expand Down
7 changes: 6 additions & 1 deletion code/modules/mob/living/silicon/robot/emote.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/datum/emote/silicon
mob_type_allowed_typecache = list(/mob/living/silicon, /mob/living/simple_animal/hostile/mining_drone)
mob_type_allowed_typecache = list(/mob/living/brain, /mob/living/silicon, /mob/living/simple_animal/hostile/mining_drone)
emote_type = EMOTE_AUDIBLE

/datum/emote/silicon/boop
Expand Down Expand Up @@ -55,3 +55,8 @@
key = "warn"
message = "blares an alarm!"
sound = 'sound/machines/warning-buzzer.ogg'

/datum/emote/silicon/slowclap
key = "slowclap"
message = "activates its slow clap processor."
sound = 'sound/machines/slowclap.ogg'
Loading