Bird up. Added 3 cawing emotes for the crows lover (#18469)

* Adds crow caws. 2 single versions, and one where you caw multiple times.

* Added copyright information for the 2 sounds

* Also adds GWAH
This commit is contained in:
nesquik
2025-09-14 23:09:14 +02:00
committed by GitHub
parent 36b9556a94
commit 25130c53df
5 changed files with 33 additions and 2 deletions
@@ -227,6 +227,28 @@
emote_message_3p = "SHRIEKS!"
emote_sound = 'sound/voice/shriek1.ogg'
/decl/emote/audible/caw
key = "caw"
emote_message_3p = "caws."
emote_sound = 'sound/voice/emotes/caw1.ogg'
/decl/emote/audible/caw2
key = "caw2"
emote_message_3p = "caws."
emote_sound = 'sound/voice/emotes/caw2.ogg' // Copyright CC0 1.0 Universal, by Jofae on freesound.org.
/decl/emote/audible/caw_m
key = "caw_m"
emote_message_3p = "caws multiple times."
emote_sound = 'sound/voice/emotes/caw_multiple.ogg' // Copyright CC0 1.0 Universal, by Ambientsoundapp on freesound.org.
/decl/emote/audible/gwah
key = "gwah"
emote_message_3p = "gwah."
emote_sound = 'sound/voice/emotes/gwah.ogg' // Copyright CC0 1.0 Universal, by Ambientsoundapp on freesound.org.
/decl/emote/audible/purr
key = "purr"
emote_message_3p = "purrs."
+11 -2
View File
@@ -176,7 +176,12 @@ var/list/_human_default_emotes = list(
/decl/emote/audible/lwarble,
/decl/emote/audible/croak_skrell,
/decl/emote/audible/roarbark,
/decl/emote/audible/dook
/decl/emote/audible/dook,
/decl/emote/audible/caw,
/decl/emote/audible/caw2,
/decl/emote/audible/caw_m,
/decl/emote/audible/gwah
//VOREStation Add End
)
@@ -321,7 +326,11 @@ var/list/_simple_mob_default_emotes = list(
/decl/emote/audible/vox_shriek,
/decl/emote/audible/purr,
/decl/emote/audible/purrlong,
/decl/emote/audible/dook
/decl/emote/audible/dook,
/decl/emote/audible/caw,
/decl/emote/audible/caw2,
/decl/emote/audible/caw_m,
/decl/emote/audible/gwah
)
//VOREStation Add End