Level S-127
评分: +11+x
: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 }

Level S-
127

生存难度生存難度
5

逃离逃離:4/5
极难逃离極難逃離

环境環境:5/5
死区死區

实体實體:5/5
敌意侵袭敵意侵襲

Level S-127是后室S层群的第127层。

描述


124-1

Level S-127走廊的一张图片。

Level S-127是由多条相互交错的狭长混凝土走廊与走廊两侧随机出现的房间所构成的一处非线性空间。流浪者在切入该层级时往往会只身出现在走道中。这些走廊的外观与前厅中老旧房屋的地下室相似,其大多异常狭窄,仅可供一人通过。Level S-127的走廊内极为昏暗,同时任何外带光源均无法在层级内正常使用。层级内的部分区域呈现出常年被水浸泡的外观,同时其墙壁低处及天花板被大量苔藓真菌所覆盖。

Level S-127内的走廊顶部通常有着大量被严重锈蚀的管道,其内流淌着少量变质的杏仁水,若尝试饮用则会引发一系列症状,如腹泻、头晕等。回声现象通常会在这些管道周边表现得更为明显,这表明这类管道本身便可能具有放大回声的效果。

该层级的非线性特征主要表现在各走廊的交接处与其异常的空间性质。在视线未能观察到时,位于人员周边的走廊及铁门可能突然消失;当流浪者经过一处走廊相接点时只会被引导至另一无人的区域内,而非相邻的走廊。

走廊两侧偶尔会出现一些被锁死的铁门,其表面均被一种红色涂料覆盖。可以用通过暴力破坏等方式进入铁门后方的房间,但这一行为所发出的声音极大概率会引起实体的注意。这类房间均表现为一处灰尘密布的封闭空间,其内部往往摆放着多部遭严重损坏且用途不明的机器及少量可被利用的物资;任何尝试操控这些器具的行为均会导致其发出极大的噪音。

该层级内存在着一类具有极高威胁性的精神危害,其具体表现为流浪者在探索该层级时耳畔会断续出现各种明显的噪音,具体种类包括但不限于极强的电流声、人类行走声与有规律的敲击声。值得注意的是,这些声音均伴随着明显的回声;由于其特征与该层级的回声现象相似,流浪者极易将自己发出的声音误认为这类精神危害的症状,进而在不经意间发出更多声响。

由于未知原因,在本层级长时间逗留的流浪者,普遍认为自身将遭遇悲尸循环效应的影响,但他们无法在层级内寻找到任何可被利用的补给,其所携带的物资也将在陷入悲尸循环后消失。

回声


Level S-127存在一类名为回声现象的特殊现象,其已被确定为层级内的主要危险源。该现象会将流浪者所发出的声音分贝以未知手段放大,且声音响度在被反射后衰减幅度极小,导致其所波及的范围变得更大,其持续时间也将更久;这将进一步增加流浪者被敌对实体发现的风险。除流浪者所发出的声音外,这些回声中也包含着大量模糊不清的低语声,据其内的部分语句可判断其与流浪者所处的方位相关。

长时间受回声现象所影响的人员在其切出层级后常会留下极为严重的后遗症。该后遗症表现为流浪者在周边环境静默时,其耳畔可能出现来源不明的钟声;在与他人交谈时,会感受到对方所说的语句伴随着明显的回声。于少见情况下,流浪者会感受到周边的任何声音均被回声效应所影响,但这只会持续10-15秒。

近期观测表明回声现象具有传播性,因Level 3内与该层级相通的区域均出现了与上文回声现象相似的异常,尽管其强度相对较弱。此外,居住于Level S-127内的循声人响铃也被报告在这些区域中出现。

实体情况


循声人

IETS:5B+
IETS
:5
智能:B+

描述

循声人是一种仅存在于Level S-127内的特殊实体,其体型与人类相似但通体漆黑,头部被一光滑的黑色球体替代,身体比例类似于被竖向拉长的人类;该实体同时有着长度不明的双臂及腿部,除此以外无明显外观特征。值得注意的是,循声人的行动极为迅速,其在行动过程中只会发出类似于风声的微弱沙沙音,且其常被层级环境音盖过而难以被察觉。

行为

