mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 22:18:27 +01:00
* Mimes! * Apply suggestion from @Cameron-The-Raven --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
18 lines
518 B
Plaintext
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'
|