-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-christmas-keyrol.html
More file actions
1337 lines (1096 loc) · 66.3 KB
/
a-christmas-keyrol.html
File metadata and controls
1337 lines (1096 loc) · 66.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-corrections" lang="en-corrections">
<head>
<title>A Christmas Keyrol - The Backrooms</title>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/init.combined.js"></script>
<script type="text/javascript">
var URL_HOST = 'www.wikidot.com';
var URL_DOMAIN = 'wikidot.com';
var USE_SSL = true ;
var URL_STATIC = 'https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc';
// global request information
var WIKIREQUEST = {};
WIKIREQUEST.info = {};
WIKIREQUEST.info.domain = "backrooms-wiki.wikidot.com";
WIKIREQUEST.info.siteId = 4431268;
WIKIREQUEST.info.siteUnixName = "backrooms-wiki";
WIKIREQUEST.info.categoryId = 38105090;
WIKIREQUEST.info.themeId = 1;
WIKIREQUEST.info.requestPageName = "a-christmas-keyrol";
OZONE.request.timestamp = 1763637429;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "a-christmas-keyrol";
WIKIREQUEST.info.pageId = 1444616127;
WIKIREQUEST.info.lang = "en-corrections";
OZONE.lang = "en-corrections";
var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
</script>
<script type="text/javascript">
require.config({
baseUrl: URL_STATIC + '/common--javascript',
paths: {
'jquery.ui': 'jquery-ui.min',
'jquery.form': 'jquery.form'
}
});
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<meta name="og:title" content="A Christmas Keyrol"/>
<meta name="og:description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:site_name" content="The Backrooms Wiki"/>
<meta name="og:type" content="article"/>
<meta name="description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:image" content="http://backrooms-wiki.wikidot.com/local--files/start/opengraphhallprint.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="twitter:card" content="summary"/>
<meta http-equiv="content-language" content="en-corrections"/>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/WIKIDOT.combined.js"></script>
<style type="text/css" id="internal-style">
/* modules */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/css/pagerate/PageRateWidgetModule.css);
/* theme */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--theme/base/css/style.css);
@import url(https://backrooms-wiki.wikidot.com/component:theme/code/1);
</style>
<link rel="shortcut icon" href="/local--favicon/favicon.gif"/>
<link rel="icon" type="image/gif" href="/local--favicon/favicon.gif"/>
<link rel="apple-touch-icon" href="/local--iosicon/iosicon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/local--iosicon/iosicon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/local--iosicon/iosicon.png" />
<meta name="msapplication-TileImage" content="/local--wp8icon/wp8icon.png"/>
<link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18234656-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
_gaq.push(['old._setAccount', 'UA-68540-5']);
_gaq.push(['old._setDomainName', 'none']);
_gaq.push(['old._setAllowLinker', true]);
_gaq.push(['old._trackPageview']);
</script>
<script type="text/javascript">
window.google_analytics_uacct = 'UA-18234656-1';
window.google_analytics_domain_name = 'none';
</script>
<link rel="manifest" href="/onesignal/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: null,
});
});
</script>
<meta name="google-adsense-account" content="ca-pub-7805322678042888"/>
<style>
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
#side-bar .side-block.languages { margin-top: 0; }
.side-block.languages .heading { margin-top: 1em; }
#side-bar .side-block.socials {
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
#side-bar .side-block .sidebar-social {
background: rgb(var(--dark-gray-monochrome, 30, 30, 30));
color: rgb(var(--white-monochrome, 240, 240, 240));
display: inline-flex;
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
margin: 0.25rem;
padding: 5px;
border-radius: 5px;
text-decoration: none;
align-items: center;
justify-content: center;
transition: 0.1s;
}
#side-bar .side-block .sidebar-social:visited {
color: rgb(var(--white-monochrome, 240, 240, 240));
}
#side-bar .side-block .sidebar-social:is(:hover, :focus) {
background: rgb(var(--bright-accent, 90, 90, 90));
}
@media screen and (max-width: 56.25rem) {
#side-bar .side-block .sidebar-social {
width: 1.6rem;
height: 1.6rem;
font-size: 1.6rem;
margin: 0.3rem;
}
}
</style>
<style>
.creditRate {
float: right;
}
</style>
<style>
#u-infobox {
opacity: 0 !important;
pointer-events: none;
will-change: opacity;
transition: 0.2s;
display: flex;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
position: fixed;
z-index: 20;
background-color: rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.5);
justify-content: center;
align-items: center;
}
#page-content div.rate-box-with-credit-button > .creditButton > p > a::after {
background-color: rgb(var(--swatch-primary));
}
#u-infobox:target {
opacity: 1 !important;
pointer-events: unset;
}
.infobox-title {
--wght: 800;
display: flex;
justify-content: flex-start;
margin: 0;
padding: 1.5ex 1.25rem;
background-color: rgb(var(--modal-header-bg, var(--swatch-primary-darker)));
background-image: linear-gradient(125deg,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 25%,transparent 25%,transparent 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 75%,transparent 75%,transparent 100%);
background-size: 3rem 4.35rem;
color: rgb(var(--modal-header-txt, var(--swatch-text-secondary-color)));
font-family: var(--header-font);
font-size: 1.5em;
font-weight: var(--wght);
line-height: 1ex;
text-transform: uppercase;
}
.infobox {
display: grid;
width: 60vw;
border: 0;
background-color: rgb(var(--modal-bg, var(--white-monochrome)));
box-shadow: inset 0 0 0 .125rem rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25),.5rem .25rem 1rem 0 rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25);
color: rgb(var(--modal-body-text, var(--swatch-text-general)));
}
.infobox-footer {
width: 100%;
margin: 1rem 0 1em;
padding: 1rem 1rem 0 0;
box-shadow: 0-.0625rem 0 0 rgba(var(--modal-header-stripe, var(--swatch-primary)),.2);
text-align: right;
}
.infobox-title p, .infobox-footer p {
all: unset;
}
.infobox-body {
display: grid;
margin: 0 1rem;
padding: 0;
}
</style>
<style>
@import url('https://fontlibrary.org/face/fantasque-sans-mono');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&display=swap');
@import url(https://backrooms-wiki.wdfiles.com/local--code/component%3Atheme/1);
@import url(https://backrooms-wiki.wdfiles.com/local--code/component%3Apatch/1);
:root {
--theme-base: "black-highlighter";
--theme-id: "blank";
--theme-name: "Blank Theme";
--header-title: "";
--header-subtitle: "";
--body-font: 'Lora', serif;
--title-font: 'Lora', serif;
--mono-font: 'Fantasque Sans Mono', monospace;
--white-monochrome: 255, 255, 255;
--pale-gray-monochrome: 255, 255, 255;
--light-gray-monochrome: 255, 255, 255;
--gray-monochrome: 255, 255, 255;
--black-monochrome: 0, 0, 0;
--bright-accent: 0, 0, 0;
--medium-accent: 255, 255, 255;
--dark-accent: 0, 0, 0;
--pale-accent: 255, 0, 0;
--swatch-topmenu-border-color: 255, 255, 255;
--swatch-menubg-dark-color: 0, 0, 0;
--rating-module-button-plus-color: 0, 0, 0;
--rating-module-button-negative-color: 0, 0, 0;
--rating-module-button-cancel-color: 0, 0, 0;
--rating-module-button-credit-color: 0, 0, 0;
--link-color: 255, 0, 0;
--hover-link-color: 255, 0, 0;
--background-gradient-distance: 0rem;
--gradient-header: linear-gradient(to top,
rgba(var(--medium-accent)) 0%,
rgba(var(--medium-accent), 0.90) 100%
);
--diagonal-stripes: linear-gradient(transparent 0);
}
/*
body {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
*/
#skrollr-body {
background-image: none;
}
#container {
background-image: none;
}
div#page-options-bottom-2 > a, div#page-options-bottom > a {
border-radius: 0em;
-moz-border-radius: 0em;
border: none;
}
div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover {
border: none;
}
#header, #top-bar {
background-attachment: scroll;
}
#header {
background-image: none;
}
#header::before {
content: "";
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
background-image: none;
}
#header h1, #header h1 a {
position: absolute;
top: 1rem;
margin: 0;
width: 100%;
display: flex;
justify-content: center;
z-index: 0;
}
#header h2, #header h2 span, #header h2 span::before {
position: absolute;
top: 2rem;
margin: 0;
width: 100%;
display: flex;
justify-content: center;
}
#header h1 a::before, #header h2 span::before {
text-shadow: .063rem 0.1rem 0.1rem #0c0c0c;
}
#search-top-box-input {
border: 0.0625rem solid rgb(255, 255, 255);
}
#search-top-box-input:hover,
#search-top-box-input:focus {
background: rgb(0, 0, 0);
}
#search-top-box-form input[type="submit"] {
background: rgb(255, 255, 255);
border: none;
}
#login-status a:hover {
color: rgb(0, 0, 0);
}
#account-topbutton {
border-color: rgb(255, 255, 255);
}
#account-topbutton:hover {
border-color: rgb(0, 0, 0);
}
.printuser img.small {
display: none;
}
#side-bar {
background-color: rgb(255, 255, 255);
}
#main-content::before {
background-color: rgb(255, 255, 255);
}
#side-bar .heading p,
#side-bar .side-block > .collapsible-block .collapsible-block-link {
--text-shadow: none;
color: rgb(0, 0, 0);
}
.page-rate-widget-box {
--box-shadow: none;
}
blockquote {
box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25);
}
.styled-quote {
background-color:rgb(var(--pale-gray-monochrome));
border-left: 0.5rem solid rgba(var(--gray-monochrome));
padding: 0.1rem 1rem;
margin: 0.5rem 0 0.5rem 0.25rem;
box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25);
}
.dark-styled-quote {
background-color:rgb(var(--gray-monochrome));
border-left: 0.5rem solid rgba(var(--pale-gray-monochrome));
color:rgb(var(--white-monochrome));
padding: 0.1rem 1rem;
margin: 0.5rem 0 0.5rem 0.25rem;
box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25);
}
.dark-styled-quote a{
color: rgb(var(--swatch-menubg-medium-color));
}
.lightblock {
background-color:rgb(var(--white-monochrome));
padding: 0.01rem 1rem;
margin: 0.5rem 0 0.5rem 0.25rem;
box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25);
}
.darkblock {
background-color:rgb(var(--gray-monochrome));
color:rgb(var(--white-monochrome));
padding: 0.01rem 1rem;
margin: 0.5rem 0 0.5rem 0.25rem;
box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25);
}
.darkblock a {
color: rgb(var(--swatch-menubg-medium-color));
}
#page-title {
text-align: center;
}
#footer, #license-area {
z-index: 10000;
}
.footer-wikiwalk-wrapper { height:2em;display: flex;justify-content: space-evenly;align-content: center;flex-direction: column-reverse; }
.footer-wikiwalk-nav a { transition: 0.5s;}
.footer-wikiwalk-nav a:hover { font-size: 150%; color: #ff6d6d; }
.footer-wikiwalk-nav p { display: flex;flex-direction: row;justify-content: center;t;-content: center;align-items: center;}
</style>
<style>
.border1 {position: fixed; top: 0; left: 0; margin: 3rem; z-index: 0;}
.border2 {transform: scaleX(-1); position: fixed; top: 0; right: 0; margin: 3rem; z-index: 0;}
.border3 {transform: scale(-1, -1); position: fixed; bottom: 0; right: 0; margin: 3rem; z-index: 0;}
.border4 {transform: scaleY(-1); position: fixed; bottom: 0; left: 0; margin: 3rem; z-index: 0;}
.desktop {
opacity: 100;
transition: 0.2s;
}
@media only screen and (max-width: 48rem) {
.desktop {
opacity: 0;
display: none;
}
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
.customFont {
font-family: 'Italianno', cursive;
}
#page-title { display: none; }
</style>
<style>
#page-title { display: none !important; }
</style>
<style>
.licensebox .collapsible-block-link {
margin-left: inherit;
padding: inherit;
transition: inherit;
opacity: inherit;
color: inherit;
font-weight: inherit;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/list/ListPagesModule.js"></script>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/pagerate/PageRateWidgetModule.js"></script>
</head>
<body id="html-body">
<div id="skrollr-body">
<a name="page-top"></a>
<div id="container-wrap-wrap">
<div id="container-wrap">
<div id="container">
<div id="header">
<h1><a href="/"><span>The Backrooms</span></a></h1>
<h2><span>You've been here before.</span></h2>
<!-- google_ad_section_start(weight=ignore) -->
<div id="search-top-box" class="form-search">
<form id="search-top-box-form" action="dummy" class="input-append">
<input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/>
</form>
</div>
<div id="top-bar">
<div class="list-pages-box">
</div>
<div class="top-bar">
<ul>
<li><a href="/start">Home</a></li>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/top-rated-pages-this-month">Top Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a>
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
</ul>
</li>
<li><a href="/entities">Entities</a>
<ul>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
</ul>
</li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Community
<ul>
<li><a href="/forum:start">Forums</a></li>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/contest-archive">Contest Archive</a></li>
<li><a href="/page-of-the-week-archive">Page Of The Week Archive</a></li>
<li><a href="/featured-archive">Featured Archive</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/site-rules">Site Rules</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/art-page-policy">Art Page Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
</ul>
</li>
</ul>
</div>
<div class="mobile-top-bar">
<div class="open-menu">
<p><a href="#side-bar">≡</a></p>
</div>
<ul>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
<li><a href="/forum:start">Forums</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div>
<div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div>
</div>
<div id="content-wrap">
<div id="side-bar">
<div class="side-block socials"><a class="sidebar-social fa-brands fa-x-twitter" href="/twitter"><span style="font-size:0%;">Twitter</span></a><a class="sidebar-social fa-brands fa-discord" href="/discord"><span style="font-size:0%;">Discord</span></a><a class="sidebar-social fa-brands fa-facebook" href="https://www.facebook.com/profile.php?id=61575995663725/"><span style="font-size:0%;">Facebook</span></a><a class="sidebar-social fa-brands fa-instagram" href="https://www.instagram.com/backrooms.wikidot/"><span style="font-size:0%;">Instagram</span></a><a class="sidebar-social fa-brands fa-bluesky" href="https://bsky.app/profile/ts.thebackrooms.wiki/"><span style="font-size:0%;">Bluesky</span></a><a class="sidebar-social fa-brands fa-tumblr" href="/tumblr"><span style="font-size:0%;">Tumblr</span></a></div>
<div class="side-block">
<div class="menu-item"><a href="/">Main</a> | <a href="/forum:start">Forum</a></div>
</div>
<div class="side-block">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">For New Users</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">– hide block</a></div>
<div class="collapsible-block-content">
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
<div class="menu-item">
<p><a href="/greenlight-policy">Greenlight Policy</a></p>
</div>
<div class="menu-item">
<p><a href="http://backrooms-wiki.wikidot.com/forum/c-6898685/introductions">Forum: Introduce Yourself</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="side-block languages"><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div></div>
<div class="side-block">
<div class="heading">
<p><strong>Library</strong></p>
</div>
<div class="menu-item">
<p><a href="/normal-levels-i">Levels</a>|<a href="/unnumbered-levels">Unnumbered Levels</a></p>
</div>
<div class="menu-item">
<p><a href="/entities">Entities</a>|<a href="/unnumbered-entities">Unnumbered Entities</a></p>
</div>
<div class="menu-item">
<p><a href="/phenomena">Phenomena</a>|<a href="/objects">Objects</a>|<a href="/tales">Tales</a></p>
</div>
<div class="menu-item">
<p><a href="/poi-s">POI's</a>|<a href="/groups-list">Groups</a>|<a href="/canons">Canons</a></p>
</div>
<div class="menu-item">
<p><a href="/joke-entries">Joke Pages</a>|<a href="/themes">Themes</a>|<a href="/components">Components</a></p>
</div>
<div class="menu-item">
<p><a href="/art-gallery">Art Gallery</a>|<a href="/hubs-hub">Hubs Hub</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Wiki</strong></p>
</div>
<div class="menu-item">
<p><a href="/how-many-pages">How Many Pages?</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-this-month">Top Rated New Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-by-year">Top Pages by Year</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages">Top Pages of All Time</a></p>
</div>
<div class="menu-item">
<p><a href="/most-recently-created">Newly Created Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/underread-and-underrated">Underread Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/random:random-page">Random Page</a></p>
</div>
<div class="menu-item">
<p><a href="/lowest-rated-pages">Lowest Rated Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/system:page-tags">Tags</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Community</strong></p>
</div>
<div class="menu-item">
<p><a href="/system:join">Join The Wiki</a></p>
</div>
<div class="menu-item">
<p><a href="/forum:start">Forum</a> - <a href="/forum:recent-posts">New Posts</a></p>
</div>
<div class="menu-item">
<p><a href="/translations-hub">Translations Hub</a></p>
</div>
<div class="menu-item">
<p><a href="/authors-pages">Authors' Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/meet-the-staff">Meet The Staff</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Resources</strong></p>
</div>
<div class="menu-item">
<p><a href="/faq">FAQ</a></p>
</div>
<div class="menu-item">
<p><a href="/guide-hub">Guide Hub</a></p>
</div>
<div class="menu-item">
<p><a href="http://www.backrooms-sandbox-2.wikidot.com">Sandbox</a></p>
</div>
<div class="menu-item">
<p><a href="/system:recent-changes">Recent Changes</a></p>
</div>
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
</div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
<p><a class="open-menu" href="#side-bar"><br /></a></p>
<a class="close-menu" href="##"><br />
<img src="https://scp-wiki.wdfiles.com/local--files/nav:side/black.png" style="z-index:-1; opacity: 0.3;" alt="black.png" class="image" /><br /></a>
</div>
<!-- google_ad_section_end -->
<div id="main-content">
<div id="action-area-top"></div>
<div id="page-title">
A Christmas Keyrol
</div>
<div id="page-content">
<div class="creditRate">
<div class="rateBox">
<div class="rate-box-with-credit-button"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+33</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div>
<div class="creditButton">
<p><a class="fa fa-info" href="#u-infobox"></a></p>
</div>
</div>
</div>
</div>
<br />
<div style="clear:both; height: 0px; font-size: 1px"></div>
<div id="u-infobox" style="z-index: 999;">
<div class="infobox">
<div class="infobox-title">
<p>Info</p>
</div>
<div class="infobox-body">
<div style="max-height: 60vh; overflow: auto; z-index: 999;">
<div class="image-container floatright"><img src="https://backrooms-wiki.wdfiles.com/local--files/a-christmas-keyrol/keymasster.png" alt="keymasster.png" class="image" /></div>
<p>written by <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/scutoid-studios" onclick="WIKIDOT.page.listeners.userInfo(8055329); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8055329&amp;size=small&amp;timestamp=1758309747" alt="scutoid studios" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8055329)" /></a><a href="http://www.wikidot.com/user:info/scutoid-studios" onclick="WIKIDOT.page.listeners.userInfo(8055329); return false;">scutoid studios</a></span>(<a href="/scutoid">authorpage</a>) and <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/mctoran" onclick="WIKIDOT.page.listeners.userInfo(8896141); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8896141&amp;size=small&amp;timestamp=1758309747" alt="Mctoran" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8896141)" /></a><a href="http://www.wikidot.com/user:info/mctoran" onclick="WIKIDOT.page.listeners.userInfo(8896141); return false;">Mctoran</a></span>(<a href="/mctoran">authorpage</a>) woah? collab? for real?</p>
<p>writing by mctoran and scutoid with some lines from those guys who made the ghosts</p>
<p>ghosts are:</p>
<ul>
<li>past: Blanche (<span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7331266&amp;size=small&amp;timestamp=1758309747" alt="SnomWriting" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7331266)" /></a><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;">SnomWriting</a></span>)</li>
<li>present: Game Master (<span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/justazappyrat" onclick="WIKIDOT.page.listeners.userInfo(7657433); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7657433&amp;size=small&amp;timestamp=1758309747" alt="Justazappyrat" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7657433)" /></a><a href="http://www.wikidot.com/user:info/justazappyrat" onclick="WIKIDOT.page.listeners.userInfo(7657433); return false;">Justazappyrat</a></span>)</li>
<li>future: Icarus Procidens (<span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/natedagreat563" onclick="WIKIDOT.page.listeners.userInfo(7243253); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7243253&amp;size=small&amp;timestamp=1758309747" alt="Natedagreat563" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7243253)" /></a><a href="http://www.wikidot.com/user:info/natedagreat563" onclick="WIKIDOT.page.listeners.userInfo(7243253); return false;">Natedagreat563</a></span>)</li>
</ul>
<p>css by scutoid</p>
</div>
<div class="infobox-footer">
<p><a class="button btn" href="###">Close</a></p>
</div>
</div>
</div>
</div>
<div class="list-pages-box"> <div class="list-pages-item">
<div style="opacity:0.25;pointer-events: none; position:fixed; z-index:999999; top:0; left:0; right:0; bottom:0; background: url(https://live.staticflickr.com/4152/5034955807_5dde17e3f0_b.jpg); background-size: cover; height: 100vh; width:100vw; mix-blend-mode: multiply;">
<p><br />
<br />
<br /></p>
</div>
<div class="border1" style="width:100%; margin: 0px !important; z-index: 9999 !important; background: rgb(255,255,255); background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); height: 3rem;"></div>
<div class="border4" style="width:100%; margin: 0px !important; z-index: 9999 !important; background: rgb(255,255,255); background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); height: 3rem;"></div>
<img src="https://backrooms-wiki.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keyborder.png" class="border1 desktop" alt="keyborder.png" /><img src="https://backrooms-wiki.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keyborder.png" class="border2 desktop" alt="keyborder.png" /><img src="https://backrooms-wiki.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keyborder.png" class="border3 desktop" alt="keyborder.png" /><img src="https://backrooms-wiki.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keyborder.png" class="border4 desktop" alt="keyborder.png" />
<div class="meta-title">
<p>Chapter I</p>
</div>
<br />
<img src="https://scutoidbox.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keymaster2.png" style="float:left;" alt="keymaster2.png" class="image" /> <a class="newpage" href="/trimmed:entity-103">The Keymaster</a> stalked the tunnels of <a href="/the-hub">The Hub</a>, patrolling it just as he did on most other days. But this day was different, for to a certain few, there was none other like it in the year. The Keymaster had heard murmuring amongst some of The Hub's human inhabitants that tonight was Christmas Eve — or so everybody had agreed, since it had been 364 days in counting since the last time they had agreed it was Christmas day.
<p>But The Keymaster, being something other than human, did not quite care for Christmas. He never really worried about what the humans were up to, as long as it didn't interfere with his own activities (which, more often than not, consisted of walking around his tower and thinking about nothing).</p>
<p>Suddenly, The Keymaster was pulled from his thoughts when he bumped into the looming figure of <a href="/entity-133">The Mail Carrier</a>, who slowly extended forth a sealed envelop. He took it from the being's hands, upon which it proceeded on its way without a word.</p>
<p>Before The Keymaster could examine the contents of the envelop, a sudden sensation alerted him to a shift in The Hub. Specifically, a hostile force had attempted to breach the level, and was automatically transported into his <a class="newpage" href="/trimmed:level-help">prison</a> as a result. As was standard practice for him, he went to check on the prison to ensure that that the new captive had been properly contained.</p>
<p>Upon closer investigation, The Keymaster found that the newest would-be infiltrator of his domain was nothing more than a wretch: a pitiful creature with no control over its actions, nor any motivation beyond primal instinct. These were the most common type of assailants that he faced — driven not by malice, but mindlessness. Though, there were some notable exceptions to this, and then there were even those who were both.</p>
<p>“Hey! Shithead! Over here!” A male voice shouted towards The Keymaster, who did not even need to turn around to know who it belonged to. The voice was so obnoxious, so deeply engrained into The Keymaster’s mind, that he knew exactly who it was — <em>Jacob Howard</em>. The Keymaster remained silent at first, silently hoping that perhaps it would make the human go away. But alas, he had no such luck.</p>
<p>“I know you can hear me, motherfucker!” The sheep bleated once again.<br />
The Keymaster sighed, slowly turning around to face Jacob. “This day has been at least bearable up until now. I have no intention of allowing you to ruin it.”<br />
“Funny how you care about what happens to <em>your</em> day, but not <em>mine</em>,” replied Jacob.<br />
“Well, of course. What would it be otherwise?” The Keymaster deadpanned.<br />
“Don’t you know that it’s Christmas Eve?”<br />
The Keymaster paused, before nodding slowly. “I am aware.”<br />
“Christmas is about peace on earth, and good will towards men. Can you find it in your heart, just this one night, to release me and let me celebrate Christmas with my comrades? Let’s bury the hatchet,” Jacob offered, extending his hand towards The Keymaster through his prison cell bars.</p>
<img src="https://backrooms-wiki.wdfiles.com/local--files/fragment:a-christmas-keyrol-1/keymaster1.png" style="float:right;" alt="keymaster1.png" class="image" /> The Keymaster shrugged, shaking his head. “I don’t celebrate Christmas; this place is not peaceful; it is <em>certainly</em> not Earth; and you are not a man — you are a boy.” With that, he turned his heel and proceeded to exit the prison.<br />
“Hey, come back here, shitass! I’m talking to you!” Jacob shouted, though his indignant cries ultimately fell upon deaf ears.
<p>The Keymaster ascended a staircase off to the side of the prison, reaching a level door leading back to The Hub. He raised his key to the door, but suddenly froze when he saw a visage facing him. He did a double-take, blinking several times before no longer seeing the face. Dismissing it as a hallucination, albeit a disturbing one, The Keymaster proceeded through the door.</p>
<hr />
<p>Upon retiring to his living quarters in the tower, The Keymaster finally examined the envelope. It was sealed with an emblem of <a href="/level-906">the Cygnus Archive</a>, already tipping him off as to who it could be from. He opened the envelope and read the letter contained within:</p>
<div style="text-align: center;">
<div class="lightblock">
<p><span class="customFont"><span style="font-size:180%;">Dear Keymaster,<br />
You're invited to the Christmas party I'm hosting at the archive tomorrow! I know you may not be one for social gatherings, but please do consider attending. We would all love to have you.</span></span></p>
<p><span class="customFont">— Blanche</span></p>
</div>
</div>
<p>The Keymaster briefly stared at the letter before simply shrugging, tossing it away in dismissal. While he appreciated the gesture, he did not quite feel that he belonged.</p>
<p>Slowly, he could feel the creeping hand of slumber begin to crawl up his back. He hated this feeling, knowing that it was something he had no control over. Nonetheless, it was inevitable, and all he could do was get into a dignified position before completely shutting down. The Keymaster collapsed on his cold bed of marble, and as slumber overcame him, his eyes began to drift shut.</p>
<p>Just as they fully closed, however, a rift in space and time opened itself, and out stepped the familiar figure of Divus. Ae silently looked around, surveying the environment, and noticed that The Keymaster's living quarters had begun to appear more…contemporary. “Goodness, what have you done with this place? I had surely hoped that a mortal soul would not come with mortal <em>taste</em>.”<br />
The Keymaster scoffed. “I have been making some renovations. Now, surely you are here for a reason beyond mocking my living conditions.”<br />
“That I am,” replied Divus.<br />
“Does it have anything to do with <a class="newpage" href="/trimmed:keys-to-the-kingdom">our last meeting</a>?”<br />
“It does not, in fact. But it has everything to do with your fate.”<br />
The Keymaster was intrigued by this. “What do you mean?”<br />
Divus sighed. “Two of the last things I would ever typically care about are my duties and yourself. Yet in this rare instance, both overlap with my interest. I know your past, present, and possible futures. You have great potential within you, yet even with a human spirit, your heart is still hardened. Therefore, I shall send forth three emissaries to instill the necessary lessons within you.”</p>
<p>Before The Keymaster had the chance to protest, he could already feel himself shutting down, as Divus disappeared from sight.</p>
<div class="footer-wikiwalk-wrapper">
<div class="footer-wikiwalk-nav">
<div style="text-align: center;">
<p>« <a class="newpage" href="/trimmed:keys-to-the-kingdom">keys-to-the-kingdom</a> | Chapter 1 | <a href="/a-christmas-keyrol/offset/1">Chapter 2</a>»</p>
</div>
</div>
</div>
<br />
</div>
</div>
<hr />
<div class="licensebox">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">‡ Licensing / Citation</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">‡ Hide Licensing / Citation</a></div>
<div class="collapsible-block-content">
<p>Cite this page as:</p>
<div class="list-pages-box"> <div class="list-pages-item">
<blockquote>
<p>"<a href="/a-christmas-keyrol">A Christmas Keyrol</a>" by scutoid studios, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-christmas-keyrol">https://backrooms-wiki.wikidot.com/a-christmas-keyrol</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>