Level LW-670 “回魂”
: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 }
评分: +4+x

后室独家新闻

8月24日


近日,后室大量层级出现诡异且罕见的“天降钱币”现象。其中,特别是Level 11能明显观察到该现象的发生,且有大量流浪者目击了该事件的发生。这些从天而降的钱币,样式都来自我们的家乡前厅,而不存在任意一种在后室流通的样式。这些钱币的出现毫无缘由,并且该现象依然在持续。

同时,一名速切玩家协会成员声称通过该现象出现的钱币可以切入,并兴奋地表明自己发现了以前从未被发现的新层级,目前该速切玩家正在被M.E.G.访谈。请各位流浪者不必惊慌,也不应在情况未确认的情况下擅自切入那些钱币。M.E.G.正在积极调查该现象,相信他们很快就能给我们一个完美的答复,以上便是今日的后室独家新闻,感谢您的收看。





对于速切玩家■■的访谈记录

采访人员: [数据损坏]
采访时间: 8.24


(记录开始)
采访人员:你好,你是说你通过切入那些从天而降的钱币,到达了一个从未被发现的层级?你能详细说说那个层级的环境吗?

受访人:千真万确!就是个新层级!至于环境嘛……这个层级从整体上看类似于中国古代传统建筑群,应该处于黑夜状态,建筑群也都残破不堪,看起来格外阴森。但更诡异的是,这些建筑上挂的灯笼竟然还亮着,还能隐约听到一些诡异的声音……其他的让我再想想……

采访人员:嗯……我问一下,那个层级有没有什么非常值得注意的东西?

受访人:哦对,有!那个层级的边缘有一特别大的木门,门上面贴满了符咒之类的物品。我没打开……还有就是,我好像在这个层级很远的地方,隐约看到了故乡的模样……

采访人员:故乡的模样?

受访人:没什么,可能只是我的错觉。我好像看到了前厅中我的家乡的模样,不过我在后室呆了太久了,家乡的模样……早就已经忘掉了吧。
(采访结束)


经过这次后采访,M.E.G.已派遣专员探索该层级,并同时开始撰写该层级的档案。





Level LW-670第一版记录

生存难度:生存難度:

等级等級 等待分级

  • 未知的安全性
  • 未知的稳定性
  • 未知实体数量

Level LW-670是后室LW层群的第671层,该层级于近日被发现。

描述

该层级路灯的一张图片

Level LW-670被描述为一个类似于前厅中国古代时期的古典建筑群。该层级建筑物普遍较为低矮,且其中建筑大多由木材与石料建筑而成。该层级建筑物大多较为残破,不少房间与楼台的墙壁出现了开裂现象,在该层级内有大量木质古典家具散落在地,此类家具大多处于严重磨损的状态。

该层级道路则普遍较为狭窄,成网状交织,可沟通层级的各个角落。道路也较为残破,呈现为无人打理状态,目前发现了大量石质小路上生长着青苔以及不明植物。值得注意的是,该层级的道路上可以发现大量纸币,这些纸币不属于前厅后室任何已知的币种,但有探索队员表示该币种类似前厅中流通的冥币。

目前认为Level LW-670不存在昼夜变化,且该层级永远处于黑夜状态,可以看到厚重的云层。但该层级仍有少量光源,这些光源来自于层级中大量出现的路灯与灯笼,他们的存在得以让流浪者能够看清道路。流浪者在该层级可以听到无法辨认的微弱声音,在靠近层级内的灯笼时最为明晰。

在该层级边缘可以看到一扇紧锁的巨大且残破的木门,探索小队发现,该木门似乎可以被开启。目前M.E.G.正在派遣人员调查该木门。同时值得注意的是,该木门后方景色类似于前厅,队员们都表示观察到了前厅的著名建筑,但这并不代表该层级可以到达前厅,因该层级目前还在进行调察,请流浪者们不要擅自来到该层级。

————其余部分正在撰写中————



通知

Level LW-670中的木门锁已经被特勤小队解除,经监督者议会商讨决定,目前将指定志愿人员[数据删除]前去开启木门,并尽力探索木门之后的世界。届时,我们心中所有关于该事件该层级的疑惑,都将会解开。

Meglogo

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




我为什么要参加这个任务呢?我不知道。但我现在莫名其妙地激动。

我看到了他们拟写的那个档案了。不知道为什么,我心中有着强烈的执念,认为这个层级可以到达前厅———也就是我的家乡!所以我脑子一热参加了这个危险性未知的任务。现在回想起来,我可真是傻呀,但已经覆水难收了。我离开前厅已经好久,好想回去……

不对,现在也不是想这个的时候,我还是应该专注探索这个层级未知的部分。要是我能够为M.E.G.做出某些贡献,我一定也能生存得更滋润些吧……

门后面是什么呢?希望不要太危险。

负责人:喂喂,能听到吗?你到达了吗?

可以。并且我已经到达了Level LW-670。

