Level MC-78
: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 }
评分: +7+x

Level MC-78 后室 MC 层群的第 79 层。

生存难度:生存難度:

等级等級 死区-崩溃

  • 恒定不迭
  • 永息不逝
  • 虚无不存

描述

Level MC-78 为一大型森林,其中树种均为仅一格粗但生长异常的云杉树。层级内有薄雾,可见度在 53 格左右;温度稳定在 6 ℃。层级地面积有不属于原生树种的落叶,其厚度一般为半格或一格。

截止到本档案著成,在层级内测得的数据与流浪携带物品状态均无较大变化或改变1。有流浪者报告称其在层级内未曾降低过饱食度。对本层级进行报告的流浪者均未曾出现扣除血量抑或是死亡。然而对于流浪者精神状态,层级仅会持续加大精神折磨,其通常会大幅度影响流浪者的性格、思维方式等。

层级内不存在任何声源,先前对于声音的报告均已证伪,其实质为幻觉;流浪者所产生的声音亦会被抹除,有报告称其听到了回声,由于证据有限,姑且不做推断。

值得注意的是,在层级内从未报告出现过任意两名流浪者相遇,故推测本层级具有孤立效应。

实体

树木随风摇曳,它在向你招手……

层级内的树木被认为是本层级唯一的实体,其一般较高大,叶片呈蓝紫色,易脱落,生长效率快。

有理论认为树木为本层级除流浪者外唯一的动态事物,其仅会做出似为摇摆的动作,然而层级内无风,故认为此情况为树木一实体自主做出的。值得注意的是,树木摇摆频率似乎与流浪者精神状态呈反比相关,即流浪者精神状态趋于崩溃时树木摇摆频率最高:约 36 次/min。

基地、前哨与社区

本层级无法建立任何基地、前哨与社区。

入口与██

入口

  • 有理论认为,进入某些以“认知扭曲”或“精神█化”著称的层级后,未能成功抵御同化,但亦未被完全吞噬的个█,其残余的、固化的自我意识可能形成类似本层级的存在状态。
  • 在进行出入口查找时,有大量报告称 Level MC-78 具有多个稳定的入口与一个█难操作的出█。

██

  • 不存在███知███存███在█

所█……█路为█?


冷。

这是我切进来之后唯一的、持续的感受。衣服相对单薄,挡不住这渗进骨髓的寒意。手指冻得发僵,在手机屏幕上敲字时抖得厉害,好几次按错键。我不知道这消息能不能发出去,也不知道有谁能看见——但总得试试。

让我想想……我是怎么落到这步田地的?

Level MC-1 的时候,我翻到了关于这片区域的档案。那时候我只想逃,随便哪个出口都好。有人告诉我,除了那几个已知的出口,还有一条路:钻进一片森林。森林的颜色会决定你去哪儿:那时候我走投无路了。

我选了蓝紫色的那片。我以为再走一段就能看到曙光……

可我错了。

这里什么都没有。只有一片望不到头的、死寂的蓝紫色,和一种越来越低的温度。空气像是被抽干了生命力,连呼吸都带着冰碴子的刺痛。我走了不知道多久,时间在这里毫无意义,只有寒冷在一点点啃噬我的意识。

直到我找到一小块相对开阔的地面,瘫坐下来,用最后一点电量打开手机,连上残存的信号。我查了档案——手抖得几乎握不住设备。然后我看到那个词:“死区-崩溃”。

操你妈的。

我为什么要进来?为什么以为自己是那个例外?

现在好了,衣服不够厚,食物只剩半条能量棒,水壶里的水都快结冰了。手机电量还剩 12 %,信号时断时续。我不知道还能撑多久,也不知道这消息能不能传出去。

我发这个,一是想告诉可能还在找我的家人——如果我还有家人的话,我大概在哪;二是告诉后来的人:别信那些关于森林的传说,至少别信这一片。别抱着试一试的心态走进任何颜色不正常的森林。代价可能是你的一切。

最后……

最后我可能真的会完蛋。但在这之前,我会继续往森林深处走。反正停在原地也是冻死,不如看看尽头是什么。也许有另一条路,也许什么都没有。

如果再也发不出消息,这就是最后一条。

愿后来者不必经历同样的绝望。


——Field.762
2024.6.24.

我深吸一口气,冰冷的空气刺得肺叶生疼。这破地方给了我一种正在向深处走的错觉——不,或许不是错觉。每往前踏一步,这紫色便更浓一分,像是被某种无形的染料缓缓浸透。光线在这里变得没有源头,从四面八方渗出来,把一切都染成那种病态的紫。空气更冷了,冷到连呼出的白气都在瞬间凝成细碎的冰晶,簌簌落下2

我抬手看了看表,指针纹丝不动。时间果然毫无意义。但空间呢?我继续往前,周围的树木3,越来越密,颜色也越来越深,从蓝紫渐变成一种近乎墨黑的暗紫色。我甚至能感觉到它们在注视着我,一种无声的、粘稠的压迫感从四面八方涌来。


