Level C-58 - “昔时欢愉”
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

评分: +46+x

生存难度:生存難度:

等级等級 deadzone

  • 精神危害
  • 无法生存
  • 探索受阻

翻译者须知:

从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。

这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。

除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。

如何使用:

[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]


class 处的可用参数包括以下内容,支持简繁体及英文输入。
English 简体中文 繁體中文
0 1 2 3 4 5 0 1 2 3 4 5 0 1 2 3 4 5
unknown 未知 未知
habitable 宜居 宜居
deadzone 死区 死區
pending 等待分级 等待分級
n/a 不适用 不適用
amended 修正 修正
omega 终结 終結

该组件支持简繁切换,如下方代码所示:

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]


lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

自定义等级

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]

使用 CSS 进行自定义:

你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:

[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;

/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */

/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */

/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */

/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]

旧版颜色:

如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]

Level C-58是后室C层群的第58层。

描述

由于该层级的特殊性,目前尚无任何可行手段能够对其展开探究。我们只了解到此层级存在着极为强烈且不可逆转的精神损害因素,同时会对电子产品产生严重的干扰,这二者近乎完全阻断了对该层级进行探索的可能性。

目前,关于该层级内部环境的信息,仅来源于两名精神状态相对正常的幸存者的陈述:地面呈现出明显的凹凸不平态势1;视野范围完全处于黑暗状态;耳部持续接收到尖锐嘈杂的声响;空气具有刺激性且经判断为有毒性。

层级效应

当流浪者进入Level C-58后,会立即进入悲尸循环,此过程类似吸入少量瑞撒毒气引发的反应。M.E.G.曾派遣数名配备全套防化装备的特工试图对该层级展开探索。然而,这些训练有素的特工中,仅有两人最终在天鹅座档案馆被找到,且均陷入精神失常,此后,M.E.G.终止了向该层级投入人力的相关计划。

基于这两名特工拼死带回的Level C-58气体样本,M.E.G.经分析确认该层级空气中存在少量瑞撒毒气,并就此向U.E.C.发出谴责,目前U.E.C.尚未作出回应。尽管已证实瑞撒毒气的存在并初步阐释了流浪者陷入悲尸循环的原因,但对于该层级引发精神危害的具体作用机制,目前仍缺乏有效认知与研究线索。

精神影响

截至2033年3月17日,已被统计的成功逃离Level C-58的幸存者共有46人,其中仅两人还能正常交流,另有24人的精神已经完全错乱,失去了一切思考或交流能力。这些幸存者无一例外是通过诺克立普贴Blanche的签名等非常规手段切出的。

幸存者的临床表现主要为无明显诱因的大笑,即便症状较轻的两人也存在此现象。该症状类似于PBA2,严重者会持续大笑直至因窒息昏迷甚至是死亡。部分受影响严重的幸存者大笑几乎是24小时不间断的。目前,已有12名幸存者因这种持续性大笑身亡。

当前,这些幸存者均被安置于Level 4 Omega基地的集中病房,由M.E.G.的专业医护团队负责照料。除两名症状较轻者外,其余幸存者均从未表现出悲伤等负面情绪。典型案例是一名幸存者在得知妻子被窃皮者袭击身亡后,仍不断大笑,甚至试图触摸隔壁病床患者的臀部。

以下列举了部分对幸存者的调查记录

发现记录

2019年5月22日,B.N.T.G.的一支12人商队在Level 10中穿行时失踪,随后B.N.T.G.派出的搜救团队也接连失踪,仅一人凭借特殊手段切出至Level 11,但其精神已不正常。这起事件如今被认为是对Level C-58的第一次探索。

2019年11月,发生在多个层级的流浪者失踪事件引起了M.E.G.的关注,随着这类事件的增加和少量精神失常的幸存者的出现,M.E.G.开始认定有一个未知层级的存在。

2020年5月,第一个精神较为正常的幸存者王因果在Level 906被发现,根据对其的采访,最终确认了Level C-58的存在。

