汀艺家
: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的基地这边,Luca正因为爱人在层级内死亡而情绪崩溃,他的爱人Anna正因为他的原因而离他而去。

“可我他妈现在就想知道……”他顿了顿,后抽了抽嘴角,“这到底是什么鬼地方。”

“Luca先生,请先提供一下口述资料,我们会整理档案,让你的家人朋友不会再离开您。我们接收到了很多的报告,报告者均已死亡,您是目前唯一已知的幸存者。”

“可我现在只知道这是个居民楼,知道她死了……,死的凄惨,为什么只有我逃了出来啊,我恨这个层级,我恨这个层级,我恨这个层级!”

“Luca先生,请你冷静下来,我们知道你现在正处于悲伤的阶段,但为了防止后面的人继续来到那个地方,你总得提供一些信息,不是吗。”

生存等级生存等級
2

资源:2/5資源:2/5
食物少见食物少見

逃离:3/5逃離:3/5
难以逃离難以逃離

环境:2/5環境:2/5
少量环境风险少量環境風險

实体:2/5實體:2/5
少量敌意存在少量敵意存在


本层级被编号为Level WR-57,或称为“汀艺家”,本层级是后室WR层群的第57层。

描述:

Level WR-57的外观表现为一栋往上下两端无限延伸的老式居民楼。Level WR-57已被证实是一处非欧几里得空间,且在每一次上楼或下楼均可能会充满未知性。

流浪者在初次进入本层级时会来到一间房间,房间的面积极小,墙壁被刷成奶白色,洁净如新,装修风格较为新颖与现代。在推开一扇木门后,流浪者便会来到层级的居民楼内部,那一扇木门便会彻彻底底地消失,变为一堵敦厚的墙壁。

其照片。


居民楼内部的墙壁被粉刷成纯白色,墙角还能看到有墙皮脱落,少有蛛网和死亡的飞虫1更甚者可见到诡异的血迹,内部的楼梯与地板由面积大约为1㎡的大理石砖铺成,其砖缝虽然做了美缝,但却抵挡不住灰尘的生成。

这栋居民楼既已知晓不存在尽头,向上、向下延伸的楼道也会随机扭曲、折叠,违背了常规的几何与物理逻辑。

本层级的居民楼内部。


楼梯装有扶手,其表面布满了红色与暗棕色的锈迹,且布满了与Level WR-53相同的厚灰尘。有些时候,Level WR-57楼梯的扶手常常被注意到有人为破坏的痕迹,但对其进行直视时,这些痕迹将会立即消失,取而代之的便是布满锈迹的楼梯。这也证明了Level WR-57的不可破坏性。

前文所提的居民房打开后,可能是突如其来的有害实体,也有可能是维持生命的吃食。且再次关上门时会变为一堵墙壁,在流浪者面对实体时,退路便会被彻底堵死,迫使流浪者只能顺着阶梯向下逃离。

Level WR-57的墙面上常常可见,挂着许多不寻常的英伦风油画。奇油画的内容大多都会关于爱与情侣、伤痛和绝望,这促使流浪者不禁对身边的异性产生好感与爱情。结合后文现象因素,我们可以得到层级的关键因素,这便是Level WR-57常常会有人死亡或崩溃的原因,这几乎完全无法避免。

目前,人们暂未发现Level WR-57里任何的可通风环境,但流浪者依然可以呼吸到氧气,但是这些氧气夹杂着逐渐上升的二氧化碳浓度,直至充满氧气。且其每秒都会上升百分比的二氧化碳与其杂质、灰尘。长期停留会感到胸闷、乏力、迟钝,最终只能在窒息中失去意识,且大大降低了流浪者面对实体的逃生几率。这也就意味着流浪者不太有可能在本层级内进行长期的生存。

据目前信息来看,Level WR-57内除了流浪者刚来时的初始房间外,在进入楼道后将不再会有任何相较于初始房间的较大房间出现。