我继续向前,逐渐被愈发浓重的紫色吞没。

倘若半个小时之后仍无下信,那我便是已经不在了。


——Field.762
2024.6.24.

我跟你们讲讲我刚才发生了什么吧。那是我在紫色森林里发现的唯一一个看起来像是什么装置的东西,一个锈迹斑斑的金属拉杆,半掩在落叶下面4

我当时已经到极限了。体温低得吓人,能量棒早就吃完,水壶里只有一个拿不出来的冰坨子。眼前开始出现重影,紫色的森林仿佛在缓慢旋转。我知道,再这样下去,不出一个小时,我就会变成这鬼地方又一具冰冷的装饰品5

所以,我抱着殊死一搏的心态,用尽最后一点力气,拉下了那个拉杆。

起初什么也没发生。只有拉杆归位时沉闷的咔哒一声。我瘫坐在地上,绝望像潮水般涌上来。但下一秒——

周围的空间突然便凭空消失了。我来不及惊呼,就感到一股无法抗拒的失重感攫住了我,整个人猛地向下坠去。时间感彻底混乱,可能是一秒,也可能是一个世纪。就在我以为会永远这样坠落下去时,砰!

我的后背狠狠撞上了什么东西。触感很奇怪,像是……厚厚的织物?冲击力让我眼前一黑,差点背过气去。但紧接着,我闻到了味道——灰尘、还有一丝淡淡的霉味。熟悉的味道。

我挣扎着爬起来,发现自己躺在一间房间里。似乎……这是我曾经不知在哪个层级的家?我跌跌撞撞地走到床边,坐下,打开手机的瞬间我看见了 2024.6.23.,这个昨天的日子。

我回到昨天了?

大脑一片混乱,各种可能性疯狂冲撞。但有一点是确定的:我活下来了,而且似乎卷入了一件比层级崩溃更离奇的事件中。

不说了,我觉得我应该立刻去报告 MC.E.G.。这种涉及逃离层级的情况,必须让组织知道。当然,你们信不信由你们,连我自己都还觉得像在做梦。但后背的剧痛和口袋里那半截冻硬的能量棒都在提醒我,那场紫色的噩梦,真实发生过。


——Field.762
2024.6.2423.


[破澜计划]

纲旨 · “破澜计划”

近日,出现了关于逃脱 Level MC-78 的报告,但仅此一例,尽管该报告已指出这一逃离方式的操作方式,但未知因素仍然过多,故执行“破澜计划”。主要目的为了解 Level MC-78 的更多信息,以及探究 Level MC-78 的基本结构或机制。若计划顺利,则 MC.E.G. 必然会对层级基本结构了解更深,便以更加快捷地探索未知层级。6

Meglogo

MC.E.G.



{$side-text}

{$upon-text}

破澜计划责任通知书


计划将进行志愿者选择,选取志愿者的人员及志愿者应当遵守下列条款:
I. 自愿参与破澜计划且熟知相关事宜(见下文);
II. 仅与 MC.E.G. 相关部门交代计划情况;
III. 成功逃离 Level MC-78 后应当尽快报告,此条仅针对志愿者;
IV. 在计划完成前,本人应当与家属断却联系,仅由 MC.E.G. 通知当事人存亡与否。

{$under-text}

{$side-text}



{$side-text}

{$upon-text}

破澜计划志愿者主要工作


I. 复现单例报告逃离操作,验证其复现性与局限性,解析个体差异对逃离成功率的影响;
II. 实验得出层级结构相关信息或收集关联报告,交予 MC.E.G. 进行整理并成立完整档案或理论;
III. 利用不会被层级效应影响的工具测量层级内不同地区数据,如温度、时间流逝效率等,并交予 MC.E.G. 进行整理;
IV. 收集报告、访问或测试 Level MC-78 的其他入口,主要搜集稳定入口;
V. 宣扬传播任何有关于 IV. 条若搜获的信息,避免更多普通流浪者误入歧途;
VI. 每隔至少一日,上传一次报告或日志,反之将被认为已死亡。

{$under-text}

{$side-text}













































{$side-text}

{$upon-text}

通告


2024.11.17. 破澜计划完成,信息公开,已收集的理论请见下文;其他新信息将直接被增加在原档案上;与原冲突的信息则进行更新处理。

{$under-text}

{$side-text}



档案已更新


本档案基于原档案进行小幅度修改


Level MC-78 是后室 MC 层群的第 79 层。

生存难度:生存難度:

等级等級 ℵ - Aleph

  • 时间异常
  • 空间坍缩
  • 灵魂替换

翻译者须知:

从 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 MC-78 为一蓝紫色大型森林,其中树种为一格粗但生长异常的云杉树。层级内有薄雾,可见度在 16 格左右;温度稳定在 -16 ℃。层级地面积有落叶,其厚度可达 1.5 m。

