后室TV-M.E.G.报告
: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.下属编者 R·A


早上好,流浪者们!今天我们的报道将带来一则不幸的消息:此前,被报道失踪的流浪者主播团体切行者们的尸体已经在Level 8被发现。搜救人员表示,这三位形影不离的流浪者主播的遗体竟在Level 8的多个不同地点被发现。这也难怪,即使是榜上有名的速切团队都经常在Level 8翻车,更别提这几位了!
目前,三人的遗体已经被回收至Level 1的Alpha基地,准备进行火化。切行者们的账号已经被封存,并保留为纪念账号。为了提醒其他喜欢冒险的速切玩家1与流浪者,我们将他们最后一次冒险的语音记录2与发现的随行日记上传至其账号,以示警戒!

为了各位不太熟悉切行者们这个团体的人着想,我们决定在这里介绍一下他们三人。
约翰:本名约瑟夫·罗内斯特3,是此团体的老大,负责策划每次的探险活动。
吉米:本名吉布斯·克罗内,是此团体的摄录负责人,设备天才4
张伟:本名张伟,是此团体的后勤负责人,背负能力极强5,十分关心团队里的每一个人。

开端

【磁带开始播放】
(一阵猛烈的水声和岩石刮擦声)


???:嘿,我们到了!吉米仔?吉米?摄像机还开着吗?
吉米:(拍灰声)约翰老大,呃……摄像机好像已经泡水了,不过,录音机还在我身上!
约翰草!你应该知道现在那些人都喜欢那种,很刺激的画面吧?
吉米:(轻轻咳嗽声)对,老大,可是那个防水壳裂了,我也没有什么办法……至少这台做过防水的磁带录音机还能用,我喜欢这东西!
约翰行吧……希望老张带够了磁带。

(又是一阵猛烈的水声和岩石刮擦声)



张伟:约翰,吉米!真高兴看到你们还活着,我刚刚差点走错了洞,现在是什么情况?(翻找背包声)
约翰咳,吉米仔的摄像机坏了,你录音用的磁带带了多少?
张伟真够不小心的,也别怪吉米,从Level 7下潜很容易搞坏什么。我带了七八盘磁带,每个磁带能录大概十分钟。
约翰那就尽量只在重要的地方录吧,探索这里可不止一个半小时,相信我。嘿,吉米,过来拿头灯!

(一阵翻找声,扭开头灯的声音)



约翰开始录制了吗?OK,那,各位观众!我们是切行者们!今天我们要探索的是,Level 8,岩洞系统!来,我们即将经过M.E.G.留下的告示牌,经过第九大道,前往“空巢”据点,最后前往其他层级。
吉米:(轻咳)嘿,老大,这卷快录完了。
约翰:啥?你不会一直在录吧?
吉米:嗯对……
约翰:靠,之后记得剪掉这一段,我们走吧,往前。

(磁带摩擦声)
【磁带停止】

■■■■年■■月■■日
我不知道该说点什么,约翰保证他应该能给我们带到正确的地方,可他已经很久没来过Level 8了。
最近的粉丝涨幅不大,有可能他太着急了。
不管怎么说,我得做好把他们两个抬出去的准备。

相信我,老张,这一次我保证,安全且高效。我对整个Level 8了如指掌

M.E.G.专家报告
实际上,从这里开始,他们就犯了一个巨大的错误:将所有的后勤交给一个人。我们强烈建议各位流浪者,抱团行动时,请至少在自己身上留足足够生存一段时间的物资,即使你脱队了,也可以保证自己的生存,让你拥有逃脱或获救的机会。

旅程

【磁带开始播放】



约翰:嘿,朋友们!我们已经走了近……我也不知道多长时间!表早就坏了!应该还有几公里,我们就能到达罗什么斯大森林,然后,呃,到时候我给你们描述一下!
吉米呃,老大,咱们这边走的对吗?(靴子摩擦声)
约翰:怎么不对!这里应该朝右走……(悠长的回声)
吉米:那边是不是太空了……我记得,应该是一个比较窄的路……
张伟:是,那边听起来不太对,而且太黑了,我们应该换条路走,约翰。
约翰:(烦躁的踢石子声)肯定不能错!我保证!跟着我走就好了!
张伟:(翻找背包的声音)吉米仔,先喝点杏仁水,路还长呢。
吉米:谢了,张哥。老大,你要不来点?
约翰:不不,这里的水足够我们喝!你要知道,这里的水都是杏仁水!(跑动声)看啊,各位,一条小溪!我敢保证我们顺着这里走,就能找到一个聚居点!
吉米:不,我觉得我们应该找找路标……

(磁带摩擦声,落水声)



张伟抓住约翰!吉米!别管录音了——

【磁带停止】

■■■■年■■月■■日
约翰落水了,他差点被冲走,还好吉米及时拉住了他。他太冲动了,也许是因为这里的环境。无论如何,我已经开始担心接下来的行程了。
我需要跟吉米聊聊。


路标记录

今天我们只经过了差不多……三个路标,后面的路程几乎都没看到正经的路标了,有点担心。
张哥的补给还有多少?我想回去了。

