回响:Level C-1037
: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




你的思想正在散去。



生存难度:

等待分级

  • 孤立效应
  • 部分信息及性质不明
  • 难切行且不稳定

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

概况:

Level C-1037 是泳池房,因层级中总是充斥着各类回声,而得名“回响”。常规环境与Level 37 类似:四处铺满白色瓷砖,建筑体诡谲多变,被颜色不定的温水所低低淹没,一些空间可能被其他的建筑体所插入、分割;部分区域呈破落状,但流浪者的身体通常无法穿过其中缝隙,而成功通过其离开的流浪者至今去向未知。与其他泳池房相比,该层级的结构更加复杂,组成元素更加多样。相对的是,该层级危险程度与不稳定程度对比其他泳池房也显著提高,例如,该层级的不同房间的面积大小、灯光明暗、水质优劣等均有差异。部分房间有劣化现象发生。

若流浪者从破落的建筑体的缝隙中看向外界,或许可以看到以下景象或其他:黑暗彩色深水、……这些景象被认为是异常的,在恍惚间其会恢复至该层正常情况下的外观。

Level C-1037 应只能通过水域进入,每例切入报告中所言之切行方式千奇百怪:或重力翻倒撞入天花板,或建筑穿模掉进下层,又或一头扎进水中最终从该层污水中冒出身来。倘若流浪者进入该层,尚请检查物资是否充足,后尽快寻找出口离开。注意脚下,莫入深水。


危险及其应对方式


一、精神影响

目前该层级中无任何一则流浪者相遇的报告,这可能是该层级的孤立效应导致的。此外,该层级切行困难,且暂无稳定出口,流浪者有很大概率需要在该层级探索较长一段时间才方可逃脱,孤独便成为了该层级对流浪者精神影响的主要因素。

正如“概况”中所述,层级中始终回荡着连绵不绝的噪音,这类噪音包括但不限于流水声,类似鸭叫声,蛙鸣声。这种本不应存在于唯美,静谧水池中的声音却能在广阔的层级中肆意转播,形成错综交叠的回声,使精神影响更近一步。

突发的恐惧也是层级精神影响的来源之一。在层级中的泳池中,流浪者总能发现一些造型诡谲的雕像,其形象多表现为表情夸张的卡通人物或体型异常的青蛙,金鱼等水生动物。这些雕塑可能随时出现或消失,在层级黑暗处,它们的身体部分还可能发出异样的光,在杳无边界的无人泳池房中,它们足以成为流浪者的恐惧来源。

二、资源匮乏及作息问题

据推测,该层级或许存在一个特殊效应——其能够维持在该层级内的流浪者的生命体征,并在一定程度上治愈流浪者的外伤并缓解其所带来的疼痛。其具体表现为该层级内的流浪者会正常地感到饥渴感和疲惫感,但事实上,这些因素无法层级内的流浪者产生任何实质性危害。然而,在当流浪者历经艰险离开层级后,因饥渴和疲惫所导致疾病将接踵而至,从该层级离开的流浪者将在24小时内脱水、昏迷。医治不及的流浪者有很大概率死亡或陷入悲尸循环,即使救治及时,流浪者也会终生备受病痛折磨。

即使在噪音的侵扰下流浪者难以入睡,但为防范这一危害,流浪者仍需在层级内需保持较为良好的作息规律。

关于饮食问题,流浪者若没有携带足够的物资,饮用层内本有的水体也不失为一种选择;但请勿饮用下文中遭到劣化的水体,这无异于饮鸩止渴。而在 Level C-1037 中,温饱问题最为致命:该层级中并没有可供人食用的物资。目前唯一的解决办法是「自我食用」,即流浪者食用自身的血肉以达到充饥的目的。该层级的特殊效应足以使流浪者撑住撕咬自我血肉充饥,并在一段时间后自愈。如有工具,切割血肉也能够进一步减小疼痛。暂不确定流浪者是否会因自食而患病,但每一例幸存者都没有因此而出现任何问题。

