Level C 595 3

注意:

本页面为段落页

段落页是本站文章使用的内部页面,通常为制作迭代创建。段落页不应被直接展示,而是被其父页面引用,即上方链接。

: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 }

科考报告2023/3/9

科考人员:穆托、哈穆德·索蓝、顾小洛、未记录队员三名1
科考设备(仅含已记录)耐低温录音报告设备一台、对讲机六台、便携式暴风雪抵御壁垒一台、耐低温科考服六套、耐低温指南针、时钟一份、便携式暴风雪预警设备一台。
报告时间:2023年3月9日


*记录开始*

穆托:(*喘气*)呼……可算是翻过“希尔德”了,设备一切正常,还好有这耐低温设备,阿蓝吹这玩意能在-150℃都能工作,可太夸张了……

哈穆德·索蓝:(*声音由小及大*)因为这玩意是,是Object……我忘了多少做的……呼呼……让我坐会……

穆托:你可悠着点,小心滑下去,小洛和另外三个人呢?

哈穆德·索蓝:(*喘气*)呼哈……还,还在下面爬着呢……呼呼……

(*设备闲置,可以隐隐约约听见两人聊天*)

穆托:都齐了哈!设备完好,科考服完好!OK!该出发了,希望能找到出口……

(*众人闲聊、踏步声*)

穆托:说真的,我不觉得那个村子那么友好,来之前还没有这么觉得。虽然他们嘴上说着欢迎,但是分配我和小洛的房间和食物时脸色真的不那么好看。

顾小洛:是啊,明明是志愿过来帮忙的,他们却恨不得我俩没来,分的房子也就那么大一点,档案不是说这里人会毫无顾虑地收留外来者吗?

男队员A:还不是吃的穿的还有房子不够了,我比你俩早来三年,这儿的鹿是一年比一年少,钓上来的鱼也只有那么大一点,真不知道这村咋活那么久的。而且说的好听,所谓“科考”单纯就是找外面有没有出口,毕竟这村子建起来的这么多年都没有在那一亩三分地的林子里边找到出口。

哈穆德·索蓝:他们所谓的“无条件接收流浪者”不过是笑话,与其找出口,他们巴不得找到确切入口然后把入口封上,好不再让新的可怜虫们进来。我一哥们在这几年了几乎连口酒都喝不上,唯一几瓶酒还是偷藏在他家房顶的。要我说他们肯定巴不得有人离开,这不,咱们就是好例子,瞧他们那假惺惺地挽留咱们的样子……我都怀疑之前的都是被赶出去然后美其名曰“科考队”的……

男队员B:其实,“计划生育”也是说的好听,实际就是把那些太老的还不想死的直接安排到村边上工作,好等暴风雪来的时候让他们来不及进入避难所。还有那些在这里结婚生子的,无论如何只给一家三口人的食物,多生的就等着苦头去吧,南边别克家就是……

穆托:警惕!有冰狼!保持距离!

男队员B:这是冰狼?这么帅的名字结果就一群瘦麻杆?他们在干嘛来来回回的?后面又跟了个啥?

穆托:谁知道……估计他们连袭击我们的力气都没有了,可以解除警惕了……后面那个估计就是冻尸了,(*叹气*)唉……不知道是被赶出村子的还是之前的科考队员。

(*众人沉默前行良久*)

女队员:大伙……你们有没有觉得哪里不对劲?(*举起时钟*)

穆托:嘶……我们只出发了半个小时吗?

顾小洛:怎么可能啊?我们至少走了有俩小时了吧……

穆托:时间异常吗……过会得向前哨站报告了。

(*众人静默前行良久*)

哈穆德·索蓝:嘿!“希尔顿”山呢?900米的海拔不可能这么快就消失在视野里啊,难得大晴天,视野也这么差吗?

男队员B:不对……刚刚的冰狼也不见了,视野再小多少也应该能看见它们才对……它们应该跑不了那么快……

穆托:空间也有异常吗……看来得向前哨站报告了……

穆托:(*拿出设备*)报告前哨站,第五科考队已发现明显时空异常,性质正在确定,随后报告,目前队员情况……

顾小洛:(*惊叫*)暴风雪!快!搭建临时保护壁垒!

(*众人慌乱布置堡垒*)

穆托:快!马上来了!躲避!

男队员A:通讯设备掉地上了!我去迅速捡回来!

顾小洛:你疯了!?别管了!

男队员A:我保证很快……(*男队员A声音消失,随即响起硬质物体落地的声音*)

女队员:啊……啊……

穆托:所有人,不允许离开堡垒!妈的……

(*伴随暴风雪呼啸声和微弱哭声,众人沉默良久*)

哈穆德·索蓝:好像……没有停下的意思,头儿,还有吃的吗?

穆托:很多在他身上一起被暴风雪卷走了……剩下的不多。给,只能给你这么多了,吃完等暴风雪结束就出发吧。


(*记录中断*)


哈穆德·索蓝:我们走了……多久了?这里还是只有平得不能再平的冰原吗?真的连回去的路也不知道在哪了吗?

顾小洛:(*略带哭腔*)说这些还有什么意义,你又不是不知道现在我们是什么处境……你给我把食物省着点。

