Files
CHOMPStation2/modular_chomp/code/modules/emotes/definitions/audiable.dm
2023-11-20 15:17:55 +01:00

59 lines
2.2 KiB
Plaintext

/decl/emote/audible/wheeze
emote_sound = 'modular_chomp/sound/voice/wheeze.ogg'
/decl/emote/audible/prbt2
key = "prbt2"
emote_message_1p = "You prbt."
emote_message_3p = "prbts."
emote_message_1p_target = "You prbt at TARGET."
emote_message_3p_target = "prbts at TARGET."
emote_sound = 'sound/voice/prbt2.ogg'
/decl/emote/audible/gasp/get_emote_sound(var/atom/user)
..()
var/mob/living/carbon/human/H = user
// CHOMPEdit: Standardize Species Sounds Getters
var/vol = H.species.gasp_volume
var/s = get_species_sound(get_gendered_sound(H))["gasp"]
if(!s && !(get_species_sound(H.species.species_sounds) == "None")) // Failsafe, so we always use the default gasp/etc sounds. None will cancel out anyways.
if(H.identifying_gender == FEMALE)
s = get_species_sound("Human Female")["gasp"]
else // Update this if we ever get herm/etc sounds.
s = get_species_sound("Human Male")["gasp"]
return list(
"sound" = s,
"vol" = vol,
"volchannel" = VOLUME_CHANNEL_SPECIES_SOUNDS
)
/decl/emote/audible/mgeow
key = "mgeow"
emote_message_1p = "You mgeow."
emote_message_3p = "mgeows."
emote_message_1p_target = "You mgeow at TARGET."
emote_message_3p_target = "mgeow at TARGET."
emote_sound = 'modular_chomp/sound/voice/mgeow.ogg'
/decl/emote/audible/xenogrowl
key = "xenogrowl"
emote_message_1p = "You growl unnervingly."
emote_message_3p = "growls unnervingly."
emote_message_1p_target = "You growl unnervingly at TARGET."
emote_message_3p_target = "growls unnervingly at TARGET."
emote_sound = 'modular_chomp/sound/voice/emotes/xenogrowl.ogg'
/decl/emote/audible/xenohiss
key = "xenohiss"
emote_message_1p = "You hiss unnervingly."
emote_message_3p = "hisses unnervingly."
emote_message_1p_target = "You hiss unnervingly at TARGET."
emote_message_3p_target = "hisses unnervingly at TARGET."
emote_sound = 'modular_chomp/sound/voice/emotes/xenohiss.ogg'
/decl/emote/audible/xenopurr
key = "xenopurr"
emote_message_1p = "You purr unnervingly."
emote_message_3p = "purrs unnervingly."
emote_message_1p_target = "You purr unnervingly at TARGET."
emote_message_3p_target = "purrs unnervingly at TARGET."
emote_sound = 'modular_chomp/sound/voice/emotes/xenopurr.ogg'