Who is testing

not me!!!
This commit is contained in:
ReoDaProtovali
2024-05-15 15:25:50 -05:00
parent 72a120dadd
commit cd3f5dccda
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)