Level FR-529 活石
: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 }

欢迎访问M.E.G.信息记录存储设施
在该层级被发现前,M.E.G.多次收到相似现象报告——受影响基地被摧毁,所有的生物变为雕塑。经派遣人员调查发现,层级内的机械可能是产生该现象的原因之一。

这篇信件来自于SIO OS被侵入部分的数据库——描述中的M.E.G.蓝瑙河分队确实全员失踪且任务大体一致,但其中可能掺杂一些不准确的信息,仅作参考。


信息源:SIO OS
来自Unknown,N/A,#■■■■un6892


在我们抵达此处前,M.E.G.的先遣小队发现了这里,并发现了导致其他层级的毁灭性现象的元凶——但是,小队在这之后就完全失联了。在最后一刻,他们发送了相关设备的坐标,我们此行的目标是去关闭相关设备。

我还在回想他们此前传回来的资料,只有一句话——它受损了,这是结束这一切的唯一机会。没有人知道那支小队到底干了什么,但他们已经完成了任务。

一阵眩晕传来,我摔倒在地。

手心传来了一种奇怪的触感——看似坚硬,粗糙的水泥地面摸起来居然是光滑的。

这是我第一次来到这里。

灰色纱笼罩了整片山地,狂风呼啸,裹挟着层级里面的尘土,冲刷着一方天地。

恍惚间,我瞥见了一面“墙”。灰黑色的,无边无际的墙面矗立在狂风之中,就在那里,它站着,直面满天尘土。

没有人知道那是什么。它只是静静地站在那——倒也不是。有一种力量使得周围的空间都为之颤抖,包括我们。是,一股恶心的感觉灌满了小队里每一个人,在我的记忆中,还有几个人上吐下泻,不得不离开层级。

震动的空间能轻松捏碎人的思想,我能感觉到,在我的视线外,有影子在动。它在扭曲,却又像人一样跑离我的目光,快步追上前面的背影,我离小队的其他人更近了一点。

风还在解剖着我们的防护服,每一步愈发艰难。我们抵达了建筑前——是一个巨大的空洞,像是直接从墙上打的一个洞,很大,而且非常深。其他人都为此打了个寒战。

在我们进入前,风慢慢停了下来,我们得以在洞前稍作休整。我盯着墙,确实是灰黑色的,它并不像其他水泥墙一样粗糙,我能在它的表面看到一丝的金属光泽,它以一种光滑的姿态挺立在尘沙中,透过反光中的那只眼,一种很奇怪的感觉扎进了我的脑中。

灰色的天空被染上了一层淡淡的金,并不是秋天的感觉,周围的温度都在缓慢升高。队伍里有几个人的面罩已经蒙上了一层白色的雾,有一种闷热的感觉,我的呼吸愈发加重,所有人不得不先进入建筑中。

很黑,我们脱离了外界的光,连带着嗡嗡的声音一起。像是两个世界,它们仅靠一个洞口连在一起。队长的手电打开,一束光稳稳的落在墙上——并不是外界的那种纯净的灰黑色,一条条白色的细丝在墙中缠绕。洞里面没有任何降温设备,但温度却比外界更低,我们没看到通风设备,哪怕是一个风扇。

很安静,没有预想中的奇怪声音,洞里面只有鞋子踩在地板上的回音。我们往深处走,周围的环境并没有发生太大的变化,只是互相缠绕的白色丝线越来越多,正在逐渐布满整片墙面。但一种感觉正压迫着我,我的每一个细胞都在颤动,我尝试调整呼吸,这只让我的肺在胸腔里面抽动,心跳似乎正在寻找与之同频的节奏,一无所获。

几束光胡乱地打在墙上,是一团红色的丝线,一直缠绕,延伸到深处。不知道走了多久,队长决定就地停下来歇息。没多久,有人撑不住了。那个人扯下了自己的防护服,大口地蚕食着空气,他似乎并没有从中消化足够的氧气,踉跄着靠着墙,有人想上去扶他,却突然被眼前的情况怔住了——他的身体正在慢慢变成灰色,随之融化,流入墙面,在原地绽开了一朵红色的花,他的影子被拓印在墙面上。

