mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 12:50:29 +01:00
f8333a8d93
* move those to static paths * maps * . * . * ugh * .
17 lines
477 B
Plaintext
17 lines
477 B
Plaintext
/datum/decl/emote/audible/scream/get_emote_sound(var/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_sound = 'sound/voice/malescream_2.ogg'
|