负责人:好的。请注意这一次任务以调查和探索为主,一切行动听从总部安排。不要冒险探索未知的东西,你的性命是我们第一要保护的,有不对的地方立刻返回,收到了吗!

收到!


我观察着面前的木门,木门上还残留着一些未被清理的符咒。深吸了一口气,我双手猛的用力,推开了这扇木门。木门吱吱呀地转开,一股腐臭味混着一层灰尘扑面而来。

我不由地闭上了眼睛,扇走了面前的灰尘后,才终于看清楚了面前的景象。那是一条蜿蜒不断的泥泞小路。这条小路不断延伸,延伸到了我无法看清的尽头,小路周围是看不见尽头的荒原,空气中弥漫着雾气。一派死气沉沉之景象,只有远处那类似前厅的景象能够稍微安慰一下我。

我喘了几口气,还是决定向前方迈出脚步。哪怕尽头仍是未知。

负责人:怎么样了?请报告情况!

一条小路,除此之外什么也没有,我会继续前进探查情况。

负责人:好,注意安全,时刻保持联络!

收到。

不知道走了多久,眼前的景象毫无变化。我的脚已经有点酸疼了。回头一望,那扇门也已经不知在何处了。我现在是一个真正意义上的流浪者,一抹淡淡的孤独与退缩之感涌上心头。

但我仍选择前进,我不知道为什么。我顺手拿出一瓶杏仁水补充水分,不知道是我身体太过于疲惫还是怎么的,这瓶杏仁水没有其他多余的味道,如泉水一样甘甜。我心中的孤独似乎都冲散了不少。

好像有谁正在阻扰我的前进,我曾不止一次产生了退缩与恐惧的想法。也不止一次差点扭头就走。我抬头看了看那前厅的虚影,深呼吸一口,只能坚定心神加速前进。不知道是不是我的错觉,我似乎观察到前面有一抹曙光,可能是心理作用吧。

负责人:你那边情况怎么样了?

景象毫无变化,但我本身情况良好。

负责人:收到,如果发现不对,立即返回。

不对,那好像不是我的错觉。我的前面真的出现了几抹亮光!这使我不由自主地加快了脚步,无论前面是什么景象,总比呆在这个荒郊野里好!眼前的亮光越来越清晰,我的喉结不自觉地颤动着,呼吸也急促了。前面到底是什么?因为快步行走,我的裤脚与运动鞋已经沾满了泥泞,但我不在乎了,我只关心前面……到底有什么!

所有的亮光终于从迷雾中显示出真容,那是一排排的古典灯,就和之前在该层级见过的灯是同一种样式。而我脚下的路也变成了石路,踩在上面有一种莫名的酸痛感。最重要的是,原本远在天边的城市虚影,现在是如此真实。我激动得向前快步走着,以至于慢慢转化为了奔跑。

前面,到底有什么?!

负责人:听得到吗?喂喂喂。

……

负责人:收到请回话!收到请回复!





我盯着面前的房门,久久愣在原地。

这个房门我太熟悉了,这便是我在前厅时家的房门。房门没关,我哽咽了一声,走了进去。房内的设施如旧,没想到,我离开那么久之后,家乡旧颜丝毫未改。泪水沿着眼角滑落下来,我看看这张椅子,那张桌子,他们很朴素,却比任何奇幻的后室物品都令我欣喜。

隐隐约约的,我听到了一阵微弱的哭声,那哭声的主人我再熟悉不过了,是我的母亲啊。我平复着激动且忧伤的心情,轻声且快步地走到了母亲的房间。

母亲出现在了我的眼前,她正坐在床上,背对着我,还能听到她抽泣的声音。我再也无法矜持了,满含热泪着朝她抱了过去。我多么想要跟她好好的说一句:“妈妈,我回来了!”

“扑通。”出人意料的是,我扑了个空,我仿佛瞬间被抽空了所有力气,我躺在地上,无力地流着眼泪。去她妈的后室,我算是明白了,我无法触碰到任何人,真是搞笑,我现在到底是什么?鬼吗?我才想起来,今天是8月27日,她妈的农历七月十五中元节!

我真他妈是鬼!

窗外一盏盏灯火逐渐落下,我与母亲相对而坐,我能看见她,她却无法见到我,我想帮她擦拭眼泪,却无能为力。不知过了多久,客观上大概几个小时,主观上比一个世纪还长。我感到自己的身体逐渐虚幻,眼泪终于再一次控制不住地决堤。

母亲似乎感受到了什么,抬起了头,而我也颤动着手,似乎真的擦到了她的眼泪。




须知

志愿人员[数据损坏]在8月28日于Level 1中被发现,并且安然无恙,请广大流浪者不要担心。

Meglogo

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
















入口与出口

入口

切入任意特定钱币。

出口

沿着Level LW-670的边缘小路一路前行可以暂时以鬼魂之形回到前厅。


« Level LW-669 | Level LW-670 | Level LW-671 »

微距了,是FNFzzz