本站仅供阅览。编辑请前往源站点
Level IF-43
: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 }
评分: +9+x

生存难度:生存難度:

等级等級 荒服

  • 整理自存疑资料
  • 视情况安全稳定
  • 可能有潜在危害

Level IF-43是后室IF层群的第43层。

描述:

photo-1547156306-383679f4e4e4?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8JUU3JTk5JUJEJUU4JTg5JUIyJUU4JUI1JUIwJUU1JUJCJThBfGVufDB8fDB8fHww

Level IF-43 的高处。

Level IF-43为一个大型的建筑楼道、房间综合体,其结构极度不稳定,据多次记录显示,在每次探索本层级时层级内往往都会多出一些新的内容物,这些内容物与此前层级中已存在的内容物极其相似,多种相同的特征均表明其为层级原内容物的延伸,不过,不同内容物之间仍有少许差别。

目前据M.E.G.所撰写的档案,此层级可分为楼梯间、走廊、公寓楼、维护地带等区域,区域的排名取决于其发现时间,所有的区域均有图片与3次以上的记录。由于层级似乎无限延伸且以某种不稳定的方式连接在一起,因此在层级中建立起前哨站是极为困难的,不过,M.E.G.采取了一种仅在层级内生效的方法,将前哨站建立于层级内可轻易到达的中心部分。

于大部分探索记录中,流浪者初次进入此层级所来到了“起点”区域装饰似乎是极度雷同的,所有摆设、装饰物与建筑结构均别无二致,且“起点”区域的内容物并不会随着层级内其他新内容物的出现或是层级结构的变化而变化,简而言之,这是层级内唯一可确信的稳定区域,因此,在下文描述中将默认以“起点”区域为起点对此层展开描述。

photo-1679407835064-b5833dd22c17?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8JUU5JTlCJUJFJUU5JTlDJUJFJTIwJUU4JThEJTkyJUU4JThBJTlDfGVufDB8fDB8fHww

未经证实的窗外景象图像之一。

于层级内出现的窗户在外观上似乎连接着一个“外部区域”,但由于该层级内窗户坚硬且无法破坏以至于无法验证窗外景象的真实性。窗外景象一般呈现为一片被雾霾所笼罩的无垠境界,整体由荒芜且毫无生机的土地与一些残存的内容物所组成,内容物一般为几棵似乎还在绽放生机但已临近死亡的枯树与形状不规则的混凝土柱状残骸。

层级的所有区域内均被明亮的光线所覆盖,这种光线并非来自于层级内疑似通往外界的窗户,而是来自于层级内的日光灯。这些日光灯始终保持常亮,灯罩上附有少许灰尘与灰色杂质,这些杂质似乎是化合物质与油脂的混合物,略带一些令人作呕的油腻味与机油味。通过对日光灯的拆卸,可发现层级内的所有日光灯内均有简易的电路与灯丝,但并无镇流器、启辉器、补偿电容器等复杂零件。

层级中不存在任何已知的实体,包括实体的尸骨或是留下的痕迹,但流浪者可在层级内遇到其他流浪者。流浪者在层级内同其他流浪者交流时通常会发生一种名为“延迟”的现象,流浪者的肢体动作与语言在另一个流浪者眼里会被放慢与延迟,且这种效应完全是随机且不可控的,这种效应在两个以上的流浪者聚集在一起时会逐渐减弱,当五个以上流浪者聚集在一起时,该效应几乎完全消失。

层级内设有多种不同类型的门,最为常见的为檀木木门与玻璃门,层级内所有门均可打开,这些门大概率通往另一个不同类型的区域,所有门均无法以任何手段损坏,使用工具试图破坏这些门的行为将会把工具直接弹飞。层级内大部分门上均设有铁制把手,把手上有时会沾染其他流浪者的手印与指纹,以及一些粘稠的未知液体。