任务继续,我们继续向深处摸索。红色的丝逐渐侵蚀着墙面,直到第一滴血滴在我的面罩上——它在缓慢地流动,在我的面罩上划出一条猩红的线。并不是热的,我能感觉到,是死的温度,很冷,空间依然寂静。

其他人也觉察到了,但任务必须完成。我们并不是先驱者,但为了后来者,我们必须前进。我擦掉了血丝,其他人也一样。手电筒的亮度丝毫不减,我们的脚步也越发坚定——在这死寂的空间中。没有人感到疑惑,在第一个人变成雕像时、在狂风摧毁基地时、在沙尘弥漫到每一片天空时,我们没有其他选择。

我还能记得,狂风摧毁了 Alpha。基地,当我们的救援小队抵达时,只剩下废墟和水泥雕像——那并不是有人建的,它们本身就是人,不过却被完全“硬化”成了雕像。我们找到了源头,虽然这并不是唯一一次探索的机会,但每个人都知道,我们必须完成我们的任务。

面罩前的血丝越来越多,我的思绪被拉了回来。它们慢慢地,一滴一滴,布满了我的面罩,我的视线愈发模糊,直到完全失去了视野。

我能感到,血液裹挟着我在建筑中穿梭,这寂静的空间中出现了划破空气的声音。我尝试呼喊,但周围却没有回声,也没有其他人应答的声音。

寂静,再一次。我终于抹掉了面罩前的血液,但眼前并不是队友,而是一处陌生的设备。只要关闭了这台设备,事情就此结束……吗?

并没有。整个空间都在颤抖,空间正在移动,墙内正在扭曲——一股力量穿透了我的身体,把我掀翻在地。显示屏亮起,沉寂已久的钢铁正在吱呀作响,一盏盏灯亮起,整个建筑活了过来。

其他人呢?我能看到他们。他们已经变成了各式各样的雕像,正在黑暗的角落中渐渐融化。我能看到,队长的手指,停在了电台上。

我出不去了。自从关闭设备后,这里的温度正在升高,刺耳的噪音也愈发严重。这处空间被封死了,我有很多的时间来打磨这篇文章。当你收到这条讯息时,我希望你能交给M.E.G.总部。不必再来找我,不要再次相信建筑,蓝瑙河救援分队,至此,全员牺牲。

……我已经改不下去了,写这封信占了我大半的时间——到底是谁在修改这封信件,■■■■■,是你吗……

[数据中断]


来自:蓝瑙河救援分队#21
■■■■/■■/■■
信件内容已加密。

From SIO OS

评分: +2+x

生存难度:生存難度:

等级等級 死区

  • 不安全
  • 长期影响
  • 未完全探查

翻译者须知:

从 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 FR-529 是后室 FR 层群的第 530 层。

描述

Level FR-529 的主体是位于崖壁上的巨型灰黑色混凝土构筑物,其宽约600m,高度、长度未知。除构筑物的前面的空地,其余区域都被霾覆盖。当流浪者第一次切入该层级时,会出现在构筑物前的空地上。

Level FR-529温度约56℃,混凝土构筑物内的最高温度可达78℃。流浪者暴露在此类环境下可能会出现中暑、热射病、严重烫伤等致命症状。

流浪者在层级内可察觉到微弱的声音。在 Level FR-529 的混凝土构筑物前,流浪者不会听见这些声音。这些声音并未消失,而是转化为频率约在 15~25 赫兹、有节奏的声波1。声波被普遍描述为有东西在敲打,吼叫。因未知原因,该声波不致命,但流浪者仍会出现听觉异常、动作迟缓的症状。若停留时间超过 24 小时,会出现绝望和持续性非理性焦虑等症状。

构筑物外表面正在流动,这是其正在不断进行异常徐变。流浪者在触摸构筑物墙面时会在原地生成一个与其完全相同的混凝土雕塑。雕塑会缓慢溶解,随后渗入构筑物内。在雕塑周围检测到了异常空间波动,推测是切行产生的空间扰动。

混凝土构筑物的材料同样诡异——在检验中,除了硅酸三钙等混凝土基本成分,还发现了约17%的羟基磷灰石以及部分元素2

