LevelX 91 .5
: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 }

评分: +2+x

生存难度:生存難度:

等级等級 死区

  • {$one}
  • {$two}
  • {$three}

Level X–91.5是Level X–91的子层。我需要改一下,这就是现在的Level X–91

描述

该层级已毁灭Warning!
能看到吗,我在下面搞了一个我对这一个地方的描述,反正也快死了……

Torre Huimat(现已确认死亡)

4月11日 10:42 AM


| 这里曾被称为Level X-91,一片无边无际的混交林。但现在,它醒了。走进来,空气粘稠得能拧出铁锈和腐烂柑橘的味道。头顶没有天,只有一层病怏怏的黄绿光影,像个巨大的伤口在缓慢地呼吸明灭。光斑像刀片一样切在地面上,摸上去冰凉,却让你眼前炸开一片乱糟糟的色块。

explosion-123690_1280.jpg

自然反击爆发之时

林子里的树长得邪门。冷杉的树干摸上去像冷却的沥青,刮一下,那股腐烂味更冲了,仔细看,深褐的树脂底下好像有暗红的东西在流动。白桦的树皮剥落得飞快,碎片在空中悬停几秒就没了影。橡树的根拱出地面,扭结成整齐得吓人的方格子。树叶背面爬满了像人手血管的暗红纹路,摘下来,叶子就化了,变成一滩温热的、血清似的粘液,甩都甩不掉,直往你手上爬。

脚下是腐殖土混着火山灰,踩下去刚好陷进三厘米,拔出来时带着一声长长的、粘腻的气泡音,像沼泽在叹气。淡蓝色的雾气贴着地皮飘,吸进去鼻子火辣辣的。温度计说23度,但你觉得越来越热,皮肤底下像有炭火在烧。露珠大得吓人,在叶子上滚成浑圆的珠子,就是不往下掉。风永远一个速度吹着西北风,烟雾却打着旋往天上钻。每天下午两点二十六,气压会猛地一沉,耳朵里嗡的一声,像被人按进了深水。

带刺的蔷薇丛拦着路,刺上带着倒钩。花苞猛地绽开,伴随着一声刺耳的金属刮擦,紧接着就碎成一把灰白的粉末。沾上这粉末,手指头会突然记起小时候被纸割伤的锐痛。黑浆果看着诱人,咬下去牙齿缝里却窜过一阵微弱的电流。蕨类叶子边缘长着眼睫毛似的细毛,一有动静就闭合成捕虫夹,却从来没见它抓到什么。苔藓长成一个个完美的圆,圆心长着银灰色的地衣,朽木里琥珀色的树胶裹着些旧玩意儿——七四年的钢笔帽、八八年的电池皮。

动物?只留下诡异的痕迹。蹄印深得能放个拳头,步幅大得吓人,就是看不见影子。树洞里能找到像松鼠又像狐狸的毛。鸟巢是用手术缝线编的,里面的蛋壳敲起来像瓷碗。夜里总能听见地下深处有东西在刨土,挖下去却空空如也。

小溪只有一米八宽,水清得像蒸馏过,却一股铁锈味。河底的鹅卵石全是六棱柱,尖头齐刷刷指着北边,排成叫人眼晕的复杂花纹。水面绷得紧紧的,能托住半公斤重的东西,可丢下去的东西就悬在水面下三厘米,死活沉不下去。

林子里戳着歪斜的电线杆,半透明的电线绷得紧紧的,阴天时嗡嗡作响,杂音里能听出几十年前的新闻联播报时声。绝缘子里塞着干枯的骨髓。溪边陷着半截锈烂的油罐车,罐体喷着“严禁烟火”,油箱小得可笑,里面抽出来的东西像混了肾上腺素的三氯甲烷。点着了,火焰蓝幽幽的,温度死死卡在666度。

一个军用帐篷孤零零地搭着,编号是“第七勘测队1986”。里面比外面看着大得多。折叠床的铁丝网上陷着个人形凹坑,一天比一天深。煤油灯的火苗冷冰冰的,却在帐篷布上投出三个不同年代军装的影子。

