Level MSA-16
: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 }

以下为M.E.G.工作人员与Level MSA-16内人员的一次对话记录,无意义部分已过滤。

(记录开始)
流浪者:你好,是M.E.G.吗?你们的level MSA-16档案有问题啊?

工作人员:可以详细说说哪里有问题吗?我们会积极修正。

流浪者:你们的档案上写的是“该层级拥有正常的昼夜循环,白昼黑夜均为12小时”,可是现在黑夜已经过去13个小时了!

工作人员:也许……有误差?

流浪者:那你们这记录误差也太大了点吧。我的朋友都还处于假死态呢,他什么时候才能复活……唉,他怎么起来了?

工作人员:怎么了?Level MSA-16在没有日出时流浪者是不会复活的!

流浪者:我不知道啊,但他确实醒来了……我去看看……

工作人员:别去!远离他!等待M.E.G.救援!

(连接断开,嘈杂的电流声)

(记录结束)


该流浪者在之后已被确认死亡,在此给予沉痛的哀悼。

在对话后,M.E.G.第一时间派遣数支小队来到了Level MSA-16援助流浪者。下面为行动报告,以及对该层级的研究报告。

行动报告

行动人员:临时小队一
报告时间:2040.8.4


该行动主要目的为拯救流浪者。临时小队与M.E.G.的涅槃者基地会合,并且进行救援流浪者的活动。

在该活动期间值得注意的是,有一种未知实体出现,这些实体疑似由原本在假死态的流浪者变化而成。小队并没有清扫这些实体,而选择主动避让。


该次行动救援出大部分流浪者,但也有部分流浪者永远留在了该层级之内,再次给予哀悼。

对于Level MSA-16现状研究

研究人员:[数据删除]
报告时间:2040.8.6


值得说明的是,Level MSA-16之内曾经发生过一起恶性的“长夜”事件,之所以是曾经,因为该层级现已恢复正常昼夜循环。

该事件直接和间接地导致众多流浪者伤亡。我们无法得知为何导致了该事件。

我们只可得知,我们对于这个层级的了解还过于少,因此,我们建议所有人员应当马上撤出该层级。


综上所述,“重生效应”现在具有了不稳定性,对于该层级的文档也应当作出更新。

警告

关于Level MSA-16的文档现已作出修改与更新,请以新版文档为准。请点击此处观看新版文档

Meglogo

M.E.G.

人类本就不应当如此玩弄自己的生命,这是天帝对于人类的一个小小的提醒。

但人类本就是在挫折中艰苦成长,也许人类在慌忙逃离无常伊甸之后,真正的涅槃重生才刚刚拉开序幕。

他们应该会懂的,后室从不是天堂。

———[数据删除]

生存难度:生存難度:

等级等級 变化

  • 变化的安全性
  • 不稳定
  • 中量实体

Level MSA-16是后室MSA层群的第17层。

描述

Level MSA-16是一个巨大且符合西方美学理念的城市,是一个无法确定其安全性的层级。该层级的环境与原先基本保持一致。

在档案更新之前,有大量人员出于寻找补给或通过该层级的特殊效应治愈自身的目的来到了该层级。但是如今流浪者不应当再在该层级尝试死亡,这是拿自己的生命开玩笑,是对自身生命的不尊重。

重生效应

顾名思义,流浪者在该层级遭遇致命伤害时并不会立刻失去生命,而会将各项生理指标稳定于濒死状态,并陷入一种类似于“深度睡眠”的状态。

在该状态下,流浪者的身体将无法受到任何破坏与损伤。层级内的流浪者将该状态称为“假死态”。

而值得注意的是,处于假死态的流浪者均将在下一次日出时完全恢复所有生理指标,这种回复甚至能够去除流浪者本身拥有的部分疾病。

应当说明的是,处于假死态的流浪者若在入夜12小时后没有迎来日出,流浪者将转化为一种独特的实体,这种实体的攻击欲望极大,能对流浪者造成的困扰也极高。理论上该实体能够再次被转化为人类,但是目前此类实验只成功过一例。

长夜事件

Level MSA-16昼夜循环并不规律,且通常为出现夜晚过长的事件。当出现长夜事件时,会出现大量已死亡流浪者转化为实体的情况,且通常会有大量实体伴随该事件的出现而出现。每当该事件出现,都会对层级内流浪者造成严重负面影响。因此,我们并不推荐流浪者在该层级停留过久。

实体

该层级拥有后室几乎所有常见实体,且数量不在少数。除该层级原有实体外,也有大量实体通过切入进入该层级。

基地,前哨与社区