Level WR-57内的每一层均有一盏摇摇欲坠的吊灯,表面不仅布满灰尘,照射的光线也大打折扣,甚至有些地方的吊灯不堪重负,结局仅有损坏。导致流浪者有极大遭遇笑魇的可能性。

楼道内在向上或向下行走十六七层后,可能会有一台外貌类似于二十一世纪初的自动售货机,外表精致,内部肮脏。其次,这也是本层级唯一超脱出其大致所属年代的产物。

其中,85%的售货机都是空架,仅少部分货架内会出现一两瓶尚未开封的杏仁水或寥寥无几、包装完好、且较为新鲜的干粮,这些吃食并没有任何实质性的保质期,而是一直保持着新鲜的状态,它们虽然营养单一,却也足够让流浪者在本层级内有一丝生存的余地。

流浪者可以通过锤碎玻璃来拿到物资,不过,售货机里的物资所提供的效果除了所属的增益外,还另有一些精神的增益。

也可能正因如此,当流浪者往中间的楼道空隙丢出任意的物品后,其物品便将不断重复的从上往下坠落这个过程,但速度遵循了牛顿第二定律2,其下坠速度将不断增加,直至物体所能承受的最大速度,对生物呈现同样的效果。

Level WR-57内含有孤立效应,但这并非传统意义上的孤立,本层级只会孤立流浪者没有想到、且也素不相识的人,这也是本层级内精神危害的根源。导致了本层级内的死亡率呈直线上升,且值得注意的是:流浪者在本层级的死亡率直到100%后,会在极短的时间内跌落至0%,再次开始一次循环上升。本层级内不会孤立流浪者心中所爱的人,而是会制造一个偶然,让双方相见,在双方相见后,心中所想者则会以未知方式死亡。当第一个流浪者心中的所想之人死亡后,成千上万的精神支柱均会涌来,后全部以未知方式死亡。

同上。倘若流浪者被其他人想起,或是拥有好感、爱意,也同样会在一瞬间被强行拉入层级中,这是一起不可矢口否认的事实,此外,此现像被估测可能也能够在前厅见效。

“我也没做什么丧尽天良的事吧,上帝图什么要让我进入这里……恐怕就是因为这个现象才导致我的爱人死亡,她死了,留给我亲手折的纸玫瑰有什么用?”


实体:

目前,Level WR-57中已知的实体仅有在暗中潜伏的笑魇与随处可见的死亡飞蛾,少量的无面灵,其余实体暂未被发现,需要等待探查与文档更新。

基地、前哨站与社区:

Level WR-57内没有任何的人造基地、前哨站与社区,但某些实体会不而同的组成,突袭前来的流浪者。

入口与出口:

入口:

  • Level 3内的某些扭曲的消防通道可能会通向Level WR-57,Luca便是从此进入的。
  • 切入Level WR-53中偶尔可见的,表面生满锈迹的破旧扶手可以抵达本层级。
  • 更多入口尚待探查

出口:

  • 在流浪者濒临崩溃时昏迷,则有一定的概率被传送至Level 1。但仍有82%的概率则会被送入实体的基地中,离开只能凭运气。
  • 更多出口尚待探查。

补充:

Level WR-57可能仍然存在异常的性质,这导致特殊的物品与特殊的逃离方法均已失效,这会让流浪者迅速地死于切出点。



关于Luca


2026年1月,我就进入了这个层级,只不过这个层级里面没有信号,我便完全无法向外通报关于Level WR-57的所有信息。

当时我没进去多久,就看到了很多关于爱情的话,这不禁让我联想到了我和Anna Ellansedunt。我和Anna是一对夫妻,我们2015年就在一起了,当时距离我们的结婚纪念日还剩两个月,我便想着逃出来,早点和她一起去Level WR-37约会,听说那边山的外围虽然环境有点恶劣3,但确实很美、很壮观,可做好防护,确实是一个好去处……

想着想着,我便遭遇到了实体,因为目前我就遇到那几种4,也没多想,随便说了上去,Emmm……因为我后来并没有遇到过除所述外的任何对我造成过实质性伤害的实体5