三、环境劣化

在层级环境的持续跟进报告中,可知该层部分房间的环境正处于缓慢劣化的过程中。这一现象暂时无法缓解。值得庆幸的是,Level C-1037 在近期似乎已停止劣化,故最近的勘探报告暂时可信;就报告给出的数据而言,相比池房典例Level 37 与该层其他房间,劣化房间大部分构成要素都显得无比混乱与肮脏。建议流浪者莫要令眼部、面部与其他脆弱部位及伤口浸入该层水中,同时尽量不要触碰层内污垢。反之,可能导致流浪者患病,甚至威胁生命。需要注意,这些房间在外界看来环境是基本一致,完全无法确定其是否正处于劣化。流浪者在层级中迈出的每一步无异于将自身托付给命运。层级劣化具体情况如下:


〉天花板、地面及墙壁:不同程度的落灰、生菌、覆盖苔藓,缝隙挤满黑色污垢。墙壁及地面布满黑色不知名固态或液态物质及硬块,难以清扫。后续分析未检测出黑色物质主体组成,但检测到其中有生物骨肉腐烂物;鉴定硬块为生物尸块,外层被一种命名为「不腐蜡」的同色不明物质包裹,该物被认为是尸块不被分解腐烂的重要外在因素。

〉水质:呈不同深度的黑绿色,部分区域有黏稠现象,上生水藓,内里浑浊脏污,有漂浮异物及肉眼可见的微生物存在。检测可得其中含有大量未知的菌体。上述劣化结果任何一项都有概率威胁流浪者生命,故重申:莫要进水,特别是下文中所述的深水区域;这无异于慢性自杀。

〉光线:有显著减弱,部分房间呈完全黑暗状。照明工具同样深受其影响。除此之外,流浪者眼部在这一环境中似乎受到了负面影响,报告中流浪者离开弱光线房间后视力出现不同程度下降或视野模糊,并在一段时间后恢复。

〉空间变化:当流浪者进入某些劣化房间后,该房间可能瞬间发生变化,最普遍的一种情况便是原本的空旷前路突然被墙替代。若流浪者不幸进入某些大型劣化房间,可能需要长时间的探索才能离开。而这一过程中,劣化的蔓延可能会使流浪者下个所抵达的房间出现劣化,而难以脱身。


除此之外,在劣化房间中受到第一、二条所述负面影响的效果均会显著增强,若误入其中请尽快离开。


深水区与「链接」

标题二者均为该层的特殊重要构造。其中,深水区更为神秘与危险,而「链接」及其周围房间形如鱼骨且有着极端的长度,同时内常有出口存在。二者皆需了解。

深水区


有时,流浪者可以注意到某个房间的泳池中的水体从中心线开始变得更加黑暗,直至这处黑暗延伸至整片水体,这类空间便是深水区的一例典型。它们几乎全部继承了Level C-1037 的混乱特征,流浪者在其中会观察到不同程度的劣化与明显不合常理的环境特点:亮度忽明忽暗的灯光、射于墙面后不再反射的亮光、眼部始终盯着流浪者的,面部表情夸张的大型橡皮玩偶,如此等等,无一不彰显着此处的非同寻常。

深水区中流浪者的任意一步或都将自己沉没在深不见底的水体之内,假若平心静气,几十秒后方有概率遇得一线生机——掉入一个更深的深水区。此后,流浪者将在深——深——更深的坠落中无限循环,可能此生都无法从深水中离开。值得一提的是,循环过程中所处的池房在某些方面被发现是完全一致的,这可以被浅显地理解为架构更加复杂的「彭罗斯阶梯」。

  • 彭罗斯阶梯,一个有名的几何学悖论,即一个无论向上或向下都无法走至尽头的楼梯。