该层级的大部分基地,前哨与社区都已废弃,此处只列出仍在活跃的基地,前哨与社区。

M.E.G.涅槃者基地

  • 拥有完备的防御措施
  • 乐于帮助流浪者
  • 积极研究重生效应中

U.E.C.不死者基地

  • 隐秘于暗处。
  • 热衷于进行外界无法进行的死亡实验。
  • 应时刻提防。

上晨社区

  • 居民自发组建
  • 互帮互助
  • 以生存为主

入口与出口

入口

  • 切入Level 11的一个雕像中会来到该层级。
  • 跳入Level C-11中的水池可以来到该层级。
  • 更多入口正在探索

出口

  • 钻入该层级的下水管道有高概率来到Level 6
  • 在黑夜往该层级某一方向持续行走,有概率切入Level C-581
  • 更多出口正在探索

他们说,这里是一座完美的天堂,我想是的。这个层级或许真有所谓的上苍或是天帝,他施展了无上法力,将我们与我们最大的恐惧——死亡,彻底隔绝开来。

无论是前厅还是后室,人类都因死亡的威胁束手束脚,不敢做自己想做的事情,遇到危难只能逃窜,以至于人类的发展何其缓慢,延续何其困难。

但这里恰恰相反,死亡不再是威胁,只是传说。当无上辉光泼洒于全身,所有的死寂,都将重生!

———[数据删除]

生存难度:生存難度:

等级等級 1

  • 安全
  • 不稳定
  • 实体无威胁

Level MSA-16是后室MSA层群的第17层。

描述

Level MSA-16表现为一个巨大的城市,该城市的建筑风格与前厅欧美的建筑风格类似。该层级的道路成网状交织,可沟通城市的各个角落。在道路两侧,分布着排列整齐的居民楼,符合欧美地区房屋设计理念。

层级内的建筑密度基本保持一致,其内设施大多可正常使用。且Level MSA-16不存在任何公园、荒野、河流等自然界或仿自然界地形。

层级中心有一个纯白色天使雕像作为地标。任何流浪者或实体在切入该层级后都会优先来到雕像的周围。

该层级拥有正常的昼夜循环,白昼黑夜均为12小时,但是气象并不稳定,截至目前,Level MSA-16之内已经发生了数十上百起飓风、暴雨、沙尘暴及暴雪等现象。同时,该层级地壳活动极其活跃,地震灾害也时有发生。

但即便如此,仍有大量组织和团体选择在此建立基地,因为其的特殊性质。

Level MSA-16内,存在着大量的物资和武器。流浪者可以在层级任意位置找到食物和武器。1这些食物与武器似乎是凭空出现的,也是该层级唯一物资来源。

重生效应

顾名思义,流浪者在该层级遭遇致命伤害时并不会立刻失去生命,而会将各项生理指标稳定于濒死状态,并陷入一种类似于“深度睡眠”的状态。

在该状态下,流浪者的身体将无法受到任何破坏与损伤。层级内的流浪者将该状态称为“假死态”。

而值得注意的是,处于假死态的流浪者均将在下一次日出时,在日光照耀下2完全恢复所有生理指标,这种回复甚至能够去除流浪者本身拥有的部分疾病。

实体

该层级拥有后室几乎所有常见实体,且数量不在少数。除该层级原有实体外,也有大量实体通过切入进入该层级。

基地,前哨与社区

该层级拥有数十个大小不一的基地,前哨与社区。此处仅列出影响力较大的基地,前哨与社区。

M.E.G.涅槃者基地

  • 拥有完备的防御措施
  • 乐于帮助流浪者
  • 积极研究重生效应中

U.E.C.不死者基地

  • 隐秘于暗处
  • 热衷于进行外界无法进行的死亡实验。
  • 应时刻提防。

上晨社区

  • 居民自发组建
  • 互帮互助
  • 拥有初具雏形的社会模式

入口与出口

入口

  • 切入Level 11的一个雕像中会来到该层级。
  • 跳入Level C-11中的水池可以来到该层级。
  • 更多入口正在探索

出口

  • 钻入该层级的下水管道有高概率来的Level 6
  • 在黑夜往该层级某一方向持续行走,有概率切入Level C-581
  • 更多出口正在探索

世界需要光明,世界需要无上辉光。天帝播撒辉光,是为了让人民不再为死而担惊受怕。而人类却滥用他给予的能力,逐渐不再对生命感到敬畏。

所以,天帝的愤怒也理所应当

———[数据删除]

2026后室MSA分部 本站不遵守CC-BY-SA 3.0协议