Level AS-45
: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 }
评分: +8+x

2018年8月8日的下午,我收到了那封邮件 。在看完那封邮件的第一时间,我便汇报给了我的上级





第二天,上头便派人去完成这件事,因为实在没有找到发邮件的到底是谁,所以干脆先派人去完成这件事了





转眼间,4年过去了,就在项目开始的那天,也就是昨天,这个耗时4年的大工程终于完成了





可事情并没有同预期一样发展





神秘的发件人依旧没有现身,而Level AS-45也同以往一样,没有任何变化





于是,我被解雇了,就在昨天





现在想想,那封邮件既没有写发件人,账号也已经注销了,甚至还有一部分内容是乱码,这根本就是一个恶作剧吧……也许这一切都是我的错误





如今我无依无靠,便打算去Level AS-45——这个了解我工作生涯的地方,现在马上就要了解我的生命了





不知抽什么疯,我没有直接一头撞死在墙壁上,竟还抱着「看看状态重叠」到想法,蹲坐在走廊的中间





然后我就遇到了那个发件人——准确的来说是实体,它从一扇门里走了出来,转头便发现了我





我吓得拔腿就跑,可它却叫住了我,并告诉我它没有恶意





它仔细观察着我的脸,突然惊讶的说到:





我当初就是把邮件发给你了对吧?





我愣住了。我并不知道它为什么知道我的长相,但我还是如实回答了





它在得知后的第一时间便是异常的悲伤:





如果你们愿意来帮助我们的话,这里也不会是这个样子了……





我立刻反驳它,并将我们近四年来的努力以及无事发生的结果全盘托出,可它却突然感到疑惑:





我不是2016给你发的邮件吗?





我很震惊,但紧接着的就是疑惑,因为2016年是Level AS-45并不是这个样子的,那是这里只是个普通的学校走廊,在2017年5月间突然无法进入,接着才变成如今这副模样





它在得知后便更加疑惑着对我说:





我什么时候说的Level AS-45啊?我说的是Level AS-46啊!





我和它沉默了





随后我告诉它,那封邮件并不完整,前后的部分都存在乱码





它立刻明白了过来:





大概是当时的空间并不稳定,导致信号延迟传输,所以没有准时传到





接着它和我讲述了邮件发送后的故事:





在那之后,我们一直在等待你们的消息,直到2017年,我猜测是因为层级的不稳定性到达了临界值,导致空间混乱,与Level AS-45重叠在了一起。在重叠的过程中我的族人大多数都死了,活到现在的可能只剩我一个了,我一直苦苦支撑着,直到今天,我终于忍不了了,打算寻死,于是出来就遇到了你





至于那个方法,在层级重叠后大概失效了吧





那么你是来干嘛的呢?





我告诉它,我的工作没了,现在身无分文,没有活下去的动力,于是来到这里寻死





那么,我们一起吧





就在我编辑这段话的前一个小时,它撞进了旁边的墙壁,现在,我将把这段对话传到网上去,然后,去见它。那么,再见。

回到现在

€&#£%8月7日,我们来到这里,打算在这里住下来





我们尝试把这里修建成我们所希望的样子





而第一步就是扩宽这条走廊





可这墙壁却异常的坚硬,我们没有办法拆除它




对于这件事我们一筹莫展,直到我们在第15687间教室内发现了一些贴纸





这些贴纸的正面可以吸收除了其本身的任何物品,并且使它所附着的物体变大





我们通过一些小手段把这些贴纸变的更多,并将其贴在墙壁上





理论上来讲,这个层级本身是一体的,所以任何掉进墙壁里的物品





都会使整个层级的空间变大






而这正是我们所需的





所以理论上我们只需要不断将物品丢入墙壁,等到层级扩大就行了





只是贴纸的分配似乎有些问题





你也知道,这个层级的空间是无限大的,而我们的贴纸是有限的





自然,只有一部分墙壁贴有贴纸





就是因为这个,层级走廊的宽出现了断层





层级的空间被撕裂,其缺口被无尽的天空填充





第一块区域经管较大,但其长度太小,因此我们需要扩长这段区域





但目前事态的发展脱离了我们的控制,因此我们需要你们的帮助





要做的非常简单,理论上两个区域还是一个层级,只是大小差距过大,中间被天空所填充





所以只要将两块区域的大小变得一致,两块区域便会合并