层级内设有稳定的Wi-Fi,且所有区域内Wi-Fi的强度均一致,该Wi-Fi名称为“When-Forty-three”,密码为434510。该Wi-Fi可在任何时间段内通畅地使用,并且可流畅地运行1080p的高清视频,除此之外,此Wi-Fi也可用于在层级之中进行联络,无论其他流浪者在何处,此Wi-Fi都能迅速联系到另一名流浪者的设备。

层级内食物补给充足,大部分食物出现在均匀分布于层级内的自动售货机,这些自动售货机看似内部空无一物,但只要流浪者按下自动售货机上的开关,便会自动弹出随机类型的食物,包括薯片、可乐、巧克力、罐装米粥、水果罐头等,这些食物均可为流浪者提供能量补给,除这些食物外,自动售货机偶尔也会弹出一些不锈钢制的水杯与保温杯。

photo-1616403924368-4eb9bea9c128?w=1996&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8JUU3JTk5JUJEJUU4JTg5JUIyJTIwJUU2JUE1JUJDJUU2JUEyJUFGfGVufDB8fDB8fHww

Level IF-43的楼梯。

photo-1702763529941-ffa1f54fb7ae?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8JUU3JTk5JUJEJUU4JTg5JUIyJTIwJUU2JUE1JUJDJUU2JUEyJUFGfGVufDB8fDB8fHww

Level IF-43中又一个循环的空间。

photo-1593908521791-b5b4993bf477?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8JUU4JUI1JUIwJUU1JUJCJThBJTIwJUU1JTg1JUFDJUU1JUFGJTkzfGVufDB8fDB8fHww

Level IF-43中典型的走廊结构

photo-1611234688667-76b6d8fadd75?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8JUU1JTg1JUFDJUU1JUFGJTkzJTIwJUU2JTg4JUJGJUU5JTk3JUI0fGVufDB8fDB8fHww

Level IF-43内一个可长期居住的公寓楼区域。

楼梯间

楼梯间为层级常见的组成部分,且连接着层级其他所有的区域。楼梯间区的阶梯上设有防滑条,扶手多为铁制。楼梯结构多为折返或是旋转。大部分楼梯间结构为全封闭,但仍有少数悬于层级内的一个大结构之中。所有楼梯间的结构似乎是循环往复的,流浪者行走于其中极易迷失方向。

封闭式楼梯间的每一层中都标有楼层数字标牌,这些标牌大多是由油漆粉刷在墙壁上的醒目标识,亦或是一些贴在墙壁上的数字铁牌或木牌,但这些数字标牌会随着流浪者的行进而变得扭曲,最终变得难以辨认或是直接消失不见,且这些数字标牌的准确性是完全未知的,因此我们不建议流浪者在楼梯间内行走时依靠这些数字标牌辨识楼层。

安全通道标识同样分布于楼梯间区域当中,这些标识看起来一切正常,但有时则表现得令人困惑。例如,有一些安全通道标识可能重叠在一处亦或是贴在地面上,部分安全通道标识则是完全损坏,仅剩下墙壁上残存的矩形胶水印记与残留下的绿色污渍为其此前曾存在的唯一证明。

大部分楼梯间区域总是呈现出长期未经维修的样态,大部分基础设施,例如空调与暖气片等均无法使用,原因大多是电路断开或是内部结构经受了强烈的外力或是遭到了液体的泼洒以致损坏。小部分墙纸早已脱落,露出后面米黄或浅灰的混凝土墙壁,供以行走的通道之前堆满了大大小小的无用杂物。

走廊

走廊在层级之内为仅次于楼梯间的重要结构,其结构错综复杂,通常由不同无限向某个房间延伸或是蜿蜒扭曲且包含多个岔路口的通道所组成,连接着层级中的许多其他区域内容物,该区域大部分的门均通向下一个楼梯间区域或是公寓楼区域的房间,由于其与公寓楼极度相似以及其似乎呈现出伴生关系,因此此处在介绍走廊区域时会夹带着一些由公寓楼探索报告之中得到的内容物特质内容,下文中介绍公寓楼区域时则是仅介绍公寓楼的房间部分。