2021年3月,一封自称是U.E.C.研究员的匿名信被发至M.E.G.,但由于Level C-58的不可探索性质与U.E.C.方面的拒绝发声,这封信的真实性仍无法验证。尽管如此,其依然具备一定的参考价值,也最终促成了该层级的编号与命名:

M.E.G.的诸位:
我就有话直说了,关于去年发现的那个被你们称作“欢愉层”的隐秘层级,我有些内部消息要透露。

%E6%9B%BE%E7%BB%8F

这里以前看上去也不咋样,对吧

你们所谓的“欢愉层”,曾是U.E.C.喀耳刻研究小组的一处研究基地。我曾,不,应该说,我现在也仍是其中的一员。

我并不能透露我们的研究内容,你们只需知道这个项目与Level 150和我们的杰作“艾柯吕斯之泪”有关就够了。


我们的研究基地选址在Level C-58- “朽败工厂”,你们的数据库中并无这个层级,别找了,即使在U.E.C.内部这也是个保密程度较高的层级。不过,鉴于这地方已经大变样了,我还是废些笔墨描写一下这个层级好了。

为了保密性,我只附上了一张该层级“入口”的相片,在图上的铁门后边是被灰尘掩盖的大片室内区域,面积大概有500平方米吧。不过,与其说这里是工厂,或许“监狱”更适合来形容这个层级,室内区域中的数个小房间都由生锈的铁栅栏做间隔,几盏一直晃来晃去的白炽灯挂在同样脏透了的天花板上。

我们清扫了地面,并随即搬来了一大堆研究设施,那大概是在2017年,我是最早一批在此开展研究的研究员之一。这一层级的出入口仅有两处,也就是相片上展现的两处铁栅栏,它们都通向同一个层级,而那个层级被U.E.C.牢牢控制,因此我们的研究几乎是肆无忌惮的。

容我自夸一下,在这几年里,Level C-58中的研究团队取得的成果恐怕你们M.E.G.花上好几年也无法达成。尽管你们有那么多人。

但是,接下来发生的事,恐怕是你们这些庸才也不会犯下的大错。

2019年初,那是1月份,我的某几个同事把他们的项目搞砸了,一开始情况似乎还可控,除了犯错的那几位已经因为吸入了大量艾柯吕斯之泪而成为悲尸外,我们的安保迅速采取了行动,但那几个悲尸捅出的篓子有些太大了,那间实验室开始着火,我们的组长命令我们撤离,即使是我们当中最狂热的研究疯子现在也开始恐慌起来——燃烧的声音异常奇怪,而颜色诡异的烟雾开始弥漫,已化为悲尸的研究员们在一片模糊的薄烟后发出瘆人的大笑。整个层级地动山摇,像是对这次事故有所反应,我好像能听见一个辽远的声音在呻吟……也有可能是在欢笑,但更可能是边笑边呻吟,但却无从得知声音的来源。情况已肉眼可见的极为糟糕,不能再拖延了。

当我们离开时,爆炸发生了,好在余波并没有传出层级。我并不知道这场爆炸的剧烈程度,但恐怕这使得Level C-58发生了什么根本性的变化,原本通向那里的出入口失效了,两边都是,没来得及离开的人永远留在了那里。

那之后,就是各种各样的失踪案了,你们的人,我们的人,其他人,都一样,不断有人失踪,或是变成疯子逃出来——但那和死了又有什么区别?现在,恐怕Level C-58的入口已经无处不在了。这个层级像个被触怒的小孩,对所有人发泄着怒火。

我告诉你们这些,只是为了让你们对这个层级的过往有所了解,毕竟这该死的层级在给所有人带来危险,我会给你们一份私密报告,但最好别把它公之于众。我的行为是得到雅典娜之手的准许的,我们希望解决这系列事件。你们,我们,以及其他什么有能力的组织或个人,谁都行,让这场该死的闹剧结束吧。

但,真怀念啊,曾经在那里的美好日子。

气体

