Level 89 - “惊惧公园”
: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 }

监督者B: Justin,我需要你集中注意力。这事很紧急。

监督者A: *略带恼火地从设备上抬起头* 什么事,Kat?

监督者B: 我非得给你看这些东西不可。给,拿着这些文件。看完后,如果你明白了它们之间的关联,就到我办公室来。我只能说,目前还不清楚这究竟只是一种现象还是一个层级。

Kat 把手里的文件放在 Justin 的桌上,随即疾步走出了办公室。

监督者A: Kat,你这是什么意思——Kat,等等!Kat!

……但她已经离开了房间。

监督者A: 天哪,她一直都这么烦人吗?!

Justin 的目光落在了文件上;既然无事可做,不妨看看这些看起来挺有意思的文件。这些文件似乎是副本,上面还有 Kat 亲自加的脚注。第一份文件是……Kat 的笔迹。

嘿,Justin。

我从 M.E.G. 数据库里汇总了这些文件。等你全部看完,就会明白它们之间的联系了。

-Katherine







日志 1 - 2018 年 11 月 16 日1


你知道的,对于写一篇日记或者日志,有那么多可以用来起头的词句。我见过有人用“亲爱的日记,”或者类似的句式,但我还是不知道该用什么开头比较好。所以,我就选了这个。我希望,永远不会有人会看到这篇日记。