大部分走廊均呈现出无限延伸的样态,流浪者可见其结尾处似乎有一个“终点”,“终点”呈现为走廊末尾的一堵墙,墙壁上似乎挂着一些画作,这些画作通常是写实风格,然而,无论流浪者如何向前前进,最终都只会发觉自己似乎在区域内循环走动或是被传送到了另一个走廊区域,而“终点”此时则是毫无变化或是直接消失。

极其罕见的情况下,流浪者可能会达到“终点”,此时流浪者的处境是极其危险的。在“终点”时,流浪者所处的地方永远不会是该走廊区域的固定区域,且此时“终点”附近的墙壁结构会迅速变化,有时可能会导致这些墙壁堵住流浪者前往其他地方的去路或是将流浪者挤压而死。若流浪者发现自己此刻正处于“终点”,请立即逃离此附属区域。

公寓楼

公寓楼与走廊区域总是同时出现,两种结构相互嵌入彼此,流浪者在探索走廊区域时极易进入公寓楼区域。该区域乍一看显现为普通的公寓房间,但仍有许多可使尝试生活在其中的流浪者感到异常的方面,例如,公寓楼区域中看似投射出阳光的窗户外部景象却呈现为一片无边的黑暗,抑或是一些物品摆放在令人困惑的地方,例如盆栽放置于冰箱内、被单摆在电视机上等。

虽说如此,但公寓楼仍是层级内最为宜居的一个部分,此处并无任何在层级内其他区域中频繁出现的结构错位现象,且设有多把保存完好且未经使用的家具与一些在数量上明显比他处更多的食物补给。区域内的所有家具均会在流浪者使用并离开该区域时重置状态,一切前一个流浪者的使用痕迹都将在霎时间被抹除。

区域内最为常见的家具为木质桌椅以及床铺,桌椅摆放整齐,床铺一尘不染。通常诸如衣柜与橱柜等一般公寓里常见的物件也时常出现于该区域之内,衣柜里摆放着一些款式相同但其颜色稍有不同的衣服,所有衣服在流浪者穿上后均会随着流浪者的身高、体重、腰围、性别等逐渐适应流浪者的身体曲线。

区域内摆有多盆不同植物类型的盆栽,盆栽虽极易损坏但却又有极强的恢复能力,在被打碎后会立即自动复原。盆栽内的土壤掺杂着某种未知成分,这种成分可以使种植的植物在不进行施肥、浇水与阳光照射等行为时正常存活与生长,除此之外,土壤内有时也会出现一些类似于蠕虫的小型生物,但这种生物极其安分,不会离开土壤,且出现概率极小。

区域内出现的所有电子设备均可使用,键盘、手柄、笔记本电脑、VR设备、电视机等设备均可在区域内发现,笔记本电脑可正常上网并连接一些来自于前厅的网址,只是在连接前厅网址时加载速度会变得极为缓慢。VR设备可以用于游玩内部自带的几款游戏,自带游戏通常是前厅中的知名游戏,例如《俄罗斯方块》、《我的世界》等。电视机可以用于收看一些节目,这些节目的来源未知。

区域内隐藏有多个音响,这些音响会在随机时分播放白噪音或是雨声,播放的声音似乎可以使流浪者产生舒缓、困倦或孤独的感觉,且这种感觉会在流浪者在区域之内长期驻留后不断增加,最后使居住于此的流浪者仅剩下孤独之感,同时也会让流浪者的时间感知变得逐渐模糊,据推算,大约3000余流浪者都选择在此孤独终老。

photo-1754888904182-59aecbd11f3a?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8JUU3JTk5JUJEJUU4JTg5JUIyfGVufDB8fDB8fHww

Level IF-43内不同以往的结构。

维护地带