我爬了不知道多少层之后,突然听到一声枪声,那声音差点要把我的头颅贯穿了,但是我没描述进文档里,是因为没有对我造成实质性伤害,再往后的枪声我也当做没听到了。

但是在不知道多少层下面突然传来脚步声,我不知道这是不是什么未知实体,但是这脚步声急促,类似于人类的脚步声。当时我去看了一下——吔6,Anna Ellansedunt!她怎么会在这里?当然,她也是一眼就认出来我的。“Luca Dayyrseinbû!”当时我们两个相拥在了一起,我们打算一起逃出去,可我们并没有找到出口。

当时我为了保护她,就走在前面,打着手电筒,拿着所剩无几的杏仁水驱逐实体。

我其实很早以前就听说到了Level WR-57这个层级,并且我想起Anna,后Anna出现在我眼前时,因为大家普遍认为这是个巧合,所以我特别惊讶,可是,这个现象放眼整个后室,却可能是头一茬。


我们找到了个住宅,里面是难得的资源富足的住宅,甚至可以够我们撑过逃离这个层级,就算逃不出层级,少说也能撑过一年,甚至一辈子。

在我们撑了三五个月后,我们的结婚纪念日——5月5日也到了。当时我们兴奋的不得了,Anna也给我折了枝象征着永恒的爱的栀子花,奶白色的纸上面还勾勒了几笔细节,栩栩如生,法国是一个浪漫的国度,这也是必不可少的。

这是我们结婚的第二年,我们的爱情不想在此刻结束,所以我们也在拼命寻找着出口。也正因如此,我们做出了计划——我们首先收集好了物资,放入了自己的背包,然后,我们离开了这座房间依旧是走在前方保护着Anna,再后,我后面听到了骨头的断裂声,当时以为是坍塌,于是没当回事。但正因为我没当回事,便痛失了Anna。

我依稀记得Anna在作出计划之前,给我多折了几枝栀子花,她将全部送给我,称为对爱情的象征。

我的泪水绷不住了,在泪水模糊我的眼眶时,我仿佛看到:永恒的爱被撕成碎片,化作了万千星河,变为几颗渺小的流星,正曳尾而下。她正透过星河,与我对视,恍惚间,我看到了,他在婚礼上对着我,当着所有宾客的面跳的那支舞,正化作了模糊的繁星。它们都在对着我,眨着眼睛,似是在告慰我,什么都没说,又好像什么甜蜜的爱意都诉说了,流进我的眼睛,渗入我的心胸……Anna Ellansedunt

你以前总说:如果有愿望,那一定是愿我平平安安,可现在呢,我是平平安安了,那你呢,却被这个吃人的地方夺去了生命,我以前经常听见别人说这地方就说一个地狱,一个无法逃出的牢笼,那时我不屑一顾,认为这地方就是难生存点,可现在我并不这么认为了,我开始变得和那些人一样了。

5月20日:亲爱的,不知道你在那边还好吗,今天是象征着爱情的一天,原本我应该和你一起跳舞的,可是,唉……

6月12日:亲爱的,我好像已经记不清你的模样了,自从那件事过后,我就一直在伤心中度过,我慢慢开始麻木了,慢慢的开始忘记你,慢慢的开始记忆混乱,慢慢的不在热衷于写日记了,我想,我很快就会忘记你了……

6月15日——M.E.G研究记录:今天Luca很不对劲,他今天竟然和我说他见到他的妻子了,我说他这是思念过度了,他还不信,说我在骗他,说完之后就走了,我和别人说这事,他们也都觉得太不对劲了,认为Luca太执着了。


我不想再看到这个层级,我恨这个层级,痛恨遗憾……Anna Ellansedunt,希望你能允许我跨越现实,进入梦中,来到你的坟墓,悄悄地,陪着你……

晚安,Anna Ellansedunt.


几天后,M.E.G的成员发现了一具尸体,检验过后,这正是Luca的尸体,他如愿的去陪他的妻子了。

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