REDE-32 - “切出入灾虫”
: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 }
评分: +42+x


/ 警告 /

您正在访问REDE区域性极端灾难实体实体文档。
请勿惊慌,并接受它们存在的事实。


所以,事情是这样……我们当时在368层级簇附近进行一次观景旅行,我们的一个同伴意外切入了这里。我们的向导很确定他发现了一个新的出入口或者新的层级,因为中央数据库里没有记载过。于是我们把它报告给测绘部就在原地用诺克立普贴切了回去。我们回去几个月后,我去Beta基地领一次行动的报酬时才偶然在数据库发现,我那时的层级报告甚至还没有落地……?





实体编号:REDE-32

栖息地:N/A

IETS:2E
IETS
:2
智能:E

灾害程度:

分类:Legion / 军团

灾害名称:出入口封锁

/ 描述 /

REDE-32是一种繁殖速度极快且与层级出入口机制有密切联系的虫型生物。在其栖息的层级内,其会阻止一切试图通过出入口的行动,并借由流浪者通行的尝试来繁衍。它对层级的封锁可以长达十余年。

/ 行为 /

假设以下的条件:

Level XLevel Y经由一扇门互通


则一旦Level X受到REDE-32侵袭,其中的流浪者便将无法通过这扇门到达Level Y。同理,Level X内通向其它层级的出入口也将无法运行。而与此同时,Level Y内的这扇门也会失去作用。但Level Y内通向其它层级的出入口仍然可用,反之亦然。

REDE-32封锁出入口的原理暂且不明,但其表现是具象化且多样化的。如上文中的“一扇门”假设,在Level X内打开这扇门会通向层级内的任意其它空间——除去它本应通向的Level Y。与此同时,流浪者打开这扇门所用的身体部位上将会被数个REDE-32个体或卵附着,反之亦然。

Exit-Blockaded-Pipe

保险库的结构内部已被填满的REDE-32替换。

如果这扇门被上了锁,将钥匙插入锁孔后将无法正常旋转以使用,拔出钥匙后其上会被大量卵附着。

“无缝衔接”式出入口的附近将会成为REDE-32的栖息地,与此同时出入口本身也会失效,会失常通向此层级内的空间结构支持其通向的空间而非目标层级。此外,诺克立普贴等能够进行非常规的切出入的物品/实体/现象[…]也会失效(其如何做到这点不得而知)

综上,可以总结其影响层级出入口的模式为:直接使出入口(无论什么模式的)直接失效,并且伴随着其个体以及卵的出现作为标志。也是因此,可以通过是否存在该实体的痕迹来判断层级是被REDE-32侵袭还是单纯的暂时切出入失效。

与此同时,被其侵扰的层级内每一次试图使用出口的尝试都会导致出口的目标层级内也出现类似的痕迹。继续使用上文的“一扇门”假设,如果Level X内有流浪者试图使用这扇门,则Level Y的这扇门附近也会出现少量的实体个体以及卵。

一旦REDE-32卵接触到未有其侵染的出入口,则会迅速成长为成年个体并即刻向其移动。此时如果不立即进行消杀,则此实体会在24小时内传播到层级内的所有出入口。它便是借此在后室内极速地繁衍。而一旦其栖息在层级内,出入口的封锁效应将会持续十余年才会自主消失。因此,在切行于靠近被侵染层级的路径时需要格外小心,不要将其卵携带到下一个切行点——不过,目前已经发现,这种实体的卵可以被ZAL-3溶液消灭:

杏仁水腰果水:水以3:1:5比例混合,搅拌均匀后加热约30秒。

或酒精也可以使其卵失去活性。当然,一旦其已经成长为个体,就会以难以控制的速度迅速增殖自身。

/ 生物学特征 /


Exit-Blockaded-Egg

REDE-32卵的结构示意图。

REDE-32类似于一种环节生物,体长最多可达15cm,似乎不需要额外的能量来进行生命活动,但仍然可以高速产卵。其生命活动规律与层级间切出入的机制关联密切。

其卵极为细小,且呈透明颜色,非常不易于察觉。不过当其接触到层级的出入口时,则会在几秒钟的时间内立刻孵化为颜色暗红的成年体,并快速向锁定的出入口处移动。在某些情况下,可能利用这一特性来寻找未被记录的层级出入口(理论上)