根据疑似U.E.C.成员寄来的资料与提取的Level C-58气体样本分析,可判断该层级内弥漫着包含瑞撒毒气在内的多种有毒物质,这些物质所构成的气体毒性较强且高度易燃易爆。尽管招致该层级内死亡事件的主因应该是尚无法用常识理解的特殊效应,但这些毒气造成的影响也决不可忽视。

基地、前哨和社区

由于该层级的特性,该层级无法建立任何基地、前哨或社区。

入口与出口:

入口

在任何层级都有可能突然出现通向Level C-58的入口,其典型前兆是附近的空气突然变得“温馨、香甜”,此时在这类区域内移动或从外界走进这类区域都将导致切行发生。一个入口通常会持续存在约一个小时。由于该层级的极度危险性,若您发现自己正身处这类区域内,请保持冷静,不要移动,直至异常的气息消失。

出口

该层级没有任何已知的常规出口。

    • _

    生存难度:生存難度:

    等级等級 n/a

    • 不存在
    • 缺失物质
    • 无法进入

    翻译者须知:

    从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。

    这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。

    除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。

    如何使用:

    [[include :backrooms-wiki-cn:component:level-class
    |class=等级
    ]]


    class 处的可用参数包括以下内容,支持简繁体及英文输入。
    English 简体中文 繁體中文
    0 1 2 3 4 5 0 1 2 3 4 5 0 1 2 3 4 5
    unknown 未知 未知
    habitable 宜居 宜居
    deadzone 死区 死區
    pending 等待分级 等待分級
    n/a 不适用 不適用
    amended 修正 修正
    omega 终结 終結

    该组件支持简繁切换,如下方代码所示:

    [[include :backrooms-wiki-cn:component:level-class
    |lang=cn/tr
    |class=等级
    ]]


    lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

    自定义等级

    [[include :backrooms-wiki-cn:component:level-class
    |lang=cn/tr
    |class=等级名字
    |color=#000000(带有井号的十六进制色号代码。)
    |image=链接(至图片的链接。)
    |one=在这
    |two=随便
    |three=放文字
    ]]

    使用 CSS 进行自定义:

    你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
    将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:

    [[module css]]
    .sd-container {
    /* 字体 */
    --sd-font: Poppins, Noto Sans SC, Noto Serif SC;

    /* 边框 */
    --sd-border: var(--gray-monochrome); /* 大多数等级 */
    --sd-border-secondary: 0, 0, 0; /* 不适用 */
    --sd-border-deadzone: 20, 0, 0; /* 死区 */

    /* 标志 */
    --sd-symbol: var(--sd-border) !important; /* 大多数标志 */
    --sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */

    /* 文本 */
    --sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
    --sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */

    /* 等级颜色 */
    --class-0: 247, 227, 117;
    --class-1: 255, 201, 14;
    --class-2: 245, 156, 0;
    --class-3: 249, 90, 0;
    --class-4: 254, 23, 1;
    --class-5: 175, 6, 6;
    --class-unknown: 38, 38, 38;
    --class-habitable: 26, 128, 111;
    --class-deadzone: 44, 13, 12;
    --class-pending: 182, 182, 182;
    --class-n-a: 38, 38, 38;
    --class-amended: 185, 135, 212;
    --class-omega: 25, 46, 255;
    }
    [[/module]]

    旧版颜色:

    如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

    [[module css]]
    .sd-container {
    --sd-border: 90, 29, 27;
    --sd-image: 90, 29, 27;
    --sd-symbol: 90, 29, 27;
    }
    [[/module]]

    Level C-58是后室C层群的第58层。

    描述

    由于无法进入Level C-58,其内部情况乃至其是否依然存在都是完全未知的。但毫无疑问,Level C-58曾经是一个存在的层级。

    入口与出口

    前文提到的,Level C-58入口出现的前兆依然常见于各个层级,但是,无论流浪者如何在其中行动,都不会触发切行。

    尚无任何关于Level C-58其他任何出入口的报告,M.E.G.暂时认定,该层级由于某种原因而不复存在。






除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License