Skip to content

Commit

Permalink
Emotes (#10)
Browse files Browse the repository at this point in the history
* Adds the emotes

thump

* Makes *whistle eardrum-friendly

* Reverts *whistle because the XO doesn't like it

Co-authored-by: super12pl <[email protected]>
  • Loading branch information
That0nePerson and super12pl authored Feb 18, 2022
1 parent c4963c0 commit af7de3d
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions code/modules/emotes/definitions/_mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
/decl/emote/audible/alarm,
/decl/emote/audible/alert,
/decl/emote/audible/notice,
/decl/emote/audible/whistle,
/decl/emote/audible/synth,
/decl/emote/audible/boop,
/decl/emote/visible/blink,
Expand Down Expand Up @@ -163,7 +162,8 @@
/decl/emote/visible/rshoulder,
/decl/emote/visible/squint,
/decl/emote/visible/tfist,
/decl/emote/visible/tilt
/decl/emote/visible/tilt,
/decl/emote/audible/whistle
)

/mob/living/silicon/robot
Expand Down
8 changes: 6 additions & 2 deletions code/modules/emotes/definitions/_species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
/decl/emote/human/fastsway,
/decl/emote/human/swag,
/decl/emote/human/stopsway,
/decl/emote/audible/lizard_bellow
/decl/emote/visible/thump,
/decl/emote/audible/lizard_bellow,
/decl/emote/audible/lizard_hiss
)

/datum/species/unathi/yeosa
Expand All @@ -40,8 +42,10 @@
/decl/emote/human/fastsway,
/decl/emote/human/swag,
/decl/emote/human/stopsway,
/decl/emote/visible/thump,
/decl/emote/audible/lizard_bellow,
/decl/emote/audible/lizard_squeal
/decl/emote/audible/lizard_squeal,
/decl/emote/audible/lizard_hiss
)

/datum/species/nabber
Expand Down
11 changes: 9 additions & 2 deletions code/modules/emotes/definitions/audible.dm
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
/decl/emote/audible/clap
key = "clap"
emote_message_3p = "USER claps."
emote_sound = 'sound/voice/clap.ogg'

/decl/emote/audible/chuckle
key = "chuckle"
Expand Down Expand Up @@ -189,10 +190,10 @@
emote_message_3p = "USER wheezes."

/decl/emote/audible/hiss
key ="hiss_"
key ="hiss"
emote_message_3p_target = "USER hisses softly at TARGET."
emote_message_3p = "USER hisses softly."

/decl/emote/audible/lizard_bellow
key = "bellow"
emote_message_3p_target = "USER bellows deeply at TARGET!"
Expand All @@ -203,3 +204,9 @@
key = "squeal"
emote_message_3p = "USER squeals."
emote_sound = 'sound/voice/LizardSqueal.ogg'

/decl/emote/audible/lizard_hiss
key = "hiss"
emote_message_3p_target = "USER hisses at TARGET!"
emote_message_3p = "USER hisses!"
emote_sound = 'sound/voice/LizardHiss.ogg'
7 changes: 6 additions & 1 deletion code/modules/emotes/definitions/visible.dm
Original file line number Diff line number Diff line change
Expand Up @@ -331,4 +331,9 @@

/decl/emote/visible/tilt
key = "tilt"
emote_message_3p = "USER tilts USER_THEIR head."
emote_message_3p = "USER tilts USER_THEIR head."

/decl/emote/visible/thump
key = "thump"
emote_message_3p_target = "USER thumps USER_THEIR tail against the ground."
emote_message_3p = "USER thumps USER_THEIR tail against the ground."
Binary file added sound/voice/LizardHiss.ogg
Binary file not shown.
Binary file added sound/voice/clap.ogg
Binary file not shown.

0 comments on commit af7de3d

Please sign in to comment.