Level C-8.5
: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 }
评分: +19+x

生存难度:生存難度:

等级等級 等待分级

  • 安全性待定
  • 稳定性较高
  • 实体数量不明

如何使用:

[[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: 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-8.5Level C-8的子层级,由一支共有五人的层级勘探队伍在Level C-8内探索时因意外切入而发现。

描述

Level C-8.5在外观上与其父层级类似,为一座荒废村落,外观破旧的房屋互相紧凑且无规律的分布在层级各处,房屋间的过道无法容纳多人并排行走,部分过道存在被其他房屋的墙壁截断的情况。过道的缝隙处和部分房屋砖瓦的缝隙处生长着许多类似于苔藓的黑色植物,这些植物对人类是否构成危害尚且未知,其表面湿滑且触感与生肉类似。

LC8.5-2

初次发现本层级时拍摄的照片,左侧墙壁处的红色塑料袋内装满了苹果醋和罐装龙肉。

幸运豆奶罐装龙肉等补给资源可能会随机的出现在这些过道内,但它们的外层包装均被某种黑色斑点所沾染,若使用手指进行直接接触,不明斑点将会迅速缩小直至消失,有流浪者认为这些不明斑点是层级内的特殊实体,但尚未有证据表明它们表现出了生物相关性质。

Level C-8.5内,时间始终处于夜间,唯一光源为安置在各种房屋外围的白炽灯泡,即使它们提供的光照范围较为有限。这些灯泡有一部分是被取下或遭到损坏的,但奇怪的是,若流浪者尝试这样做则会以失败告终。此外,上述的黑色植物同样可能生长在阴暗角落处,探索报告显示它们有些已经盘踞在房屋和道路上,曾有流浪者试图进入并探索这些被黑色植物完全占据的地方,最终均为失联。

一些靠近阴暗处的房屋的门旁还会帖有对联,对联上的字迹似乎仍未干涸,即使对联纸已经开始掉色破损。这些字迹触摸起来的感觉与黑色植物高度相似,二者之间是否存在关联性尚且未知。

房屋的房门均被反锁,无法进入,只有少部分房屋因墙壁坍塌而能够进入。这些房屋内部的家具齐全且干净整洁,有些屋内还设有诸如电脑、电视机、显示正在充电中的手机等电子产品,但它们均无法正常使用,其背面标有的制造厂商信息也无法在任何前厅网络上搜索到,屋内家用电器的情况与电子产品相同。

由于本层级的结构复杂,视野盲区较多,加之不同过道之间并无明显外观差异,流浪者易在探索过程中因失去方向、走入死路、反复遇到似乎遇到过的场景等原因而迷失在层级内,这导致深入本层级具备相当的挑战性,至今仍鲜有流浪者深入本层级。

随着逐渐深入本层级,流浪者可能会突然感到手臂处存在异物缠绕的触感,但通过目视检查却始终无法发现任何实体存在的现象。不仅如此,部分特殊物品也同步呈现出异常状态,如在层级深处过道角落的预警弹珠会持续高频震动,尽管当前视野范围内不存在任何可观测实体;速切终端在显示层级深处或阴暗处的定位示意图时,会标记该区域的实体分布高度密集,与实际可视环境冲突。

除此之外,流浪者可能在深入层级的过程中出现各种症状,这些症状的诱因未知,但已被证实可通过饮用幸运豆奶进行一定程度的缓解,具体包括以下:

  • 指甲迅速出现变黄、变厚、变形等症状,同时伴随有一定程度的异味。
  • 手或手臂处可能出现红斑或局部瘙痒,部分症状严重者会出现皮肤干裂,体液和血液持续从裂口处渗出且无法止住的情况。
  • 毫无征兆的强烈咳嗽,常伴随咯血和胸痛症状一同出现。
  • 更多症状有待进一步探索报告。

除上述异常现象与症状外,位于层级深处时还可能遇见一类异常气象,具体为大量来源未知的团状绒毛会自本层级的天空处缓慢落至地面,这些绒毛的颜色呈灰白色,在白炽灯的光照下与雪花相似,因而被称为团状雪绒

团状雪绒在落至皮肤后会迅速进入流浪者体内,引发局部皮肤红肿或水疱,严重情况下可致局部皮肤溃烂,若进入靠近眼部的皮肤,除上述症状外还可能引发角膜炎或结膜炎,试图阻止团状雪绒进入人体的行为均会以失败告终。

除对流浪者的危害外,团状雪绒对层级环境的破坏同样相当严重,层级内的白炽灯泡在接触到团状雪绒后会出现频繁闪烁、光照变弱甚至直接停止工作并爆裂等情况,为避免灯泡爆裂时飞溅的玻璃碎渣对流浪者造成伤害,不建议在团状雪绒落下期间与灯泡距离过近。

在一路躲避危险,最终探索至层级最深处后,无论深入路径是否相同,最终均会来到一处空旷的平台,由于平台内部及周遭不存在任何光照,探索平台时必须接住手电筒等人造光源来进行照明。在平台外侧,大量的纪念碑毫无规律的分布在平台内,它们大多因被黑色植物缠绕或包裹而导致信息无法被获悉,少部分可获悉死者具体信息的纪念碑上的墓志铭最后一句均为「真菌感染至死」,该现象目前未有合理解释。

待探索至平台最中间时,会发现一根目测宽度约20米的黑色圆形立柱,该立柱由某种质地柔软的未知材质构成,径直通往层级天空。在立柱的一处,存在一条由向外凸起的未知材质所组成的梯子,通过攀爬梯子最终或许会抵达本层级的天空或切出,但这未经证实。

目前已知的大部分流浪者均在探索至此处的不久后出现行为及语言异常,并在此后彻底失联。少部分流浪者被发现于Level C-8Level 4内,他们大多正在通过肢体做着浮夸且无意义的动作,其体表被大量黑色植物所覆盖,仍能够进行正常的沟通交流,但当向其询问是如何离开本层级的时候,他们均表示毫无印象,并会在一段时间后,在其他流浪者不经意间突然消失,尝试寻找他们的行为均未成功。

此外,若其他流浪者身处他们被发现的地方附近,同样存在切入本层级的可能性,原因不得而知。

社区探索情况与实体分析报告

就现阶段的探索结果来看,Level C-8.5内不存在任何基地或社区,但根据M.E.G.第47号探索组于2033年7月10日的深入探索报告,他们在尚可获知死者信息的纪念碑处发现有21个纪念碑的墓志铭上写有「曾在Level C-8.5担任真菌研究社xx职位」的段落,这表明本层级内曾经存在一个研究真菌的小型社群。

于2034年8月8日进入Level C-8.5进行深入探索的M.E.G.第22号探索组也在层级深处发现了写有「真菌研究社」字样的一座破旧房屋,屋内除常规实验器材和其余房屋内同样会陈列的家具外还有7具人类尸体,这些尸体均被黑色植物覆盖,无法推测死亡时间,其头部均生长有一朵黑色蘑菇。随后,本层级内的黑色植物、不明斑点、团状雪绒、黑色立柱材质样本以及上述7具尸体均被第22号探索组带回Level 1并交由M.E.G.医学部进行研究,少部分样本被送往Level C-393交由E.B.A.进行分析,以下为双方在互相交换研究结果后撰写的分析报告:

Level C-8.5内实体的分析报告

M.E.G.研究人员:安卡·弗雷利
E.B.A.研究人员:伊迪斯·劳森
报告撰写时间:后室协调时-2034.12.6


报告内容:在研究初期,我们发现这些实体均为同一种真菌的不同衍生物,具体如下所示:

  • 团状雪绒:真菌孢子。
  • 黑色植物:真菌菌丝。
  • 不明斑点:真菌菌落。
  • 黑色立柱材质:菌丝聚合体。
  • 黑色蘑菇:小型子实体。

鉴于意外切出该层级的流浪者在临床上的表现与受到“1602号真菌”感染的表现较为相似,我们将上述样本与现存于Level C-393内的“1602号真菌”样本进行了基因对比,结果显示重合度达到了98.76%,剩余基因差异主要体现于性状差异及人体反应差异,如:可形成小型子实体、其孢子更大且更易引发炎症反应、对脑部的感染控制能力减弱等,基本可确定该层级内的真菌为“1602号真菌”的亚种。

其余感染症状,如感知或行为方面的症状因缺乏研究数据而暂时无法进行研究,但能够确定的是,该真菌同样能够对大脑进行感染和控制,因为对带回尸体的尸检结果表明他们的大脑多处均已遭到菌丝的严重感染。

我们尝试过把该真菌的样本注射给其他流浪者或类人实体——就像当时研究“1602号真菌”时那样。其结果与预期相同,这些被注射进去的菌丝在数小时内失去活性并被免疫系统彻底消灭。

除此之外,分析结果表明那些死者头上生长的黑色蘑菇与黑色立柱的材质是完全相同的,这意味着所谓的黑色立柱实为一根极其粗大的菌柄,Level C-8.5的天空并非真正的天空,而是一个巨型菌盖的下方,这也可以解释为何团状雪绒为真菌孢子的情况,但关于真菌为何选择该层级作为自己的生长地仍然无从而知。

推荐命名:1602-8-5号真菌亚种,可简称为:“8-5号真菌”。

入口和出口

在前文已有说明,此处不再复述。


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