亲爱的日记。虽然我并不记得了任何事情,但生活对我来说还是感觉遥远而又陌生。我身处某个前哨站里,那里的大人告诉我,他们发现我时我已不省人事,我可能在“Level 0”里游荡了好几天。他们还说我整整昏迷了 3 天。我——或者说,主要是那些大人们——正试图搞清楚我是谁,问着各种问题: “你叫什么名字?”或者, “你多大了?” “你知道发生了什么吗?”我一点隐私都没有了,真难相信这些鬼话。我是说,你们自称来自“探险者总署”,还说我现在安全了?我开始觉得这些人要把我送去怪胎秀,或者工厂,天啊!我真不愿往那方面想!!:( 我回答说我叫“Byron Candlelighter” ,今年11岁。我记得的就这么多了,大概吧。所以,你好,我是 Byron!


日志 2 - 2018 年 11 月 18 日

亲爱的日记(*的,我真得想个原创的开头),我什么也看不到。这该死的地方好像没有尽头。我不想死,尤其是在我什么都记不起来的时候。*2


更新 1: 我逃出来了。

我拔腿就跑。所有人都追着我,好像我是什么越狱的罪犯似的,但我觉得他们把我跟丢了。我很确定,像这样的停车场不该……这么大。它更像一个迷宫。到底是谁建造了这个地方?!那些门甚至不通往任何地方!等有不同的事情发生我再更新吧。


更新 2: 一扇门?

是的。没想到吧。我找到了一扇类似门的东西,但它的形状非常奇怪,我很好奇。不知怎的,它通向了一条狭窄的步道,两边是金属围栏,这感觉挺惬意的。这地方零星有几棵树,树叶泛黄掉落,还有些路灯,给我一种非常舒适的感觉。谢天谢地,我可能已经逃脱了。不过,我尽可能跑得远远的以防万一,谁也不知道会发生什么。我碰到了一些味道怪怪的瓶子,喝了以后我感觉晕乎乎的,头也疼,尽管我不再感到饥饿了。就好像我……对它们上瘾了。


更新 3: 我的家,至少目前是。

我找到了一个帐篷。一开始看起来有点吓人,但现在知道里面没人,我感到很平静。既然主人似乎不在附近,我或许可以先用这个帐篷,也许还能找到一座城市,或者天啊,什么都行。我甚至都不知道自己是怎么走到这一步的。我只希望能找到一条公路,回到属于我的地方,无论那在哪里……








<文件编号:3952>

无线电日志 3952 — Level 1, Alpha 基地

记录日期: 2018 年 11 月 20 日

来源: M.E.G. Alpha 基地报告的音频记录片段。


<记录开始>
<大约在下午 2:033 ,Alpha 基地的一台无线电在 103 赫兹收到清晰的传输信号。>

监督者 B: 如果你调到了 103 赫兹,你正在与监督者 B 通话。请说明你的身份。

研究员 Jean G: 你好,这里是研究员 Jean G,来自 Level 1,Alpha 基地。

<监督者 Kat 深吸了一口气。>

监督者 B: 我明白了,新聘人员……你是探索小队 1 的成员,对吧?我听说过你的出色表现。不过,亲爱的,你不需要透露你的位置;我已经能从设备上看到了。

研究员 Jean G: 抱歉,女士!

监督者 B: 没关系,继续。

研究员 Jean G: 那么,呃……几天前,我发现了一个看起来大概十几岁的孩子。他背着一个装满东西的小背包,看起来非常疲惫,可能是因为 Level 0 的缘故。我把他带回了基地,还修改了他的平板电脑。这孩子要么是短期失忆,要么是记忆丧失;他什么都不记得。然后……这孩子不知怎的从基地溜走了,尽管基地每个角落都有人。我猜他们当时没注意?我黑进了他的设备——

监督者 B: 不过,Jean,你知道黑进他人设备是违法的,对吧?

研究员 Jean G: 是、是的,我真的很抱歉!但是,我在他的日记日志里发现了一个疑似新层级的证据……?

监督者 B: 我明白了……你能通过 Backmail 把信息发给我吗?等我确认后,会派人去调查。

研究员 Jean G: 当然可以,女士!谢谢!

<日志结束>







音频日志 — Level 89 — 探员 Megan B.

2018 年 11 月 21 日

0.01

这里是探索小队 1,正在执行一个关于探索新发现层级的任务。到目前为止,我们看到了分布不均的公共厕所、路灯,还有树木,让我感觉像是身处秋天。我想大概就这些了……其他人叫我别瞎转悠,我现在就这么漫无目的地走着。真棒。

好吧,它可能是无限的,但这还没有真正得到证实。我是说——它就像一个迷宫;有狭窄的人行道似的道路,然后通往一片巨大的森林区域,森林四面又通向道路。有很多森林——你知道吗?算了。我不擅长解释事情。反正画地图的不是我!简而言之,这是个公园。有树叶掉落的树木,看起来像是秋天。

0.56

好吧……所以,我们小队决定分头行动,不知道为什么,他们让我在语音记录里解释一下。我们分成了三组:一组详细探索这个地方,检查厕所,收集样本,我想,大概有三个人吧?我不确定。这次任务有八个人,因为大部分 M.E.G. 研究小组都在忙其他事情。总之,另一组正在研究这里的植物,同时绘制地图。而第三组……就我一个人。他们叫我别打扰他们工作,把发现的一切都记录下来。我的意思是,他们做的是无聊的活儿,对吧?虽然我真的觉得自己在这里是多余的。我们的补给品不多了,他们建议我在确认安全之前不要饮用杏仁水。太好了!不过,他们也没必要这么刻薄吧!

09.19

我用了一个厕所,结果他们好像没等我。他们明明答应会等我的!我可能只是落后了一点;也许我能赶上。低声嘀咕 我甚至不知道他们往哪个方向走了。真棒。

19.52

好吧,显然出了什么问题。我的小队已经大约 10 分钟没回应了——等等,算了,我可能反应过度了。我试着联系他们,但对面一片寂静。我没那么烦人吧?老实说,这里每个人都觉得我烦,尽管我很努力。我倒不怎么意外。天色开始有点暗了,我得用手电筒了。

26.21

可以听到除了 Megan 的声音外,还有树叶沙沙作响的声音。

哦——呃……有人在那里吗?你好?

48.05

*低语* 我可能被什么东西跟踪了,我有点害怕,我真的得找到我的小组——*的!

*身体摔在地上的声音。*

该死的石子!我开始讨厌这里了!为什么那组人不回我的呼叫,啊?他们为什么就把我一个人丢在这儿,啊?!一群白痴!

52.27

等等,我看到人了,我可能有救了!那是——

*听到 Megan 发出高声尖叫。*

我的天啊!她死了!Amanda 死了!

*Megan 按下了无线电。*

有人听得到我吗?!喂?喂?!

……*的,回话啊!

我的老天爷,耶稣基督啊,我……难道我是现在唯一活着的人吗?这里到底他*有什么东西?!哦上帝,我要死了,对吧?我-我-我甚至还没来得及说再见!

2.20.32

所有人都他*死了。字面意义上的所有人。我不知道他们为什么把我留在这儿,但庆幸他们这么做了。我觉得我活不了多久了。我当初为什么自愿报名参加这个?!我——


日志结束。中断的原因是 Megan 的设备电量耗尽。Megan 设法找到了他们进入该层级的入口位置,并安全离开,随后发出了通知。然而,除了 Amanda 之外的其他 M.E.G. 探员状况未能证实。







日志 3 - 2018 年 11 月 21 日

我出不去了。我试过。我已经听到尖叫声有一段时间了,我好像无法集中注意力了,视线也变得模糊。他们还在试图找我。他们就这么执着于抓到我吗?那些瓶子肯定在对我做什么。这个地方哪儿也到不了,我只是……迷路了。这就是生活吗?我甚至还没弄清楚我是谁就要被杀了?我甚至算是个人吗?我有记忆吗?我曾经有过记忆吗?我什么都答不上来。我已经无法正常思考了。







采访记录

采访者: Melody Parker
受访者: Megan Bythesea


采访者: 你好,Megan.

受访者: 你、你好,女士……

采访者: Melody Parker。叫我 Melody 就行。我们可以开始提问了吗?

受访者: 好的,请开始。


问题 1: Amanda 的尸体是什么状况?


采访者: 如果这对你来说是个敏感话题,我真的很抱歉。

受访者: 不,真的没关系。实际上,我记不太清她的状况了。我想可能是这件事造成的压力。我记得她……被斩首了,大概是?她身上有股很难闻的气味,让我想起……我在叔叔实验室待过的那段时间。闻起来一模一样。实际上,整个层级都有那种气味,但她附近更强烈。我想她腹部也有一道很深的切口,可能是被什么锋利的东西划的。那里没有什么能造成那种伤害的东西,但我猜……是它们干的。


问题 2: 它们是谁?


受访者: 我猜您是 M.E.G. 的高级成员,对吧?如果我没猜错,您应该能接触到大部分文件。

采访者: 只有在我和 Kat 关系好的时候才行!

两人都尴尬地笑了笑。

采访者: 不过,没错,你说得对。继续。

受访者: 那么,您可能已经看过那个孩子的日记条目了,那就是发现这个层级的全部原因。

采访者: 我看过了。你想说什么?

受访者: 我认为这都是那个孩子干的。我真的无法证明,但我真的认为他是幕后黑手。

采访者: 他很可能已经死了,不过那也是一种可能性。


问题 3: 你遇到过任何实体吗?


受访者: 呃,我的小队显然遇到了。但我在那里没有遇到任何东西。不过我有种被监视的感觉。


问题 44 补给品安全吗?厕所呢?


受访者: 关于杏仁水,我猜是安全的?我是说,它闻起来确实像 Amanda 尸体的气味,所以我真的没有喝。他们警告过我,在确认安全之前不要饮用。至于厕所,没什么值得注意的,只是很脏。


问题 5: 你的语音记录中断后发生了什么?


受访者: 基本上,我在那里待了几个小时,尽力留意周围的一切,然后我看到了……某个东西。

采访者: 什么东西?

受访者: 是那个孩子,我想。看起来很像那个孩子。我被追了几分钟,直到它从我视线中消失。我走了几个小时,一边留意着周围环境。就在那时,我找到了出口。它通往我们小组进来的地方。

采访者: 感谢你的参与, Megan.







From: Abbie_G25147@backmail.com
To: OverseerB@backmail.com
Re: Level 89.

您好,监督者 B。

我们已经完成了 Amanda 的尸检,结果相当有趣。我们似乎在该层级发现了一种独特的寄生虫。这种寄生虫似乎会附着在个体的脑部,使人感到晕眩和困惑。另外,如果那个孩子还活着,他可能也受到了这种寄生虫的影响。

以致,Abbie。

From: OverseerB@backmail.com
To: Abbie_G25147@backmail.com
Re: Level 89.

您好,Abbie。

感谢您的告知。等我有时间会派一些人过去。

以致,监督者 B。







M.E.G. 通知

致各研究小队。

我们要求所有小队探索 Level 89,寻找任何关于一个黑发、蓝衬衫、白T恤孩子的线索。发现后,请将其带回 Level 11 的枫木医院。请注意,该儿童可能具有危险性。

IMG_3130.PNG

M.E.G. - 监督者委员会







日志 4 - 2018 年 11 月 29 日


我不拐弯抹角了。看来消息走漏了。我看到成群的男人,带着枪和其他武器。他们是冲我来的,对吧?

更新 1: 是真的。

我试图面对他们。我不记得发生了什么,因为一切都变黑了,但我在帐篷里醒来,手上沾满了血。我吓坏了,我甚至不知道那是我的血,还是……

小更新: 我意识到他们用真枪打中了我。看来逃跑总体上不是个好主意。我的耳朵血流如注,而且我想我的一根手指没了。我甚至不知道为什么我刚刚才意识到这些。这里又黑又冷。


我知道我写的时候有人在看,而这很可能恰恰是我能发现这个地方的原因。对我来说一切都结束了;无论我做什么都无关紧要了。他们越来越近了。我不想死。


补充说明

关于上面显示的日记记录,

该层级似乎在日志出现两天后消失了,剩余的小队也失去了联系。5 这意味着我们无法为该层级制作完整的文档,而该层级已被证明相当致命。我们仍在努力重新定位它,但目前看来似乎是徒劳。Byron 在他们的帐篷中被成功找到,并被带到枫木医院,在那里对他们进行了采访。

采访记录

采访者: Matthew Gold
受访者: Byron Candlelighter


采访者: 你好。

受访者: ……

采访者: 别害羞嘛。

受访者: 你们绑架了我。你们他*的绑架了我——


问题 1: 为什么?


受访者: 你他*“为什么”是什么意思?

采访者: 我是问为什么你试图伤害我们的研究小队,甚至杀害了一整队人!

受访者: 我-我不记得了,行了吧?!

采访者: 回答。

<尽管不属于采访的一部分,Matthew 还是掏出了枪对着 Byron,可能是一种恐吓手段。6>

受访者: *结结巴巴地* 你们到底有什么毛病?!先是绑架我,然后拿枪指着我?!

采访者: 那是假的。

受访者: 我-我不管!放我走!

采访者: 我们不能放你走。你脑子里有寄生虫。现在,回答。

受访者: 骗子!我不相信——

采访者: 回答!

受访者: *几乎听不见* 因为你们想绑架我。你们绑架了我,你们还对我发火。我只是保护自己。请放我走。


问题 2: 那你的日记日志呢?


受访者: 怎-怎么了……?

采访者: 是伪造的吗?

受访者: 为什么要是伪造的?!

采访者: 我不知道,也许是你引诱我们的小队去杀害他们。

受访者: 我- 骗子!放我走!我想回家!


问题 3: 你的失忆是假的吗?


受访者: 放我走!

采访者: 除非你回答我的问题。

受访者: 我不记得了!行了吧?!


问题 4: 为什么在 Alpha 基地的时候你没杀我们?


受访者: 因为我不打算杀你们!是你们想杀我!你们是——

采访者: 感谢你的参与,我想。我走了。

后来我们安排并实施了针对 Byron 的脑部手术,结果良好。Byron 逐渐恢复了记忆,并在 M.E.G. 的证人保护计划下更改了身份。7







监督者 B: 你们都来了。

监督者 C: 能告诉我们这是怎么回事吗?我明白了,这是某种现象/层级的混合体,尽管它主要还是个层级,但这和任何事情有什么关系?

监督者 B: 那种物质。你们两个都从头到尾看完了,对吧?

监督者 C: 是的,看完了。

监督者 B: Amanda 的尸体从 Level 89 回收后,进行了尸检。

监督者 A: 我们知道后面的事。

监督者 B: 但是,为什么 Amanda 体内有那种物质仍然不清楚。

监督者 A: 然后呢?

监督者 B: 你“然后呢”是什么意思?Byron 喝了那些东西导致他被污染了,因此他焦虑,行为怪异。这也是研究小队到达 Level 89 时他发起攻击的原因。这就是你想听的吗?

监督者 C: 我们已经知道了。你打算用这些信息做什么?

监督者 B: 目前,仅供研究。在我们完全确定那种物质的特性之前,不应采取任何行动。还有一件事,这也是我叫你们俩来的原因……

两位监督者: 什么?

监督者 C: 那件事不是几年前发生的吗?

监督者 B: 是的,而且……*叹气* 它又出现了。

监督者 A:什么意思?

监督者 B: 又发生了。一小时前,我收到了研究员 Lina Jackson 的 Back-mail。她似乎发现了完全相同的层级……

监督者 C: 哦……

评分: +17+x


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