M.E.G.的分析
很明显,他们的领队约翰已经在过度的焦虑与压抑中接近失去理智的形态,甚至有可能即将进入悲尸循环——还好他的两位队友及时地使用了杏仁水(我们找到了几个空瓶子,里面还有点杏仁水残存),避免了他真的变成那种可怕的东西。
假如此时他们能选择回头,那么或许仍然能避免悲剧,然而我们知道,并没有。

险情

【磁带开始播放】



约翰嘿,嘿!我们到哪里了,这是?
吉米:反正不像那个大丛林,这里好多蜘蛛。
张伟:别碰那些蜘蛛,吉米仔,它们咬人很痛。
吉米:张哥被咬过?

(短暂的寂静)



张伟:刚来Level 8的那一次,我被这些蜘蛛咬了一路,很烦,真的。
吉米:哇哦……
约翰:(激烈的走路声)嘿,嘿嘿!看看这些石墩子!(拍打石头的声音)也许我们应该在这里坐着歇一会,然后——
张伟:继续前进,约翰,听我的。
约翰老张!这里不会有什么危险的!(坐在石头上的声音)你看,你看!我就算这么扭动也——哇,哇哦哦!
张伟:嘿,还好吗?摔到头了吗?
约翰:不,并没有,我好得很!
张伟:吉米,继续走,我带着约翰。
约翰:不,我们需要去那里面!那个石缝后面,我有预感!我们会爆火的!
张伟:你需要休息,约——
(激烈的挣扎声)
约翰没有什么能将我拒之门外!!!
张伟:靠!他还真去!那里面是——
吉米:怎,怎么了,张哥,那里面是……
张伟:蛾子,超级多的蛾子。他这个样子要是进去了估计就没法活着出来了。(翻找背包)杀虫剂我拿着,你帮我看会包,马上回来。

(渐行渐远的跑步声)



吉米:张哥,张哥!

(录音机掉落的声音)
【录音终止】

■■日■■月■■■■年
张哥去追约翰老大了。
希望他们能快点回来。
在这里感觉真是度日如年,我都开始翻张哥的日记本了。
约翰老大的问题我也能理解,只是……
回去之后,应该带他去做个心理咨询。


如果还能回去的话

M.E.G.心理评估
如果他们能回来,我很踏马建议这位约翰先生来我们这看看医生,这踏马简直不是人能干出来的事太离谱了:闯进雌性飞蛾的领地?如果不是他的同伴,他马上就会变成虫巢!这种人就不该当一个探险队伍的领队!

——不知名心理评估专家

脱险?

【磁带开始播放】
(短暂的电流声)



吉米:(沉默)嘿,张哥,约翰老大能行吗?
张伟:只能相信他了,命够硬就行。

(短暂的沉默)


张伟:嘿,你开着录音机?
吉米:嗯。
张伟:我以为你已经不打算再录了。
吉米:至少得让别人知道我们这发生了什么。
张伟:(敲了敲身旁的石柱)行吧,听你的,吉米仔。
吉米:好,呃……
吉米:这里是切行者们,我是摄影师吉米。
吉米:呃,如果这段录音被我们之外的人发现并上传,我们估计应该是……都死了,应该吧。
张伟:嘿,别那么丧气,吉米仔!你可是个年轻人!
吉米:我知道,但……我不得不这么想。

(靴子摩擦地面的声音)



吉米:反正,如果真的出事了,我希望我们的事情能启发后来的人,不要这么冲动地前往这种危险层级探险。

(令人窒息的长时间沉默)



吉米:张哥,你有什么想说的吗?
张伟:我?呃……如果你们真的要做什么,记得多带点吃的喝的,哈哈!然后,带套干净衣服!就这样。
吉米:嗯,大概就这样,拿个防水袋给我,张哥。
张伟:把这些磁带装起来?(翻找声)
吉米:对。
张伟:好小子,脑子就是灵活!
张伟:唉,希望这些东西不会用上……希望。

(淅淅沥沥的水声)


吉米:嘿,张哥,你有没有听到什么……
张伟:不对,不对。
吉米:嗯?怎么回——

(拉扯声,汹涌的水声)


张伟走,快走!别管约翰了!

【录音终止】

■■■■年■■月■■日
涨水了。
约翰死了
他死定了
我至少要把吉米带出去。

终结

【磁带开始播放】
(电流声与长时间的沉默)



张伟:……吉米。

(短暂的沉默)


张伟:嘿,吉米。
吉米:约翰老大……
张伟:嗯,但是我们得往前走。
吉米:张哥,你打开的录音机?
张伟:嗯。
吉米:张哥……认识路吗?
张伟:我应该认识这附近的路,跟我走吧,我们应该能走到附近的一个流浪者据点。
吉米:嗯。
张伟:走吧,我们会走出去的。

【录音中止】
【录音继续】



吉米:……哥!
张伟:不,别管我了!唉,这该死的岩洞,我出不去了,这太窄了!
吉米:我得把你拽上来,拜托,拜托!
张伟:小子,你还有家里人不是?走吧!你多大力,我多重啊?

(翻找背包声)


吉米:可是……
张伟:带上包,里面还有不少补给,继续走吧!
吉米:我——

(磁带到达末端)
【录音中断】

张哥也死了。
我没法把他拽出来
他先一步爬进了死路里,然后……
我要继续往前走。




走不出去了,这里是死路,没有人能出去了
一切都结束了

部分脚注由M.E.G.内部人员编写


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