根据观察,REDE-32个体的确切实存在于层级出入口附近,而非在有人试图通行时才突然出现。其可栖息在岩缝、锁孔中。但其影响层级通行的能力源自何处不得而知。

……



等等,有人给我打电话来。

年前?你是什么意思?你难道是说这十年都没有人踏入过那里吗……?不是吧,那我们在那儿看到的那些……那些骷髅还有那儿有人住过的建筑都算什么?那上面还有和B.F.P.F.的荣誉合作证书,总不能都说是十年前的事情吧?

说“我没告诉你们这些事”是什么意思?


/ 影响 /


REDE-32虽然单个个体十分脆弱,且也有预防和消杀手段,但一旦百密中的一疏出现,海量的环节生物的增殖便会迅速感染一整个层级。其生殖速度、见缝插针的能力和其特有的影响层级通行的特性使其很轻易就能在后室之中大量地繁衍。

一个层级被出入口封锁的后果很可能是巨大的;这意味着这个层级在此后的一段时间内将与外界彻底隔绝。在这段时间内,层级内的资源储备一旦不足就会导致粮食危机爆发。对于室内建筑型,没有自己生态循环系统的层级的住民来说,这样的影响便很可能导致饥荒以及组织程度的退化。

而对于小型的,只有基地和前哨而没有成型社区的层级来说,驻扎在这类层级内的人员是经常与外界往来的,并以把这些层级内的资源运向外界作为主要工作。如果此实体侵染这类层级,便会导致这条资源链的消失。(尽管在后室没有失业一说)仍然会影响一部分与这类交通关系密切的流浪者。

大型层级内通常有着自己独特的一套生态循环系统,不需要外界的资源供给,但这类层级中有交通枢纽作用的那一类如果被侵袭,则会对其他大量流浪者的生活也造成影响,例如Level 11Level 1以及大道经过的层级等。因此,这类层级中的REDE-32报告,追踪及消杀系统也是最完善的。不过,这之中一旦出现疏忽,则会对周围的流浪者,以至于后室的人类生态造成毁灭性的打击。

而对于那些开发程度较低的远路径层级,对卫生的不重视常常会导致一两起REDE-32侵袭的悲剧。