自对出口查找的实验到本档案著成,在层级内测得的数据与流浪携带物品状态均无较大变化或改变7。有流浪者报告称其在层级内未曾减少饱食度。对本层级进行报告的流浪者均未曾出现扣除血量抑或是死亡。然而对于流浪者精神状态,层级仅会持续加大精神折磨,其通常会大幅度影响流浪者的性格、思维方式等。

层级内不存在任何声源,先前对于声音的报告均已证伪,其实质为幻觉;流浪者所产生的声音亦会被抹除,有报告称其听到了回声,由于证据有限,姑且不做推断。

值得注意的是,在层级内从未报告出现过任意两名流浪者相遇,故推测本层级具有孤立效应。

尽管已明确了层级的诸多特征,但踏入此层级的流浪者仍时常遭遇意料之外的状况。有流浪者报告,在森林的某些幽深角落,会莫名出现闪烁的幽光,这些幽光仿佛具有意识,会缓缓跟随流浪者移动。当试图靠近探究时,幽光却又瞬间消失不见,具体未知。在层级内部,流浪者还发现森林中存在一些符号,其型如“䷋”8,这些符号刻在树干上,或是印在地面的落叶堆里。符号的形状怪异,近乎文字。研究人员尝试解读这些符号,却始终毫无头绪。

实体

树木随风摇曳,它在向你招手……

树木是本层级唯一的物理实体种类,其可能为流浪者变成,其一般较高大。叶片呈蓝紫色,易脱落,生长效率快。

有理论认为树木为本层级除流浪者外唯一的动态事物,其仅会做出似为摇摆的动作,然而层级内无风,故认为此情况为树木一实体自主做出的。值得注意的是,树木摇摆频率似乎与流浪者精神状态呈反比相关,即流浪者精神状态趋于崩溃时树木摇摆频率最高:约 36 次/min。

在层级的边缘地带,还出现了一些类似生命体的物质。其外形模糊,仿佛由雾气凝聚而成,行动飘忽不定,常常在流浪者的视线边缘闪现。虽然目前尚未有攻击流浪者的报告,但它们散发的气息,让每一个见到它们的人都心生恐惧。

现象

2028 年 7 月 3 日,在本层级检测出了时间流逝异常的现象,时间流逝效率时快时慢,但并不严重。在层级中心9,时间流逝效率极慢,与常规时间定义的比例10约为 86660:1,而越向内越严重。层级初次的逃离报告中,指出一被称之为“层级原点”的位置,其上有一拉杆存在,实验后发现该位置存在11,但拉杆有概率存在12

层级自运行一套时间系统,上述比例仅可作为参考。值得注意的是,在 1 h 层级时间后,拉杆将不再出现13,在此之后,流浪者便永不可能逃脱本层级,关于拉杆的作用则是利用本层级的 实空间坍缩 进入层级 虚空间 从而实现逃离。14


{$side-text}

{$upon-text}

Level MC-78 的森林部分是一个 实空间;类似于 Level C-100 的云海与其他层级的屏障的部分,则是 虚空间实空间虚空间 的结构表现为 虚空间 包裹着 实空间实空间 虽“实”,但其仍有 坍缩Collapse15空间坍缩 一般会导致流浪者坠入 虚空间,坠入 Level MC-78虚空间 便是 Level MC-78 的唯一逃脱方式。Level MC-78虚空间 极为抽象,其多被认为表现为四维空间,以无数时间轴与副本映像构成。理论上,流浪者可以在 Level MC-78虚空间 中见到各种不同的自己与他人,但可惜地是——流浪者无法对其进行任何交互,仅可夺取自己当前时间轴上的,1 h1617的自己的躯体18,而过去的自己19的灵魂则会回到 Level MC-78 而最终死亡20,根据此推测,MC.E.G. 称此为“灵魂替换”。但与 Level 278 相异,流浪者只能替换上述条件的自己。另外根据上段,以上行为只能通过 实空间坍缩 这一前提的完成来实现。

{$under-text}

{$side-text}



此外,世界不会接纳一个自称来自未来的疯子,若您利用上述方法成功逃离了 Level MC-78,请勿声张。

入口与出█

入口

  • Level MC-1 进入一片蓝紫色的森林会来到 Level MC-78
  • 在切出 Level 79 时有中等概率会来到 Level MC-78,亦有小概率会直接进入虚空间。
  • 在任何层级表现出认知崩溃,自闭等有极小概率会进入 Level MC-78
  • 有理论认为,进入某些以认知扭曲或精神同化21著称的层级后,未能成功抵御同化,但亦未被完全吞噬的个体,其残余的、固化的自我意识可能带持着躯体进入 Level MC-78

出路

  • 放弃所有想法并静止不动则不可逃离本层级,从而变成树而永生。
  • 实验发现本层级无任何特殊逃离方式。
  • 可应用层级现象逃脱本层级,详见上文。


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