Adds *yip, *squeal and *tailthump as emotes (#9846)

This commit is contained in:
Mitryll
2025-01-17 11:47:42 -04:00
committed by GitHub
parent 9637df2e67
commit f0c403ee4a
7 changed files with 36 additions and 2 deletions

View File

@@ -189,7 +189,10 @@ var/list/_human_default_emotes = list(
/decl/emote/audible/malehumanscream, /decl/emote/audible/malehumanscream,
/decl/emote/audible/scientist/scream, /decl/emote/audible/scientist/scream,
/decl/emote/audible/scientist/pain, /decl/emote/audible/scientist/pain,
/decl/emote/audible/caw /decl/emote/audible/caw,
/decl/emote/audible/yip,
/decl/emote/audible/tailthump,
/decl/emote/audible/squeal,
//CHOMP Add end //CHOMP Add end
) )
@@ -339,7 +342,10 @@ var/list/_simple_mob_default_emotes = list(
/decl/emote/audible/xenogrowl, /decl/emote/audible/xenogrowl,
/decl/emote/audible/xenohiss, /decl/emote/audible/xenohiss,
/decl/emote/audible/xenopurr, /decl/emote/audible/xenopurr,
/decl/emote/audible/caw /decl/emote/audible/caw,
/decl/emote/audible/yip,
/decl/emote/audible/tailthump,
/decl/emote/audible/squeal,
//CHOMP Add end //CHOMP Add end
) )
//VOREStation Add End //VOREStation Add End

View File

@@ -116,3 +116,31 @@
/decl/emote/audible/scientist/get_emote_sound(var/atom/user) /decl/emote/audible/scientist/get_emote_sound(var/atom/user)
. = ..() . = ..()
.["vol"] *= 0.4 //these boys are pretty loud on their own lol .["vol"] *= 0.4 //these boys are pretty loud on their own lol
/decl/emote/audible/yip // sounds sourced from: https://introdile.itch.io/kobold-generator with permission from the creator
key = "yip"
emote_message_1p = "You yip."
emote_message_3p = "yips!"
emote_message_1p_target = "You yip at TARGET!"
emote_message_3p_target = "yips at TARGET!"
emote_sound = list (
'modular_chomp/sound/voice/emotes/yip1.ogg',
'modular_chomp/sound/voice/emotes/yip2.ogg',
'modular_chomp/sound/voice/emotes/yip3.ogg',
)
/decl/emote/audible/squeal // Sound sourced from: https://github.com/Baystation12/Baystation12/blob/bd2f0bd5e38cf2bb0888e3ae879708bed20243b4/sound/voice/LizardSqueal.ogg, licensed Creative Commons 3.0 BY-SA.
key = "squeal"
emote_message_1p = "You squeal."
emote_message_3p = "squeals."
emote_message_1p_target = "You squeal at TARGET."
emote_message_3p_target = "squeals at TARGET."
emote_sound = 'modular_chomp/sound/voice/emotes/squealemote.ogg'
/decl/emote/audible/tailthump // Sound sourced from https://freesound.org/s/389665/ Licensed Creative Commons 0
key = "tailthump"
emote_message_1p = "You thump your tail."
emote_message_3p = "thumps their tail."
emote_message_1p_target = "You thump your tail at TARGET."
emote_message_3p_target = "thumps their tail at TARGET."
emote_sound = 'modular_chomp/sound/voice/emotes/tailthumpemote.ogg'

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.