而此上所提到的一切也只是在我们所发现的范围内的。这类实体如果侵袭“一次只能进入一人” (如Level 18或“只进不出” (如level-742的层级会发生什么,今天仍是不得而知的。然而,从其本质的角度出发也可以得到数个令人毛骨悚然的问题:如果它侵袭Level 0会发生什么?如果蓝色通道能算是一个层级的话,它也会一视同仁吗?然而,由于这两个问题的主体对我们属于黑箱,因此或许永远也不会得到这个答案了。

尽管其直接毁灭能力较低,但一旦发生无控制的传播则会导致不可预测的后果——同时也是为了引起流浪者们对这类实体防护的重视,此实体已被从主列表实体重新分类为一种REDE实体

同时,其也是少数会对发生袭击事件的层级外造成连带伤害的REDE实体之一。


/ 行为准则 /


- 应当 -

  • 在必须接触REDE-32时,做好防护,事后消杀;
  • 向你可以信赖的组织或者社区报告你发现的REDE-32实例;
  • 注意数据库的相关内容更新;
  • 在庇护所外行动时偶遇此实体个体时,根据层级路径图推断其来源并避开那个层级;
  • 尽量避免接触其个体或者卵。

- 不应 -

  • 试图进入被封锁的层级;
  • 当你所在的层级被封锁时,不要盲目试图切出。保存体力,保存资源。


探险者总署提醒:如果您所生活的层级正在经历一次REDE-32袭击事件,请保持冷静,并且告诉周围的人保持冷静。只有有规划的工作才能帮助你们挺过封锁的艰难时间。如果,很不幸地,这一切都发生了,请将情况报告给我们,您至少可以帮助这样的悲剧发生得越来越少。

IMG_3130.PNG

M.E.G.——为了人类更好的明天








那么,我们来听听我的角度的故事吧。

大概是在十几年多之前……那时候我还五十多岁,中央数据库还没有从探险者总署独立,我是M.E.G.的一名档案员。我入职的时候是2012年,档案部还没有它独立之前的那年那么大的体量(它能独立出去也证明了这点,大概),我们很多时候会兼职做一些文书工作。例如我,那时是一位“灾害报告员”,负责给层级里有联系方式的社区领导人发送灾害预警。

看着那些形式各异但都令人望而生畏的后室灾厄从我的键盘填入一封封电子邮件让我有些触动,不过在当时厌世的我看来终究只是工作之后的加班而已。

“REDE-32”也只给我留下了模糊的印象。我警告一个位于四百多层的社区,他们的层级有被REDE-32袭击的风险,后来就没有注意过了。

那时,我们对自然灾害还鲜有研究。

后来,我收到了一封奇怪的匿名电子邮件,来自那个社区的,他们要把他们应对灾害的历程发送给总署。在附件里是一张四个年轻人站在一家商场的扶手边上勾肩搭背的照片:那可能就是他们的层级与组织了。

我漫不经心地扫着那封电子邮件的内容。他们的层级的出入口已被封锁,这就是灾害的前兆了。而他们正在严阵以待“第二阶段”的毁灭性灾害……然后就没了。

从那之后,我对那个层级的关注便多了起来。但事实告诉我这样的事后关注是没有用的。接下来的两个月内,我都没有再接收到那个社区来的任何一封消息。我少有的去问了我的同事们,可他们那边也了无音讯。那时我倍感迷惑,就像……它被这些东西毁灭了?难道是这样吗?

好吧,这样的事是不可能发生的。第三个月,我又收到了一则匿名的电子邮件。附图里,那四个熟悉的年轻人穿着彩色的衣服,身上挂着鲜艳的缎带,拿着扫帚站在一封沾有不知什么的深红色痕迹的铁门前对镜头竖起中指。

标题也十分简单,只有两个大字:误报!!!……他们的层级没有等来灾难,因此特意发了这份消息来嘲讽我。

他们说,虽然出入口还没解锁,但他们相信所谓的“灾难”只是误报。商场里的食物还够他们带着四五个其他人吃一段时间,撑到能出去收集物资的那一天。

从那天开始,他们就开上了一条疯狂的下坡路,而我也是真正地再也没有等到他们的消息。

2013年,我升职到校准员,辞去了我曾经不得不做的那些写电子邮件的工作(他们现在好像已经有专门的脚本来做这个了)。2017年,我跟着E. Isle离开M.E.G.。2019年,我升职为900-999层级的主管理员。今年,2025,我已经准备退休了。

即使我问了400层级那里的管事,也没有发现来自那个层级的信息。或许一切太平了。

是啊,我本来已经临近退休,这些事也要逐渐记不起来了。直到新来的400层级管事的那个小伙子告诉我,前一任管理员说我很执着于那个层级的信息,于是他把一份新的“层级发现报告”给我看了看。

一个不好的念头在我脑中浮现。

我今天以个人名义给那个层级探险的年轻人打了一个小时的电话,让他给我一字一句地把他一个月前发现的那个层级的所有能想起来的细节说了出来。我越来越确认了——他所发现的那个“新层级”,根本就不是新层级,而是十年前的那个层级终于结束了封锁。

那里如今已经荒废,玻璃碎片和废水堆了满地;过去的基地在暴动里已经满目狼藉。路上也没有那几位年轻人了,只有白骨;看来商场的食物终于吃完了,而他们没等到层级解除封锁的那天。十年太长了,又换了一代探险家,他们才稍稍重见天日。

……十年来我心里的一个窟窿终于被用一把土填满了。我现在反而不像当年那样玩世不恭了,我开始对那行人感到悲伤,以及——内疚?如果我当初给他们回一封信指导他们准备求生,是不是就会好一些呢?还是说……十年的时间真的长到无论怎么都会弹尽粮绝?

我倒还不确认。或许退休后的某天我会重新戴上迷彩帽去那个层级亲眼看一看,不知道能否安息他们躁动的灵魂。看到我的故事的人,无论你是谁,我希望你把他们,以及我,当作前车之鉴。

我想说的是,永远不要用毁灭的能力来衡量一场灾厄,也不要把毁灭当成电子邮件另一边普通的数据。非典型的事件,很可能带来的损失是更多,更难以预料的。

无论是怎样的灾厄,祝你远离。








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