油罐车底盘下塞着个铅封档案袋,火漆印是五角星套着椭圆。里面地图的等高线都是错的,偏偏和这鬼地方的地形严丝合缝。地图边写的磁偏角大得离谱,计算公式里居然带着虚数时间。一个塑料收音机,旋钮锈死在98.7,反复播放着走调刺耳的《东方红》电子乐。电池拆开,里面的电解液冻成了果冻。天线能拉出几米长,伸得越长,声音越慢。

一个豁了口的搪瓷杯,“劳动光荣”的红字褪成了粉色。杯底的茶垢结了层硬壳,仔细看轮廓像黄河。杯底沉着三粒方糖,不甜,但含在嘴里能骗你舌头两秒钟。一个黄铜指南针,针指着北,刻度盘的“东”“西”却颠倒了。玻璃罩子里凝着颗水珠,永远悬在那里。把它搁在铁轨上,指针就开始匀速倒转。

混凝土排水渠穿过营地,渠底沉着几个玻璃汽水瓶,瓶身上生产日期印着“星期八”。橡树桩子面上刻着象棋盘,红帅是黄铜的,黑将是硬橡胶的。小兵过了河,就能像马一样跳。一辆生锈的自行车靠着电线杆,蹬一圈能蹿出去老远。车铃铛里没锤子,晃起来却发出链条摩擦声。轮胎花纹是五十年代的老古董,胎压永远不变。倒扣的搪瓷脸盆底上,鲤鱼的鳞片一天多一片。灌点水进去,水面就定格成长江支流交汇的波纹。

军用挎包挂在冷杉矮枝上,里面是本73年的《赤脚医生手册》,书页被啃成了青海省地图的样子。书里的针灸图穴位错了一半,可扎下去偏偏管用。油罐车后视镜上挂个铝哨子,吹起来震耳欲聋,五米外却听不见。哨体刻着“安全生产5000天”,末尾的数字半夜自动加一。排水渠口扔着个玻璃注射器,推杆有细微的旷量。残留物干了结成晶体,X光打过去像某种消失的疫苗。包装批号对应着六八年上海药厂销毁的实验品。北岸嵌着个铸铁井盖,提手磨得锃亮,底下却什么都没有。夜里井盖冻得刺骨,露水在上面凝成铁路路徽。电线杆顶上卡着个破羽毛球,一根羽毛像是猫尾巴毛。扔出去,落下来的轨迹像钟摆。羽毛管里的花粉来自华北平原早就死绝的蒿草。

油罐车侧面贴着张褪色的“计划生育好”宣传画,人脸被蛀出均匀的小洞。颜料里有铅铬,紫外灯一照,显出被涂改的水稻亩产数字。树干上钉着个铜门牌,“建设巷37号”,背面打着“1983年制”。这地址现在是农机局。雨水冲过,门牌会渗出发酸的松脂。自行车胎上缠着尼龙绳,看着旧,拉不断。绳头浸着凝固的柴油和树汁。溪边丢了只塑料凉鞋,鞋底是七十年代的纹路,鞋带孔却是现代的。左鞋里用圆珠笔写了个“王”字,使劲往左撇。鞋里的脚皮渣查不出是谁。餐盒旁倒扣着搪瓷碗,“奖”字下面露出半个“试”字。倒热水进去,碗壁会传出79年春晚观众的掌声。碗上的裂纹一天长一毫米,就是不碎。帐篷支架缝里插着根铅笔,笔芯硬软螺旋交替。写着写着字就变深变浅,稿纸背面用显影液能刷出等高线图。橡皮擦渣里混着保密车间的金属屑。电线杆拉线上挂了把黄铜钥匙,齿形是十字锁的,却能打开油罐车油箱盖。插进去转起来特别沉,转满一圈钥匙就烫手。钥匙柄上的油泥混着十七个人的皮脂。排水渠旁的沙土里埋着颗玻璃弹珠,里面螺旋的色带扭成左旋的DNA。在铁板上能滚上几十分钟不停。对着光看,色带会重组成六四年某油田的岩芯色谱。帐篷外散着本破烂的《新华字典》,71年版的书里夹着98年的新词。“林”字那页被翻烂了,边沿像被激光切过。附录里偷偷写着,一米的长度是光在真空中跑1/299792458秒的距离再加一个普朗克长度。

这里没有基地,没有前哨,没有社区。入口不明。出口?如果你还找得到的话。