穆托:唉……这里除了冰就是雪,所有的记号也被暴风雪抹除了,只能跟着指南针走个大概,我们就是一群蚂蚁罢了,随时都有可能被这狗屁冰原一脚踩死……这一具冻尸,那一架枯骨……马上就到我们了。多么后悔离开那个云杉林,我从没有觉得那张抹布似的床有这么完美,自从我到这里从没觉得那那一切之开始的黄色地毯是多么温暖……

男队员A:又是冰狼……幸好他们不会攻击……

哈穆德·索蓝:小心!

男队员A:(*抽出折叠刀*)反正也活不了了,既然大家都饿着,你说,我可不可以……

女队员:别去……

(*狼嚎、衣服撕裂声和血液飞溅声*)

穆托:跑!都给我跑!他活不了了!

顾小洛:(*尖叫*)你还在这愣着干什么,跑啊!!

女队员(*呜咽*)不……我不行了,从暴风雪夺走他那时起一切都……(*瘫倒*)……就让我拖住它吧……


(*记录中断*)


穆托:记住了吗,这条腿不能弯曲,否则皮肤和伤口可能会暴露在外。我们会配合你的步速,有危险时,我会背着你跑。

顾小洛:好……

哈穆德·索蓝:……那里好像有个山洞?是我看错了?这地方竟然有地形起伏?

穆托:你没看错……真是上帝保佑啊……该歇息一下了,记住不要脱掉外衣,现在温度只有……-210℃?!我们到底是怎么活下来的,这温度……算了,怪事也不是一件两件了。顺便让我修修这破记录设备,总是动不动中断的。该死,这暴风雪预警也坏掉了。

(*众人安顿下来*)

穆托:真是神了奇了,竟然能生起火来。

哈穆德·索蓝:那个,头啊……我们真的能回去?

穆托:时空异常罢了,方向是对的,总归能回去的。

哈穆德·索蓝:别自我安慰了,你以为我不知道?你那破指南针自打暴风雪过后早就坏了!还有食物也剩最后一小包了对吧?你自己胳膊也骨折了对吧?别藏着了!真是倒了血霉了,我为什么要跟你这家伙出来还把命搭上?就算被那群老头冷眼看着,至少村长他老人家不是那种人,至少我能和哥们喝酒,至少能去湖里钓鱼。说好的找不到出口一周就能回去呢?也对,现在好了,外面的天色一路白得跟灯泡怼脸一样就没变过,谁知道村子里才过了半天还是半小时!

穆托:不,不,你先冷静!

顾小洛:水……

穆托:阿蓝,你那还有吗?

哈穆德·索蓝:给,给她喝吧,也就最后一点了,这瓶湖水喝光了,所谓的永恒之湖的祝福也到头了。

穆托:你要去哪?回来!

哈穆德·索蓝:出去走走,你们歇着,有情况对讲机说。


(*记录中断*)


哈穆德·索蓝:(*急促*)能听见吗?

穆托:有情况?

哈穆德·索蓝:暴风雪……大概还有5分钟到你们那,洞穴防不住的吧……

穆托:了解,等你回来就展开临时壁垒。

哈穆德·索蓝:不,走不了了,来不及了,你和小洛给我活着,记得回去把我妈给我的项链放到我坟头,对,再叫我哥们给我放瓶酒……如果我还有坟的话,另外,你俩……(*暴风雪呼啸声、对讲机中断*)

哈穆德·索蓝:臭小子……妈的……


(*记录中断*)


顾小洛:(*虚弱*)……阿穆……我……

穆托:你醒了?你刚才好像有点失温,现在好点了吗?

顾小洛:不……你能不能……吹一曲《白雪莲》……就是你一直教我的那首。

穆托:可是……我带的那根笛子早就断掉了……我给你哼一曲吧……

顾小洛:谢谢……

(*轻微的哼唱声*)

……

……

穆托:又睡着了……我也该是时候休息休息了。

(*除去中途两次记录中断,设备闲置共6小时*)

穆托,我要先走一步,你要活下去,记好了

穆托:该死,我睡了多久,该死!小洛!你去哪了?!

(*急促跑动声*)

穆托:该死!早知道……啊……小洛!你还好吗!小洛……啊……这具冻尸是……

(*哭泣*)

穆托:妈的!早知道,早知道就忍着那群人的冷眼,至少你能活下去……我他妈到底为什么要这样害死这么多人!我他妈……算了,至少……我应该让你永恒地安息……

(*展开临时壁垒*)

穆托:不要成为那永无归途的冻骨,永不向那刺骨冰寒低头,汝之意志弗殆,肉体弗亡……多么荒唐,自打这一切开始结局早已注定,自打我们来到这里只能有这样的命运。到头来如何挣扎也甚无意义,所有人皆终有一死,又何必苦苦折磨自己呢?

(*缓步走动声*)

穆托:……你说对吧,来吧,暴风雪,请肆意摧残我的肉体,但请不要打扰已死之人的安宁……

(*暴风雪呼啸声*)

*记录结束*


Level C-595第五科考队全员于2023/3/9牺牲,谨此对逝者致以崇高的敬意,M.E.G将永远铭记你们的精神与贡献,并使其永垂不朽。











……














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