已知循声人的行动与层级内的回声现象存在紧密的联系,因该实体在普通状态下只会无目的的于层级内游荡。若该实体周边内出现了任何可被他人所注意到的声音,其便会悄无声息的向声源区域靠近以搜寻流浪者的踪迹。值得注意的是,该实体似乎可直接感知到受回声效应所影响声源的具体方位,推测与回声现象中的低语声有关。循声人的视力极差,其无法察觉到位于周边2m开外的事物。

该实体在确定攻击对象后会不断尾随于其后,在流浪者最无防备之时悄然下手。循声人在靠近流浪者至特定距离后,其身体两侧的手臂便会以极快的速度伸向流浪者,随后以极大的力量将其四肢缠绕,使流浪者立即丧失反抗能力。在捕获到攻击对象后,循声人的双臂将迅速收回,并将流浪者拖拽至一未知地点。

流浪者在被该实体所跟踪时往往会出现极为明显的恐惧感与被监视感,同时其四肢也将逐渐变得疲软无力,这往往还伴随着大量背部汗液的涌出与眼皮的不断跳动。若流浪者回头,则该实体会立即躲避至一处流浪者的视觉死角,其双臂也立即抽回。

应当

  • 远离该实体。
  • 发现该实体位于自身周边时谨慎、缓慢的行动。

不应

  • 在被实体发现或跟踪后在原地停留或惊慌失措的逃跑。
  • 在层级内发出过大的声响,因此举往往会吸引大量循声人

响铃

IETS:3C+
IETS
:3
智能:C+

描述


响铃,其外观表现为一只直径约10cm的碗型黄铜铃铛,于表面处有着明显的锈蚀痕迹及磨损痕迹,顶部挂有一根带有撕扯痕迹的红色布带。响铃一般会藏匿于层级内的杂物堆或管道上方,这使其极难被察觉。

与常见的铃铛类似,该实体在被摇晃时将会持续发出清脆的铃声,这同时还会伴随一种急促的呼吸声及强烈的震动。响铃在受到严重外部刺激时,将会迅速滚动到附近的杂物堆里以规避进一步的袭击;在这一过程中,响铃将会持续发出异常响亮的铃声以吸引周边的循声人靠近,借此驱赶攻击者。

行为

循声人类似,响铃的行动与层级内的回声现象具有紧密联系;同时其对于声音的觉察能力也强于循声人。一旦该实体感受到周边流浪者发出超过约60分贝的声响时,其将立即发出一阵异常响亮的钟声。这类钟声会受层级内的回声现象影响,其极可能会引发流浪者强烈的不安情绪,使其在不经意间发出其他声响。

多例视频记录表明,若陷入悲尸循环的流浪者多次受响铃所发出的这类声音影响,则他们将逐渐陷入一类名为循声进程的不可逆进程。受该进程影响的流浪者其体表皮肤将逐渐硬化并转为深黑色,听力大幅增强,头部及面部五官的特征也将逐渐消失。此外,受该进程影响的流浪者均会出现极强的嗜血欲及攻击欲,其四肢及躯干也会因未知原因被逐渐拉曲变形。最终,受循声进程影响的流浪者将完全转变为循声人,同时其也将丧失一切人性及记忆。

响铃似乎与循声人存在某种共生关系。因在部分流浪者所提供的录像文件显示,部分循声人其在脖颈处便挂有一只响铃的个体。循声人极可能利用了响铃具有高度敏锐的听力这一特点,用以增强其对流浪者的感知能力。值得注意的是,这些视频记录中拍摄到的循声人响铃其表面均沾有一定量的血迹与未知生物的身体组织,原因不明。


基地、社区和前哨站


由于Level S-127的危险程度极高,在层级内建立任何常驻基地、前哨与社区的行为均极为困难;但M.E.G.目前已在层级内设置了多处无人补给点。

入口和出口


入口

  • Level 3内发现并进入一条极为狭窄昏暗的走廊会将你带往该层级。值得注意的是,通往该层级的走廊周边往往会出现大量来源不明的回声。

出口

  • 于层级内发现一条光线较为明亮、持续传出机械运转声的走廊并进入其中将会抵达Level 3;此类走廊周边区域的回声现象通常会明显减弱。

本站不完全遵守CC BY-SA 4.0协议