diff --git a/code/global_vr.dm b/code/global_vr.dm index 6ed3403aaf7..6293c2197fd 100644 --- a/code/global_vr.dm +++ b/code/global_vr.dm @@ -44,3 +44,18 @@ var/global/list/acceptable_fruit_types= list( "watermelon", "wheat", "whitebeet") + +// Some "scary" sounds. +var/static/list/scawwySownds = list( + 'sound/voice/ScawwySownds/a scawey sownd.ogg', + 'sound/voice/ScawwySownds/is that you.ogg', + 'sound/voice/ScawwySownds/lookit this darkness wow.ogg', + 'sound/voice/ScawwySownds/maint preds.ogg', + 'sound/voice/ScawwySownds/spooky sounds.ogg', + 'sound/voice/ScawwySownds/sus.ogg', + 'sound/voice/ScawwySownds/this is scaewy.ogg', + 'sound/voice/ScawwySownds/what is that behind you.ogg', + 'sound/voice/ScawwySownds/what you doin over dere.ogg', + 'sound/voice/ScawwySownds/whats up with all the trash.ogg', + 'sound/voice/ScawwySownds/youre afraid of the dark arent you.ogg' + ) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index bd7bc878e00..3412e285ad7 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1706,6 +1706,12 @@ if(isturf(loc) && rand(1,1000) == 1) var/turf/T = loc if(T.get_lumcount() <= LIGHTING_SOFT_THRESHOLD) + //VOREStation Add Start + if(text2num(time2text(world.timeofday, "MM")) == 4) + if(text2num(time2text(world.timeofday, "DD")) == 1) + playsound_local(src,pick(scawwySownds),50, 1, -1) + return + //VOREStation Add End playsound_local(src,pick(scarySounds),50, 1, -1) /mob/living/carbon/human/handle_stomach() diff --git a/sound/voice/ScawwySownds/a scawey sownd.ogg b/sound/voice/ScawwySownds/a scawey sownd.ogg new file mode 100644 index 00000000000..6d234731475 Binary files /dev/null and b/sound/voice/ScawwySownds/a scawey sownd.ogg differ diff --git a/sound/voice/ScawwySownds/is that you.ogg b/sound/voice/ScawwySownds/is that you.ogg new file mode 100644 index 00000000000..b4ce1479061 Binary files /dev/null and b/sound/voice/ScawwySownds/is that you.ogg differ diff --git a/sound/voice/ScawwySownds/lookit this darkness wow.ogg b/sound/voice/ScawwySownds/lookit this darkness wow.ogg new file mode 100644 index 00000000000..95616110723 Binary files /dev/null and b/sound/voice/ScawwySownds/lookit this darkness wow.ogg differ diff --git a/sound/voice/ScawwySownds/maint preds.ogg b/sound/voice/ScawwySownds/maint preds.ogg new file mode 100644 index 00000000000..83ad18d7927 Binary files /dev/null and b/sound/voice/ScawwySownds/maint preds.ogg differ diff --git a/sound/voice/ScawwySownds/spooky sounds.ogg b/sound/voice/ScawwySownds/spooky sounds.ogg new file mode 100644 index 00000000000..5462ba94dd8 Binary files /dev/null and b/sound/voice/ScawwySownds/spooky sounds.ogg differ diff --git a/sound/voice/ScawwySownds/sus.ogg b/sound/voice/ScawwySownds/sus.ogg new file mode 100644 index 00000000000..583550d4561 Binary files /dev/null and b/sound/voice/ScawwySownds/sus.ogg differ diff --git a/sound/voice/ScawwySownds/this is scaewy.ogg b/sound/voice/ScawwySownds/this is scaewy.ogg new file mode 100644 index 00000000000..ea9e4077538 Binary files /dev/null and b/sound/voice/ScawwySownds/this is scaewy.ogg differ diff --git a/sound/voice/ScawwySownds/what is that behind you.ogg b/sound/voice/ScawwySownds/what is that behind you.ogg new file mode 100644 index 00000000000..a6873677d0b Binary files /dev/null and b/sound/voice/ScawwySownds/what is that behind you.ogg differ diff --git a/sound/voice/ScawwySownds/what you doin over dere.ogg b/sound/voice/ScawwySownds/what you doin over dere.ogg new file mode 100644 index 00000000000..1b7e40b4e54 Binary files /dev/null and b/sound/voice/ScawwySownds/what you doin over dere.ogg differ diff --git a/sound/voice/ScawwySownds/whats up with all the trash.ogg b/sound/voice/ScawwySownds/whats up with all the trash.ogg new file mode 100644 index 00000000000..0e1e46c0e54 Binary files /dev/null and b/sound/voice/ScawwySownds/whats up with all the trash.ogg differ diff --git a/sound/voice/ScawwySownds/youre afraid of the dark arent you.ogg b/sound/voice/ScawwySownds/youre afraid of the dark arent you.ogg new file mode 100644 index 00000000000..0ab4311f722 Binary files /dev/null and b/sound/voice/ScawwySownds/youre afraid of the dark arent you.ogg differ