-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-christoween-carol.html
More file actions
1089 lines (905 loc) · 54.9 KB
/
a-christoween-carol.html
File metadata and controls
1089 lines (905 loc) · 54.9 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 Christoween Carol - 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-christoween-carol";
OZONE.request.timestamp = 1763648847;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "a-christoween-carol";
WIKIREQUEST.info.pageId = 1329861615;
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 Christoween Carol"/>
<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(http://backrooms-wiki.wikidot.com/local--files/component:theme/nulim-norm.min.css);
</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>
/* Site Theme */
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Anuliminal/1);
/* Collapsible Sidebar */
@import url("https://backrooms-wiki.wikidot.com/component:sidebar-theme/code/1");
/* User Flairs */
@import url("https://backrooms-wiki.wikidot.com/component:user-flairs/code/1");
</style>
<style>
@import url(https://backrooms-wiki.wikidot.com//local--code/theme%3Ahalloween2021/1);
</style>
<style>
.rounded-box {
padding:0.1rem 0.7rem;
margin:1rem 0;
background: #d1c6b4;
border-radius:0.6rem;
box-shadow: 0px 0px 3px;
border: 1.75px solid #dbd4c8;
box-sizing:border-box;
}
.square-box {
padding:0.1rem 0.7rem;
margin:1rem 0;
background:#d1c6b4;
border-radius:0;
box-shadow: 0px 0px 3px;
border: 1.75px solid #dbd4c8;
box-sizing:border-box;
}
</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 Christoween Carol
</div>
<div id="page-content">
<div style="text-align: right;"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+17</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>
<div class="square-box">
<p><strong>Overseer Stretch:</strong> Andrew, we've got some unfortunate news.</p>
<p><strong>Overseer Andrew:</strong> Huh?</p>
<p><strong>Overseer Stretch:</strong> Do you remember the Halloween and Christmas parties you scheduled for <a href="/level-11">Base Beta</a>?</p>
<p><strong>Overseer Andrew:</strong> Yeah.</p>
<p><strong>Overseer Stretch:</strong> They're both scheduled for tonight.</p>
<p><strong>Overseer Andrew:</strong> Really? They were 2 months apart when I first scheduled them… Time must be acting up again in Eleven.</p>
<p><strong>Overseer Stretch:</strong> Andrew, what are we going to do? People have been looking forward to both of those for a long time. Should we reschedule?</p>
<p><strong>Overseer Andrew:</strong> No! I already bought my costume! And my Secret Santa gift!</p>
<p><strong>Overseer Stretch:</strong> Then how are we going to solve this?</p>
<p><strong>Overseer Andrew:</strong> I've got it!</p>
<p><strong>Overseer Stretch:</strong> Oh?</p>
<p><strong>Overseer Andrew:</strong> Picture this: "The Base Beta Christoween Party!"</p>
<p><strong>Overseer Stretch:</strong> Andrew, you're a genius!</p>
<hr />
<p><strong>Overseer Andrew:</strong> Stretch, I need some ideas for Christoween decorations. Do you know anything that works for both Halloween and Christmas?</p>
<p><strong>Overseer Stretch:</strong> Let's see… There's uh. The skeleton guy from The Nightmare Before Christmas.</p>
<p><strong>Overseer Andrew:</strong> Jack Skellington?</p>
<p><strong>Overseer Stretch:</strong> Yeah, him!</p>
<p><strong>Overseer Andrew:</strong> Santa was also in that movie, so I'll put him down too.</p>
<p><strong>Overseer Stretch:</strong> Oh! There's also the three ghosts from The Muppet Christmas Carol. That's not really a Christoween movie, but ghosts are pretty spooky.</p>
<p><strong>Overseer Andrew:</strong> Of course!</p>
</div>
<hr />
<p><a href="/entity-18">The Beast of Level 5</a> carefully opens the door to the <a href="/level-5">hotel</a> room.</p>
<p>"Hello! I hope I didn't startle you… I'm the Gentleman, the owner of this estate and—"</p>
<p>The Beast notices that the man in the room is motionless and seems to be covered in heavy iron chains.</p>
<p>"I could have sworn I called dibs on this one."</p>
<p>The <a href="/entity-164">phone</a> rings, and the Beast picks it up.</p>
<p>«Hey, uh, Mr. Bossman, One of our guests just died and I don't think it was one of us who killed him…»</p>
<p>"I know. I just got here and now he's laying on the bed, covered in chains. Did you see anything before he died?"</p>
<p>«No, uh, he just started mumbling something like "My aberidge was my downfall", and—»</p>
<p>"Avarice?"</p>
<p>«Yeah, I think that was the word… and then he just fell over and I lost sight of him.»</p>
<p>"And what about the chains? Did you see where they came from?"</p>
<p>«No sir, but maybe they're the aberidge he was talking about?»</p>
<p>"I see. I will investigate further. Thank you."</p>
<p>«Yeah, of co—»</p>
<p><em>Click.</em></p>
<p>Suddenly, the chain-covered figure lets out a cry.</p>
<p><em>"Aaaaahhhhhh"</em></p>
<p>"You're alive?"</p>
<p><em>"No. I am dead, haunted by the sins of my past; haunting those who sin in the present."</em></p>
<p>The figure rises above the bed, a specter.</p>
<p><em>"You will someday be like me, Beast. Walking the earth, forever weighed down by the chain I forged in my life."</em></p>
<p>"Wait…"</p>
<p>The Beast looks at a calendar in the corner of the room.</p>
<p>"God damn it. It's Christoween again, isn't it. This is the third year in a row where Halloween has fallen on Christmas."</p>
<p><em>"Are you not listening, dear Beast? It is your loss. Because you too will die one day. It may not be tomorrow or the day after that. It may take until the heat death of the universe, but we all fall down eventually. And when that happens, you will have to bear the burden of your voracity, but yours will be a million times heavier than mine. That is, if you do not change your ways."</em></p>
<p>"Yeah yeah, I remember now. Three ghosts. Don't be greedy. Got it."</p>
<p><em>"You will shortly be visited by the three ghosts of Christoween and—- Oh. You've done this before?"</em></p>
<p>"Yep. They come here every Chistoween and bother me. It's such a drag."</p>
<p><em>"My time is running out, but I will leave you with my advice: Heed their words, dear Beast, for if you do not—"</em></p>
<p>The specter disappears into a plume of smoke.</p>
<p>"I guess now I just need to wait for the other three."</p>
<p style="text-align: center;"><strong>…</strong></p>
<p>Sitting on the bed, the Beast gets a knock on the door.</p>
<p>"Ah, that should be the first one now."</p>
<p>The door opens it, and a spirit made of candle wax with a head of ghostly flame flits through. It stops with its back still to the Beast.</p>
<p>"Show yourself!"</p>
<p>The ghost does not turn around.</p>
<p><em>"I am the ghost of Christoween Past."</em></p>
<p>"Right. I remember you from last year."</p>
<p><em>"Rise, and walk with me."</em></p>
<p>The Beast stands up and walks with the spirit through the doorway, which now shows a bright white glow rather than the hallway outside.</p>
<div class="square-box">
<p>The Beast and the spirit appear at a crossroads. In front of them, a child with the face of a squid and a cute little suit stands next to an adult whose head cannot be seen.</p>
<div class="square-box">
<p>"Daddy, when I grow up, I want to run a murder hotel!"</p>
</div>
<p>The adult does not respond. The child looks sad.</p>
<div class="square-box">
<p>"Daddy, why don't you love me?"</p>
</div>
<p><em>"A child. Alone. Unloved."</em></p>
<p>"I don't think this was my childhood… I mean, I've been working here so long that I don't really remember, but I'm pretty sure this isn't it."</p>
<p><em>"There is dissonance, for how could such a pure child become what you are today?"</em></p>
<p>"Yeah no. This isn't me."</p>
<p>The child continues pulling on the adult's hand and then sits down with tears in his eyes.</p>
<p><em>"Walk with me."</em></p>
<p>The Beast and the spirit walk through a doorway that has suddenly appeared next to them. Again, into the white.</p>
</div>
<div class="square-box">
<p>Now, the two appear in an office wherein a squid-headed adult sits at the desk.</p>
<p>"Hey, this is my office. Wait, is this from last year?"</p>
<p><em>"Here you see Christoween one year past."</em></p>
<p>There is a knock on the door.</p>
<div class="square-box">
<p>"Is that the first one?</p>
</div>
<p>The door opens it, and a spirit made of candle wax with a head of ghostly flame flits through.</p>
<div class="square-box">
<p><em>"I am the ghost of Christoween Past."</em></p>
</div>
<p>The Beast at the desk says nothing.</p>
<div class="square-box">
<p><em>"Rise, and walk with me."</em></p>
</div>
<p><em>"Follow them."</em></p>
<p>The Beast and the spirit follow the past Beast and the past spirit through the white doorway.</p>
<div class="square-box">
<p>The present two are at the crossroads now. They watch the past Beast and the past spirit who in turn watch the child and the adult.</p>
<div class="square-box">
<p>"Daddy, when I grow up, I want to run a murder hotel!"</p>
</div>
<p>"Why are you showing this to me again?"</p>
<p><em>"I am simply showing you a Christoween one year past."</em></p>
<p>"But it's the same thing as this year."</p>
<p><em>"Perhaps that's the lesson. After all this time, you still have not changed your ways."</em></p>
<p>"What?"</p>
<p><em>"My time is nearly up. We must be going."</em></p>
<p>The two walk through the white doorway.</p>
</div>
</div>
<p>The Beast appears back in the room, but the spirit is nowhere to be seen.</p>
<p>"It seems that's it for that one."</p>
<p style="text-align: center;"><strong>…</strong></p>
<p>The Beast again hears a knock on his door. It slams open.</p>
<p><em>"Ho ho ho or treat, bitch!"</em></p>
<p>A figure in a green robe with a full beard and a glass of wine loudly stomps into the room.</p>
<p>"Ugh. Just what I need."</p>
<p><em>"It is I, The Ghost of Christoween Present. Now are we gonna have some fun or what?"</em></p>
<p>"Sure. Let's get it over with."</p>
<p>They walk through the white doorway.</p>
<div class="square-box">
<p>The two appear outside of <a href="/level-11">Base Beta</a>.</p>
<p><em>"Oh shit. Looks like the M.E.G. is hosting a Christoween party! We should crash it! It'll be fun!"</em></p>
<p>"I don't think it's really my type of deal."</p>
<p>The M.E.G. members walk by and begin talking amongst themselves.</p>
<div class="square-box">
<p>"Christoween?"</p>
<p>"Yeah, heard the M.E.G. are cutting costs on the holiday parties after the Martin Luther King Jr. Day incident and they decided to celebrate two holidays in the same day."</p>
<p>"Well, to be fair, Halloween did fall on Christmas this year."</p>
<p>"Yeah, but that doesn't mean they had to put them at the same time."</p>
<p>"Well, they can't put it tomorrow because that's Thanksgiving, and the first three days of Hanukkah are the day after that. Plus, I already got my Halloween costume and my Secret Santa gift."</p>
<p>"Fair enough, I guess."</p>
</div>
<p><em>"Damn. They don't seem happy, do they? If only there was some cool-ass gentleman to brighten their day."</em></p>
<p>"No."</p>
<p><em>"Whatever you say, B. Let's go to the next part."</em></p>
</div>
<div class="square-box">
<p>The two observe another group of Level 11 denizens walking around a costume store.</p>
<div class="square-box">
<p>"I know! Maybe I can dress up as the Beast of Level 5!"</p>
<p>"I don't know man. I feel like that's the type of thing to get you merc'd by the Beast himself. I believe the saying goes 'don't speak of the devil or else he might appear' and that probably goes double for dressing up as him."</p>
<p>"Wait, but the Beast seemed so nice in his article, he even called himself 'The Gentleman'."</p>
<p>"Nah, that's just a front so that he can come in and kill you. The Beast is mad scary, bro."</p>
</div>
<p><em>"Damn, homie, they're all calling you a Beast. How does that make you feel?"</em></p>
<p>"Well, I would prefer the Gentleman, but it's just a side-effect of working in the industry, I suppose."</p>
<p><em>"What industry is that?"</em></p>
<p>"Hotel ownership."</p>
<p><em>"I see."</em></p>
<p>They both stand awkwardly in silence for a couple minutes.</p>
<p><em>"Well, I gotta head out now. I have another haunting at 7 and a party at 8, but you should totally change your ways or something. Okay bye."</em></p>
</div>
<p>And with that the Beast was again left alone, awaiting his third and final visitor.</p>
<p style="text-align: center;"><strong>…</strong></p>
<p>The door opens without a knock and a figure in a dark hooded cloak flits soundlessly through the doorway.</p>
<p>"And you are the Ghost of Christoween Yet to Come, I presume?"</p>
<p>The ghost does not answer, but simply motions for the Beast to follow it through the doorway.</p>
<p>"Very well."</p>
<div class="square-box">
<p>The two stand on a grassy hill with the setting sun to their backs.</p>
<p>A single <a href="/entity-135">silent figure</a> lowers a coffin into the ground, tears welling in its eyes.</p>
<p>The gravestone has no birth or death date but simply reads:</p>
<div class="square-box">
<p style="text-align: center;"><em>The Gentleman</em></p>
</div>
<p>They watch as the coffin is lowered and then stay until the sun sets.</p>
<p>The crying figure is still there when they leave.</p>
</div>
<p>"That's it? That's the final hurrah? A scene of my funeral that may or may not be real?"</p>
<p>The shrouded figure says nothing.</p>
<p>"I have an idea. Let's make a deal. If I spread Christoween cheer today and today only, you and the rest of your company stop visiting me every Christoween. Does that sound like a deal?"</p>
<p>The shrouded figure says nothing but holds out a pale hand. They shake.</p>
<p>"Alright, it's a deal."</p>
<hr />
<div class="square-box">
<p><em>Two men stand in a decorated auditorium. Each in costume: one dressed as a <a href="/entity-67">Partygoer</a>, and the other as a GNK Droid.</em></p>
<p><strong>Overseer Andrew:</strong> Okay, the Christoween party starts in 5 minutes, do we have everything?</p>
<p><strong>Overseer Stretch:</strong> Gonk! I mean— Yep! I think that should be everything.</p>
<p><strong>Overseer Andrew:</strong> Let's see, we have costumes and gifts and decorations—</p>
<p><strong>Overseer Stretch:</strong> Yep, I'm impressed that you were able to get a life-sized replica of Jack Skellington as well as every muppet from A Muppet Christmas Carol on such short notice!</p>
<p><strong>Overseer Andrew:</strong> Well, as you know I have my contacts. We sure had quite an adventure today, didn't we!</p>
<p><strong>Overseer Stretch:</strong> We sure did!</p>
<p><strong>Overseer Andrew:</strong> Yep, so we should have everything— Shoot!</p>
<p><strong>Overseer Stretch:</strong> Huh?</p>
<p><strong>Overseer Andrew:</strong> We forgot the candy! And we have just under 5 minutes until the party starts!</p>
<p><strong>Overseer Stretch:</strong> Oh no!</p>
<p><em>Just then, the two notice something strange. Under each of the pine trees, decorated carefully with little bats and pumpkins, there are large boxes. On each of the boxes is a note:</em></p>
<div class="square-box">
<p style="text-align: center;"><em>From the Terror Hotel Staff — Happy Christoween!</em></p>
</div>
<p><strong>Overseer Andrew (shaking one of the boxes):</strong> It's full of… candy?!</p>
<p><strong>Overseer Stretch:</strong> It's a Christoween miracle!</p>
<p><em>From out of sight, The Gentleman smiles.</em></p>
</div>
<hr />
<div style="text-align: right;">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">Author/Licensing</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">Hide author</a></div>
<div class="collapsible-block-content">
<div style="text-align: left;">
<p><strong>Author:</strong><br />
<span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/cutthebirch" onclick="WIKIDOT.page.listeners.userInfo(7000329); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7000329&amp;size=small&amp;timestamp=1762161910" alt="CutTheBirch" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7000329)" /></a><a href="http://www.wikidot.com/user:info/cutthebirch" onclick="WIKIDOT.page.listeners.userInfo(7000329); return false;">CutTheBirch</a></span><br />
<a href="/cutthebirch">Author Page</a></p>
<table class="wiki-content-table">
<tr>
<th colspan="2">Other Pages By This Author</th>
</tr>
<tr>
<th>Levels</th>
<td><a href="http://backrooms-wiki.wikidot.com/level-799">Cyllene and Her Memories</a> | <a href="http://backrooms-wiki.wikidot.com/level-998-2">Fight Club</a> | <a href="http://backrooms-wiki.wikidot.com/level-0-1">Zenith Station</a> | <a href="http://backrooms-wiki.wikidot.com/level-756">On big island live only one cow.</a> | <a href="http://backrooms-wiki.wikidot.com/level-612">Memories of Memories of Memories</a> | <a href="http://backrooms-wiki.wikidot.com/level-123">Haunted House</a> | <a href="http://backrooms-wiki.wikidot.com/level-65">Bloodstained Garden</a> | <a href="http://backrooms-wiki.wikidot.com/level-32">Forest of the Skeleton Queen</a> | <a href="http://backrooms-wiki.wikidot.com/level-448">Penitentiary</a> | <a href="http://backrooms-wiki.wikidot.com/level-826">Sea of Bones</a> | <a href="http://backrooms-wiki.wikidot.com/level-566">Factory</a> | <a href="http://backrooms-wiki.wikidot.com/level-290">Multiplex</a> | <a href="http://backrooms-wiki.wikidot.com/level-167">America's Favorite Pastime</a> | <a href="http://backrooms-wiki.wikidot.com/joke-level-blancherooms">The Blancherooms</a> | <a href="http://backrooms-wiki.wikidot.com/deleted-level-14">The Military Hospital</a> | <a href="http://backrooms-wiki.wikidot.com/level-499">Terrestrial Paradise</a> | <a href="http://backrooms-wiki.wikidot.com/level-495">Trade in your coins for eyes.</a> | <a href="http://backrooms-wiki.wikidot.com/level-324">The Purple Rooms</a> | <a href="http://backrooms-wiki.wikidot.com/level-648">Apocryphal City of Masks</a> | <a href="http://backrooms-wiki.wikidot.com/level-729">Mondays</a> | <a href="http://backrooms-wiki.wikidot.com/level-899">Yonder's End</a> | <a href="http://backrooms-wiki.wikidot.com/level-494">Mirror Lake High School</a> | <a href="http://backrooms-wiki.wikidot.com/level-14">Paradise</a> | <a href="http://backrooms-wiki.wikidot.com/level-97">Lighthouse</a> | <a href="http://backrooms-wiki.wikidot.com/level-944">Belly of the Beast</a> | <a href="http://backrooms-wiki.wikidot.com/level-532">Pit of Despair</a> | <a href="http://backrooms-wiki.wikidot.com/level-372">Soporous</a> | <a href="http://backrooms-wiki.wikidot.com/level-203">Dead End</a> | <a href="http://backrooms-wiki.wikidot.com/level-254">Blue Heaven</a> | <a href="http://backrooms-wiki.wikidot.com/level-117">Math Class</a></td>
</tr>
<tr>
<th>Entities</th>
<td><a href="http://backrooms-wiki.wikidot.com/entity-202">Bident</a> | <a href="http://backrooms-wiki.wikidot.com/entity-23">Unapproachable Hose</a> | <a href="http://backrooms-wiki.wikidot.com/entity-740">Justice</a> | <a href="http://backrooms-wiki.wikidot.com/joke-entity-667">Satan</a> | <a href="http://backrooms-wiki.wikidot.com/entity-987">The God on Level 532</a> | <a href="http://backrooms-wiki.wikidot.com/entity-58">Adym</a> | <a href="http://backrooms-wiki.wikidot.com/entity-21">Hook Head</a> | <a href="http://backrooms-wiki.wikidot.com/entity-210">Imposters</a> | <a href="http://backrooms-wiki.wikidot.com/entity-332">Constructors</a> | <a href="http://backrooms-wiki.wikidot.com/entity-93">Night Stocker</a> | <a href="http://backrooms-wiki.wikidot.com/entity-165">Solitude</a> | <a href="http://backrooms-wiki.wikidot.com/entity-56">Entity 56 does not exist</a> | <a href="http://backrooms-wiki.wikidot.com/entity-196">Child of the Walls</a> | <a href="http://backrooms-wiki.wikidot.com/gods-of-griots">Gods of Griots</a> | <a href="http://backrooms-wiki.wikidot.com/entity-27">Athenian Ducks</a> | <a href="http://backrooms-wiki.wikidot.com/entity-91">Mr. Freeman</a></td>
</tr>
<tr>
<th>Objects</th>
<td>[<a href="http://backrooms-wiki.wikidot.com/object-31|Super">Almond Water</a>] | <a href="http://backrooms-wiki.wikidot.com/object-31">Ouija Board</a> | <a href="http://backrooms-wiki.wikidot.com/object-5">Candy</a> | <a href="http://backrooms-wiki.wikidot.com/object-10">Scarecrows</a> | <a href="http://backrooms-wiki.wikidot.com/object-89">Kat</a> | <a href="http://backrooms-wiki.wikidot.com/object-65">Madison Street Mannequin</a></td>
</tr>
<tr>
<th>POIs</th>
<td><a href="http://backrooms-wiki.wikidot.com/father-pigeon">Father Pigeon</a> | <a href="http://backrooms-wiki.wikidot.com/the-tarantula">The Tarantula</a> | <a href="http://backrooms-wiki.wikidot.com/kain-petrie">Kain Petrie</a> | <a href="http://backrooms-wiki.wikidot.com/j-doe">J. Doe</a></td>
</tr>
<tr>
<th>Tales</th>
<td><a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-5">B-Rooms Magazine, Vol. 5</a> | <a href="http://backrooms-wiki.wikidot.com/a-small-child-wanders-onto-the-set-of-talking-with-quinoa">Another Inexplicably Extended Quinoa Adventure</a> | <a href="http://backrooms-wiki.wikidot.com/the-parrot-and-the-knave">The Parrot And The Knave</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-4">B-Rooms Magazine, Vol. 4</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-3">B-Rooms Magazine, Vol. 3</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-2">B-Rooms Magazine, Vol. 2</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-1">B-Rooms Magazine, Vol. 1</a> | <a href="http://backrooms-wiki.wikidot.com/spilled-blilk-2">Don't Cry Over Spilled Blilk 2</a> | <a href="http://backrooms-wiki.wikidot.com/spilled-blilk">Don't Cry Over Spilled Blilk</a> | <a href="http://backrooms-wiki.wikidot.com/laxity">laxity</a> | <a href="http://backrooms-wiki.wikidot.com/a-christoween-caron">A Christoween Carol</a> | <a href="http://backrooms-wiki.wikidot.com/observations-in-downtown-diner">Observations In Downtown Diner, 9/28/2025</a> | <a href="http://backrooms-wiki.wikidot.com/love-aster">Love, Aster</a> | <a href="http://backrooms-wiki.wikidot.com/i-have-met-the-devil-and-his-name-is-garfield">I have met the devil, and his name is Garfield</a> | <a href="http://backrooms-wiki.wikidot.com/saveourship">SAVEOURSHIP</a> | <a href="http://backrooms-wiki.wikidot.com/jun-17-1993">Jun 17 1993</a> | <a href="http://backrooms-wiki.wikidot.com/death-death-death-death-life">Death Death Death Death Death Death Life</a></td>
</tr>
<tr>
<th>Themes</th>
<td><a href="http://backrooms-wiki.wikidot.com/theme:bntg">B.N.T.G.</a> | <a href="http://backrooms-wiki.wikidot.com/theme:bluebird">Bluebird</a> | <a href="http://backrooms-wiki.wikidot.com/theme:backrooms-robotics">Backrooms Robotics</a> | <a href="http://backrooms-wiki.wikidot.com/theme:amor-incrementum">Amor Incrementum</a> | <a href="http://backrooms-wiki.wikidot.com/theme:database">Database</a> | <a href="http://backrooms-wiki.wikidot.com/theme:kalag">Kalag</a></td>
</tr>
<tr>
<th>Essays</th>
<td><a href="http://backrooms-wiki.wikidot.com/how-to-make-your-draft-more-interesting">How To Make Your Draft More Interesting</a></td>
</tr>
<tr>
<th colspan="2">Storylines</th>
</tr>
<tr>
<th>Gods of Griots</th>
<td><a href="http://backrooms-wiki.wikidot.com/gods-of-griots-hub">Hub</a> | <a href="http://backrooms-wiki.wikidot.com/gods-of-griots">Gods of Griots</a> | <a href="http://backrooms-wiki.wikidot.com/level-532">Pit of Despair</a> | <a href="http://backrooms-wiki.wikidot.com/level-648">Apocryphal City of Masks</a> | <a href="http://backrooms-wiki.wikidot.com/laxity">laxity</a> | <a href="http://backrooms-wiki.wikidot.com/entity-987">The God on Level 532</a> | <a href="http://backrooms-wiki.wikidot.com/entity-202">Bident</a> | The Oracle (Coming Soon)</td>
</tr>
<tr>
<th>Team Alice</th>
<td><a href="http://backrooms-wiki.wikidot.com/level%20203">Dead End</a> | <a href="http://backrooms-wiki.wikidot.com/level%2097">Lighthouse</a> | <a href="http://backrooms-wiki.wikidot.com/i-have-met-the-devil-and-his-name-is-garfield">I have met the devil, and his name is Garfield</a> | Clockwork Colossus (Coming Soon)</td>
</tr>
<tr>
<th>Garfield</th>
<td><a href="http://backrooms-wiki.wikidot.com/level-729">Mondays</a> | <a href="http://backrooms-wiki.wikidot.com/i-have-met-the-devil-and-his-name-is-garfield">I have met the devil, and his name is Garfield</a> | <a href="http://backrooms-wiki.wikidot.com/j-doe">J. Doe</a> | <a href="http://backrooms-wiki.wikidot.com/observations-in-downtown-diner">Observations In Downtown Diner, 9/28/2025</a></td>
</tr>
<tr>
<th>Blancherooms</th>
<td><a href="http://backrooms-wiki.wikidot.com/joke-level-blancherooms">The Blancherooms</a> | <a href="http://backrooms-wiki.wikidot.com/spilled-blilk">Don't Cry Over Spilled Blilk</a> | <a href="http://backrooms-wiki.wikidot.com/spilled-blilk-2">Don't Cry Over Spilled Blilk 2</a></td>
</tr>
<tr>
<th>B-Room Magazine</th>
<td><a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-1">B-Rooms Magazine, Vol. 1</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-2">B-Rooms Magazine, Vol. 2</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-3">B-Rooms Magazine, Vol. 3</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-4">B-Rooms Magazine, Vol. 4</a> | <a href="http://backrooms-wiki.wikidot.com/b-rooms-vol-5">B-Rooms Magazine, Vol. 5</a></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<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-christoween-carol">A Christoween Carol</a>" by CutTheBirch, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-christoween-carol">https://backrooms-wiki.wikidot.com/a-christoween-carol</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">+ Embed citation as HTML</a><a href="javascript:;">- Embed citation as HTML</a></div>
</div>
<div class="colmod-content"><div class="list-pages-box"> <div class="list-pages-item">
<div class="code" style="user-select: all;">
<p><span style="white-space: pre-wrap;">"<a href="https://backrooms-wiki.wikidot.com/a-christoween-carol">A Christoween Carol</a>" by CutTheBirch, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-christoween-carol">https://backrooms-wiki.wikidot.com/a-christoween-carol</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</span></p>
</div>
</div>
</div></div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<hr />
<div class="content-separator" style="display: none:"></div>
<p>For more information about on-wiki content, visit the <a href="/licensing-master-list">Licensing Master List</a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page-tags">
<span>
<a href="/system:page-tags/tag/_licensebox#pages">_licensebox</a><a href="/system:page-tags/tag/_trim#pages">_trim</a><a href="/system:page-tags/tag/comedy#pages">comedy</a><a href="/system:page-tags/tag/entity-18#pages">entity-18</a><a href="/system:page-tags/tag/level-5#pages">level-5</a><a href="/system:page-tags/tag/overseer-andrew#pages">overseer-andrew</a><a href="/system:page-tags/tag/overseer-stretch#pages">overseer-stretch</a><a href="/system:page-tags/tag/spookycon2021#pages">spookycon2021</a><a href="/system:page-tags/tag/tale#pages">tale</a>
</span>
</div>
<div id="page-info-break"></div>
<div id="page-options-container">
<div id="page-info">page revision: 8, last edited: <span class="odate time_1762161910 format_%25e%20%25b%20%25Y%2C%20%25H%3A%25M%20%28%25O%20ago%29">03 Nov 2025 09:25</span></div>
<div id="page-options-bottom" class="page-options-bottom">
<a href="javascript:;" class="btn btn-default" id="edit-button">Edit</a>
<a href="javascript:;" class="btn btn-default" id="pagerate-button">Rate (<span id="prw54355">+17</span>)</a>
<a href="javascript:;" class="btn btn-default" id="tags-button">Tags</a>
<a href="/forum/t-14248276/a-christoween-carol" class="btn btn-default" id="discuss-button">Discuss (8)</a>
<a href="javascript:;" class="btn btn-default" id="history-button">History</a>
<a href="javascript:;" class="btn btn-default" id="files-button">Files</a>
<a href="javascript:;" class="btn btn-default" id="print-button">Print</a>
<a href="javascript:;" class="btn btn-default" id="site-tools-button">Site tools</a>
<a href="javascript:;" class="btn btn-default" id="more-options-button">+ Options</a>
</div>
<div id="page-options-bottom-2" class="page-options-bottom form-actions" style="display:none">
<a href="javascript:;" class="btn btn-default" id="edit-sections-button">Edit Sections</a>
<a href="javascript:;" class="btn btn-default" id="edit-append-button">Append</a>
<a href="javascript:;" class="btn btn-default" id="edit-meta-button">Edit Meta</a>
<a href="javascript:;" class="btn btn-default" id="watchers-button">Watchers</a>
<a href="javascript:;" class="btn btn-default" id="backlinks-button">Backlinks</a>
<a href="javascript:;" class="btn btn-default" id="view-source-button">Page Source</a>
<a href="javascript:;" class="btn btn-default" id="parent-page-button">Parent</a>
<a href="javascript:;" class="btn btn-default" id="page-block-button">Lock Page</a>
<a href="javascript:;" class="btn btn-default" id="rename-move-button">Rename</a>
<a href="javascript:;" class="btn btn-default" id="delete-button">Delete</a>
</div>
<div id="page-options-area-bottom">
</div>
</div>
<div id="action-area" style="display: none;"></div>
</div>
</div>
<div id="footer" style="display: block; visibility: visible;">
<div class="options" style="display: block; visibility: visible;">
<a href="http://www.wikidot.com/doc" id="wikidot-help-button">Help</a>
|
<a href="http://www.wikidot.com/legal:terms-of-service" id="wikidot-tos-button">Terms of Service</a>
|
<a href="http://www.wikidot.com/legal:privacy-policy" id="wikidot-privacy-button">Privacy</a>
|
<a href="javascript:;" id="bug-report-button" onclick="WIKIDOT.page.listeners.pageBugReport(event)">Report a bug</a>
|
<a href="javascript:;" id="abuse-report-button" onclick="WIKIDOT.page.listeners.flagPageObjectionable(event)">Flag as objectionable</a>
<span id="consent-box" style="display:none">
|
<a href="javascript:;" onclick="window.__cmp('showModal');">Update cookie settings</a>
</span>
<script>
if (window["nitroAds"] && window["nitroAds"].loaded) {
document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none";
} else {
document.addEventListener(
"nitroAds.loaded",
() =>
(document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none")