维护地带为此层级内最为神秘莫测之地,该区域似乎为层级的架构部分,并维护着层级其他所有区域,此区域也是我们了解该层级背后阴埋真相的唯一途径,目前M.E.G.已派出多名探员以调查该区域的特性与其他关于层级的早期报告内容。

该区域由多个未来主义美学风格的建筑结构所组成,每个结构之间设有支撑柱与其余装饰结构。大部分结构内的装饰风格均为抽象极简派,其间摆放有多个用以维护层级的庞大设备群,设备包括电力系统、给排水系统、暖热空调系统、智能化系统以及能源系统等。

区域内的主要空间被主配电柜与电表箱所填满,这些配点系统均被控制系统所控制,控制系统需要使用区域内的控制台操控,控制台可控制层级内的照明与电源分配。除配电系统外,区域内还配备了柴油发电机,这些柴油发电机永不枯竭,遗憾的是所有柴油发电机均无法拆卸以研究或是搬运以利用。

区域内同时配有完备的供水系统与排水系统,这些系统连接着层级其他区域中出现的所有管道,系统内包括水泵、水箱、排水管等结构。空调系统可用以调节层级内的温度,使其始终保持舒适状态。能源系统主要为太阳能板,这些太阳能板仅需日光灯的光线便能不断产生能量,任何试图使用前厅中定律知识以解释其运作规律的行为都是毫无意义的。

区域内有多台记载了不同文档的计算机,部分计算机甚至搭载了可用于进行正常交流的AI,所有计算机均被智能化系统所控制。目前由于层级的价值性,M.E.G.正在调查这些计算机内所有文档所记载的内容,也许这些内容正指向着层级原本的可能性,同时,M.E.G.也派出了多名人员与AI进行交流。

基地,前哨和社区

M.E.G. - 巡回基地

photo-1760080590420-fe3ac2155c95?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8JUU2JTg4JUJGJUU5JTk3JUI0JTIwJUU1JTlGJUJBJUU1JTlDJUIwJTIwJUU1JTg5JThEJUU1JTkzJUE4fGVufDB8fDB8fHww

平常时分的基地。

M.E.G. - 巡回基地原为层级内的一个类似于候车厅的废弃结构,由于该结构极为罕见因此上文中并未介绍。1997年5月16日,由于M.E.G.部分基地出现人员众多,住房紧张等现象的缘故,M.E.G.开始对Level IF-43进行调查并试图将其广阔的空间加以利用。

M.E.G. - 巡回基地内配备有基本的办公区与住所,由于层级内存在充足Wi-Fi的缘故,该基地始终与其他M.E.G.的主要基地保持联系,并将层级内获取的资料发送于其他基地。

据此前在后室论坛与学术界内广为流传的理论,在这样一个非欧几里得空间里建立基地是绝对不可能的,M.E.G. - 巡回基地的最初代表选择了层级中一座看似稳定的的候车站结构加以改造,并形成了初步的基地社区。

该基地随着发展人数逐渐增多,但同时基地位置也开始因为非欧几里得效应而变化,这导致有多数原为基地的成员迷失在其他区域,为了使人数不再越来越少,基地首脑Alistair Vance派出了更多调查员以调查层级属性,随后发现了层级的维护地带。

层级地带的AI似乎知道关于层级的更多,也因此,Alistair Vance选择与其达成合作,他们给AI传输更多的数据库资料,AI为他们传授层级内的特有技术,靠层级内的稳定态技术,Alistair Vance成功使基地位于了层级中心。

入口和出口

入口
  • Level IF-17中找到一扇写着警告的门并进入会来到本层。
  • Level IF-97走进一个标着长期出入口的狭长的走廊会来到本层。
出口
  • 在本层喝地毯中极为少见的脏水会来到Level IF-7
  • 在本层中找到一扇酒店的门会来到Level IF-3
  • 在本层中找到一扇零食店的门会来到Level IF-286

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