但这需要大量的贴纸,而我们已经没有能力制造更多贴纸了





因此你们要做的就是制造贴纸,并将第二区域前10km的区域扩大至与第一区域一致





事成之后,我们愿意将前5km的区域划作你们的拥有区





以及&%#£€€#%##&%€£#£




试试?

生存难度:生存難度:

等级等級 0

  • {$one}
  • {$two}
  • {$three}

如何使用:

[[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 AS-45后室AS层群的第46层。

描述

Level AS-45是一条不断向前延伸的走廊,其被描述为一条学校走廊。流浪者的切入位置是固定的,其背后均是一扇被锁死的铁门,因此流浪者想要逃离层级只能向前。墙壁的白色乳胶很新,其散发着刺鼻的味道。地板规整的排放着大理石砖,每块完整的砖都是标准的12×12(cm)的正方形。天花板镶嵌着两排白色荧光灯,其不停的工作并发出「嗡嗡嗡」的杂音,这并不能通过佩戴耳塞、耳机等设备削弱杂音的存在。有证据表明,每个流浪者听到的杂音的大小并不相同,即使他们站在同一个荧光灯下,杂音的大小会随着流浪者个体所待的时间长度调整,时间越长,流浪者所听到的声音就越大。

以流浪者切入时面向的方向为准,走廊右侧是大量的规律排放的窗户,窗户外是一座巨大城市的景象,这个景象会以40个窗户为周期无限循环。尝试打开窗户是不可能的,所有窗户均被锁上,同时暴力破坏窗户会使破坏工具损坏1。走廊左侧则是不规律的排列着大量木门,这些木门大多是可以打开的。木门另一边通常是一间教室,其中整齐的排列着大量木制桌椅。教室的黑板通常不是空的,有些放有一个或一对大型三角板,而另一些则被粉笔涂抹出一些涂鸦和文字。

实体

该层级暂未发现任何实体

基地、前哨和社区

该层级暂未存在任何基地、前哨和社区

入口与出口

入口

  • Level 11内发现一扇格格不入2的木门,且木门上方镶嵌着写有「Classrooms」的金属牌,进入即可来到Level AS-45
  • 更多入口等待发现。

出口

  • 切入一扇彩色木门便会来到Level C-53
  • 很小的概率,走廊的任意一侧会出现一扇红色的金属门,进入便会来到Level AS-11

附录

由于该层级的入口极为稀少,对该层级的描述仅来自6名被记录的流浪者,故描述可能存在错误或缺漏,如有补充,请尽快联系M.E.G.

上次编辑时间:2015年8月7日


LEVEL
AS-45

生存等级生存等級
2

逃离逃離:2/5
略难逃离略難逃離

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

实体實體:0/5
无敌对实体無敵對實體

Level AS-45后室AS层群的第46层。

描述

Level AS-45被认为存在两种状态,其均被描述为一条不断向两边延伸的走廊,但两个状态的外观大相径庭。当流浪者进入Level AS-45时,就有概率进入其中之一,这个概率接近50%。


状态一

Level AS-45的状态一为一条白色走廊,走廊的两边装有金属门,其均无规律的排放着。这些金属门大多是无法打开的。走廊的墙壁干净且光滑,任何物品接触墙壁后,都会在3秒内融入墙壁,具体原因暂不清楚。天花板上的荧光灯亮着,其以相同间隔排开。

极少数的金属门可以打开,其内部是一个白色房间。房间天花板中央悬挂着一个白色吊灯,其无法被破坏。房间内家具的位置并不固定,但其家具类型完全相同,分别是两个黑色办公椅、一个白色办公桌、一个蓝色双人沙发和一盆塑料植物。一些办公桌上摆放着文件袋,里面装着一些白纸,这些白纸上通常写着难以理解的文字和模糊的图片,但有极少部分有着1~2行经过加密的内容。


状态二

Level AS-45的状态二被描述为一条废弃的学校走廊。走廊整体破旧不堪,一些墙壁与地板甚至发生了塌陷。绿色的植物将大部分建筑覆盖,尝试将植物与建筑分离是不可行的。墙壁使用混凝土建造,但其表面存在脱落的情况,走廊一侧的木门以20米为间隔规律排开,窗户在墙壁另一侧紧凑排布着,窗户外是无穷无尽的蓝天。窗户的框架存在脱落的情况,这使得一些玻璃掉在地板上。流浪者探出窗户可以发现Level AS-45似乎悬浮在空中,并且流浪者使用任何手段都无法观测到地面的存在。流浪者在钻出窗户后会掉入天空,并不断的下坠,直到流浪者死亡4

木门的另外一边常常是一间老旧的教室。大部分的教室内都拥有着统一的装饰,但一些教室的黑板被人为的破坏,还有一些黑板上充斥着无意义的涂鸦与文字。教室内可能存在一定量桌椅,若有,则摆放形式不固定。


Level AS-45的空气中含有致幻气体,长期吸入致幻气体会导致流浪者失去意识,并在失去意识的1分种内撞向墙壁,并融入墙壁。在完全失去意识前,流浪者对周边环境的认知也会逐渐失真,例如眼前景象出现错位和扭曲的情况,同时流浪者渐渐失去对四肢的控制。流浪者在失去意识后,将在1分种内站起,并疯狂的撞向墙壁,最后融入墙壁,成为层级的一体。值得注意的是,有流浪者认为此层级的走廊相比最初似乎被拉宽了,并推测这与死在墙壁中的流浪者数量有关。这一猜想并未被证明。

现象

状态重叠

Level AS-45的状态一与状态二有概率重叠在一起。当两者重叠在一起时,层级的稳定性将大大降低,流浪者观测到的走廊将具有两个状态的特性,但整条走廊并不完全相同。例如,一段走廊的天花板并没有荧光灯,但墙壁却是状态一的,并且这使得该段走廊变得十分黑暗,而另一段的走廊墙壁则是状态二的混凝土墙,但窗户一侧却无法观测到天空,取而代之的是破旧的白色墙壁。这个现象会持续大约20分钟,结束后Level AS-45将会完全恢复原状。

当重叠发生时,Level AS-45内的所以流浪者将全部聚集在同一条走廊中,同时走廊会产生剧烈的抖动。这会使得许多流浪者因此撞向墙壁并融入墙壁。大约5分钟后,走廊停止抖动,同时空气中致幻气体的浓度迅速上升,这会加剧流浪者失去意识的速度。约15分钟后,走廊的部分墙体、天花板与地板发生塌陷,随后塌陷处展现出蓝色的天空。约20分种后,建筑物停止塌陷,层级在近30秒内恢复为两个状态,流浪者将被送回原本所在的状态。

值得注意的是,大多数电子设备和物品在重叠状态无法使用,同时走廊两侧的门无法被打开,这意味着流浪者无法在现象发生时离开层级。


目前关于状态重叠的所有记录都来自17位曾经历过该现象的流浪者的口述,由工作人员整理而来,可能存在错误与疏漏,如果发现请联系最近的M.E.G.基地或前哨,我们将尽快修正。

另外,目前记录在案的17位曾经历过该现象的流浪者都在离开Level AS-45的1个月内失踪。在失踪后,有流浪者称在Level AS-45的状态一发现了他们,但在交涉后发现对方并未理会,并义无反顾的撞向墙壁,其原因未知。

实体

本层级不存在已知的实体。

基地、前哨与社区

本层级不存在任何基地、前哨与社区

入口与出口

入口

  • 在任何层级中发现一扇带有「Classrooms」的发光标志的红色金属门,进入后便会来到这里。
  • 进入带有「Laboratory758」门牌的金属门便会来到这里。

出口

  • 任何带有出口标志的门都有可能通往Level 1

附录

Level AS-45状态一内发现的白纸中,被记录的内容仅有4行文字,其均经过凯撒密码加密,且来自不同的白纸。如下:

来源 内容 其他
被揉成球的白纸 这里即将成为极佳的住所 这段话为是这张纸的最后一句话
被撕坏的白纸 你们在搞什么? 这段话是这张纸的第一句话
写满文字的白纸 …稳定性大大下降… 这段话插在一句话内
几乎空白的白纸 快跑! 这两个字异常巨大

关于Level AS-45状态重叠的研究项目目前已被暂停,其原因是状态重叠对电子设备的干扰,以及其特性使目前派出的研究人员均已失联,这导致对该现象的研究被迫无限期暂停,在发现安全研究该现象的方式前,该项目将不会重启。如有线索,欢迎联系我们。

上次编辑时间:2018年8月6日























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