mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
13 lines
304 B
Plaintext
13 lines
304 B
Plaintext
/decl/emote/audible/scream/get_emote_sound(var/atom/user)
|
|
var/mob/living/carbon/human/H = user
|
|
if(H.get_gender() == FEMALE)
|
|
return list(
|
|
"sound" = H.species.female_scream_sound,
|
|
"vol" = emote_volume
|
|
)
|
|
else
|
|
return list(
|
|
"sound" = H.species.male_scream_sound,
|
|
"vol" = emote_volume
|
|
)
|