此外,在 Level FR-529 中,流浪者通常只有几分钟的反应时间来自行离开此层级。在时间窗口后,流浪者将难以再次切行。切行物品可以使用,但使用时会付出更大代价,如使用者需承担更重的身体负荷。对离开 Level R-29 的流浪者的血液抽检中,均发现硅酸盐结晶,且其的浓度似乎与在层级内的停留时间有关。在混凝土构筑物前,M.E.G.设立了一个临时性前哨站,目前可协助流浪者切行。

值得注意的是,所有对于 Level FR-529 的探索进度停滞了至少三年,只有最初三个月的信息可以使用——所有探索队伍都在出发后的三小时失踪。M.E.G.曾派遣队伍奉命探查山崖部分,仅一人返回前哨站。他们在绳降至少220m后遭遇了“袭击”,相关日志得到回收3,机器未在袭击发生时监测到实体信号,初步判定为幻觉4

除未知实体的袭击报告外,M.E.G.在悬崖深度约200m处监测到了频率约为8~18Hz的次声波。不同于构筑物前的次声波,此类声波可引发消化道出血和肺泡破裂。M.E.G.临时医疗小组在尝试给予受影响的流浪者杏仁水及其他治疗方式后均未见效。

“扬尘”现象

有时, Level FR-529 内部会出现10~11级的强风,同时带来大量的混凝土粉末。当流浪者接触到这些粉末时,其身体的相应区域会被“石化”为混凝土,该转化过程不可逆,后续可能引发伤口感染与排异反应。现象通常持续2~3天,最长7天。除了强风,“扬尘”现象没有明显的前兆,一旦监测到异常风力,所有人员应紧急撤离。“扬尘”现象发生时,从Level FR-529入口外部观测不到任何异常。

若流浪者的体表在 Level FR-529 中被完全转化为混凝土,则混凝土会溶解,随后渗入地面。流浪者使用防护装备5以防止直接暴露在空气中时,可能在该现象中幸存。混凝土颗粒可能会附着在装备外侧构成一种坚固的壳。流浪者在壳构筑完成后受其束缚,无法移动。混凝土壳的形成时间为两天 ,待其溶解三至四天后,流浪者可自由行动。

基地、前哨和社区

M.E.G.“砼前”临时前哨站6

  • 友好
  • 共五人7
  • 极少物资供给

入口和出口

入口

在各种类似于Level 11的现代化城市层级、混凝土相关层级、以及室内环境中寻找到一面青灰色的墙,当靠近它时可以听到微弱的嗡嗡声。切入这些墙,可以进入该层级。

出口

可以通过空切、立即切入地板等切行方式或使用切行物品来快速离开该层级。但这不会让回到原本的层级——流浪者可能会出现在各种危险层级的地面上。

附件

相关附件信息一:对于混凝土构筑体的材料检测
Level FR-529 中检测的混凝土样本中出现了大量的异常物质,这些东西与常规混凝土组成物质存在显著偏差。


相关附件信息二:绳降小队随行机器日志

本文中提到了探索层级悬崖部分的绳降小队,他们是探索崖壁区域的第一个小队,也为此付出了惨痛的代价。小队随身携带的便携式终端和相应检测仪实际上一直在工作,直到它们坠落了超700m后因为空气中含有的大量带铁的混凝土颗粒阻断无线信号而失联。


相关附件信息三:对于混凝土构筑物的多普勒探测报告9
使用激光多普勒雷达在合适位置进行探测是当前环境下的最优选择——因层级中的强次声波环境,地质雷达、超声波设备无法正常使用。


相关附件信息四:构筑物日志终端相关信息

构筑物给予了M.E.G.一些关于R-32767错误的相关信息——整体机械在重启后发现部分区域受到侵入,倒塌。它已经进行基础的隔离措施,希望M.E.G.派出小队前往帮助其消灭入侵物并分享部分未知技术来作为报酬。但入侵物声称该区域的坍塌属于正常现象,不需要干预,可信度未知。

M.E.G.在经过讨论后决定优先调查未知信号源,但对于构筑体意识的相关交涉也正在不断进行。同时,M.E.G.相关部门正在验证其提供的相关图纸的技术有效性及发展潜力。

但相关信息源文件已丢失,无法查看更多细节,M.E.G.正在检索数据库中的信息来找回该数据。


微距了,是FNFzzz