Level C-1037 中的一部分房间与绝大部分深水区都配有颜色鲜艳的水滑梯或管道,它们常常多个一组出现在空间边缘。这些事物一般通向另一深水区,也有进入常规空间的报告;有音视频遗留指出,有人员进入它们后音讯全无,故目前并不建议流浪者将管道滑梯作为可以信任的安全出口。应将其作应急用物。

越是向下,深水区所呈现出的样式就越发异常,某些区域甚至出现了类似Level 1.5 的亮光颠倒。流浪者应尽量避免深入深水区,须知,选择向下后很大可能再也无法回到上层。过于深入的流浪者目前无一有生还者称已离开该层,而多数被认为已经葬身水中。总而言之,莫入深水



「链接」


「链接」,一种或曲或直、或宽或窄的,长度无法测量的空间。它并非一条单调的廊道,而是有无数分支的,杂乱的鱼骨状空间;一些链接可能被其他空间所阻塞而令流浪者产生「到达尽头」的错觉,但事实上,在绕路后可以发现链接实际上并无法到达所谓尽头,故而其长度被认为无限。

链接在深水区中也有出现,与常规不同,这些链接向上处大多都被堵塞且方向常常朝下,上下左右四面皆被封闭同时些微漏水。它们一般没有分支,在此处反而更像是隧道,一些甚至需要弯腰或爬行才能进入;这些小型链接可能将流浪者卡在其中动弹不得,故流浪者应尽量避免进入其中。

链接的劣化现象很是反直觉——正常来说,一个空间的劣化进程应当统一,但链接就仿佛被分割成了多个空间而使劣化出现边界;如此,你可以在其中看到一条两边分别是劣化和常规环境的分界线,甚至两条三边、四边乃至更多也有可能。这也间接说明Level C-1037 的劣化实际是平均出现且有所限制的,并不如此混乱。

流浪者可能在链接中发现一些纸张或录音带、光盘,上面一般记录有流浪者在该层内的经历,绝大部分的结局都是死亡,之后化为上文提到的黑色物质,一部分被「不腐蜡」包裹成为坚硬的尸块。其中一条名为「布里奇德之死」(The Death of Brighid)的录音带尤为出名,其文字副本放于页面尾部。尚且不知这些物品是否为其主角自我遗留的,暂对其所有者保持怀疑——无论是录音带、光盘或U盘都是同种样式,即使是纸张,它们的样子乃至页角的褶皱也几乎一模一样。

  • 「布里奇特之死」在Level C-1037 有许多份,它们的内容应是完全一致的。


这二者之中似乎隐藏着很大的秘密,碍于孤立效应的存在与突发危险,暂时无法对该层级展开细致的探索。请不要倚仗Level C-1037 的疗伤特性尝试冒险,在一些劣化区域中,疗伤效果会有极大削弱;同时,脑部损伤是无法被层级治疗的。请珍惜生命,层级恐惧的回响时刻提醒着流浪者。


实体与幻象

Level C-1037 并没有已知的实体存在,层级内类似生命体的玩具也被确定并非实体。但在劣化房间和深水区中流浪者总会认为自己正被某物在视野盲区所注视,而常规环境中并不存在这种事件。流浪者有时可以在恍惚间看见水中突兀地伸出触手与眼珠等物,但一眨眼便消失不见。这些事件总会令人感到不安。目前对于该层实体的探索正在进行中。


离开:

Level C-1037 目前稳定的逃离方式只有一种:进入一个不存在水体的空间,之后流浪者会感到莫名的眩晕和呕吐感,一阵天旋地转后其将去往Level 37。此外,在某些不定的情况下流浪者会遭遇与进入该层时相似的情况,之后会大概率到达原层级。另一些情况是去到随机一个层级或切行失败。其中随机层级包括一些没有被记录在案的层级;切行失败后流浪者可能在该层级中一直保持这种状态,如重力翻倒后切行失败的流浪者的重力会永远保持颠倒,直到其离开该层。

需要注意,诺克立普贴、迁跃浆果等辅助切行的物品在该层将完全失效。



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