Reapply "Who is testing"

This reverts commit 233ea315a6.
This commit is contained in:
MrSky12
2024-05-15 23:28:38 +02:00
parent 6901bc7fec
commit 6504160f61
3 changed files with 11 additions and 7 deletions
@@ -10,16 +10,20 @@
disliked_food = GROSS | RAW
liked_food = JUNKFOOD | FRIED
var/list/female_screams = list('sound/voice/human/femalescream_1.ogg', 'sound/voice/human/femalescream_2.ogg', 'sound/voice/human/femalescream_3.ogg', 'sound/voice/human/femalescream_4.ogg', 'sound/voice/human/femalescream_5.ogg')
var/list/male_screams = list('sound/voice/human/malescream_1.ogg', 'sound/voice/human/malescream_2.ogg', 'sound/voice/human/malescream_3.ogg', 'sound/voice/human/malescream_4.ogg', 'sound/voice/human/malescream_5.ogg')
var/list/female_screams = list('sound/voice/human/femalescream_1.ogg', 'sound/voice/human/femalescream_2.ogg', \
'sound/voice/human/femalescream_3.ogg', 'sound/voice/human/femalescream_4.ogg', \
'sound/voice/human/femalescream_5.ogg')
var/list/male_screams = list('sound/voice/human/malescream_1.ogg', 'sound/voice/human/malescream_2.ogg', \
'sound/voice/human/malescream_3.ogg', 'sound/voice/human/malescream_4.ogg', \
'sound/voice/human/malescream_5.ogg')
/datum/species/human/get_scream_sound(mob/living/carbon/human/H)
if(H.gender == FEMALE)
return pick(female_screams)
else
if(prob(1))
return sound = pick('modular_citadel/sound/voice/scream_m1.ogg', 'modular_citadel/sound/voice/scream_m2.ogg', \
'sound/voice/human/wilhelm_scream.ogg')
return pick('modular_citadel/sound/voice/scream_m1.ogg', 'modular_citadel/sound/voice/scream_m2.ogg', \
'sound/voice/human/wilhelm_scream.ogg')
return pick(male_screams)
/datum/species/human/qualifies_for_rank(rank, list/features)