然后,它醒了。你再也找不到那片林子了。空间坍缩成一个暗红色的盒子,墙壁在呼吸,像布满了搏动的血管。脚下是半软的蜡层,每一步都烙下燃烧的脚印,剧痛在七秒后沿着小腿爬上来。头顶悬着燃烧的钟,凝固的火焰指针永远停在三点四十二。方向?没用了。指南针转了九十一圈,融成一滩水银球。

西墙渗出黑油,见风就燃起蓝绿色的火墙。那火烧的不是木头,是你的记忆碎片——九八年的小学教室,课桌上刻着你早忘了的誓言。东边走廊尽头立着个消防栓,拧开,喷出的是粘稠的阴影,光一照就结成黑曜石。它又消失了,只留下一个人形的灰堆,手指僵直地指着通风口。你爬进去,管壁上长满了石英牙齿,咀嚼着你弄出的每一点声响。岔路有面镜子,里面的你双眼流着血泪,伸手一摸脸上却干的。你往左拐,管道猛地倾斜,把你滑进一个圆舱。

舱室正中,一个燃烧的档案袋悬在那里,标签是你的名字。火焰舔舐着“紧急联系人”那一栏,烧成灰烬又拼出一个陌生的号码。你拨过去,听筒里传来祖母临终前九十一秒的喘息,然后忙音。这些火只烧你最清晰的记忆。蒸汽嘶鸣着喷出舱门,露出一条标着“EXIT”的走廊,字母是用烧焦的指甲拼的。走廊边的灭火器箱里浸着你的童年照片,泡在强酸里。每走十步,一颗牙齿从天而降,砸在地上化作白磷弹。第三颗牙烧穿了地板,下面是你老家零三年的火场。

人形的火焰围拢过来,拿着烧焦的日记本,空白页上正浮现你此刻的恐惧。“出口”的牌子突然翻转,变成俄文的“炼狱”(чистилище),一个你从未见过的词。防火服从缝线开始解体,线头扭动着把自己织成一百年前的战地绷带。

所有的火焰猛地静止,然后齐刷刷转向你。死寂中,一个念头如同耳语般炸开:自然暴怒了。

不要进入该层级!你知道下场的

实体

统合实体分类系统
编号:EC-[X–91]-1
栖息地:X–91
IETS
5+AXX
分类:
妖兽
性质:
HVM
VRL-A
VRL-B
NCR
MCH
CBR
SYN
DMN
SSV
CVL
RLA
UNQ
AGR
BNV
{$custom-tag-name}
{$custom2-tag-name}
{$custom3-tag-name}
RAD
NRO
TXC
PYR

描述:

EntityX–91–1(通称“非真兽”)是一种由生物组织、无机物及时空异常现象嵌合形成的掠食者。其存在本身构成对进化论的亵渎,表现为持续自我否定的活体矛盾集合。

dark-9449158_1280.jpg

由艺术家绘画的非真兽

基础轮廓为不定形暗影团块(平均直径1.8米),表面持续渗出沥青质感粘稠分泌物,干燥后形成类似陈旧印刷电路板的青绿色硬质包膜。

移动时体内浮现半透明非欧几里得脊椎结构,由交替排列的哺乳类椎骨化石与石英结晶构成,关节处嵌有微型滚珠轴承。

胸腔嵌合2-3颗搏动的玄武岩心脏,搏动频率与层级气压骤降事件同步(每日14:26达到峰值120次/分钟)。

头部区域悬浮7-12枚人类乳齿化石,齿根延伸的菌丝网络可接收电磁波及记忆信号。

释放含甜菜碱的信息素诱使动物接近,体表自动剥离碎屑黏附宿主皮毛。

当宿主接触 Level X-91 溪流水体时,碎屑重组为蝌蚪状幼体,经生物孔道侵入颅内。

完成寄生后宿主表现出:
动作僵硬如提线木偶
排泄物含生锈订书钉
发出1978年《新闻联播》报时谐波

行为准则:

应当:

  • 躲避他的视野。
  • 拼尽全力逃跑。
  • 不应大声吼叫。

不应:

  • 放弃。
  • 发出声音。

基地、前哨与社区

不存在,或者说曾经也不存在

入口与出口

入口
  • 入口请查看Level X-91现已禁止使用入口处所写的要切入的物品
出口

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