Files
afc02440a9 Mime care package (#19456)
* Mimes!

* Apply suggestion from @Cameron-The-Raven

---------

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
2026-05-21 11:02:30 -04:00

18 lines
518 B
Plaintext

/datum/decl/emote/audible/scream/get_emote_sound(atom/user)
..()
if(ishuman(user))
var/mob/living/carbon/human/H = user
var/vol = H.species.scream_volume
return list(
"sound" = get_species_sound(get_gendered_sound(H))["scream"],
"vol" = vol,
"exr" = 20,
"volchannel" = VOLUME_CHANNEL_SPECIES_SOUNDS
)
/datum/decl/emote/audible/malehumanscream
key = "malehumanscream"
emote_message_3p = "screams!"
emote_message_mute_3p = "screams silently!"
emote_sound = 'sound/voice/malescream_2.ogg'