Level C-956
评分: +21+x
: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 }

LEVEL
C-956

生存等级生存等級
1

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

环境環境:1/5
低环境风险低環境風險

实体實體:0/5
无敌对实体無敵對實體

Level C-956是后室C层群的第956层。

描述

Level C-956 是一处颜色鲜艳的森林。天空常年为淡淡的粉紫色,偶见云层,少有降雨。天空西南方有类似极光的紫罗兰色光晕浮动,而“太阳”——层级内最大的光源静止于天空东北侧。层级内无昼夜更替现象,Level C-956 的大部分地表被植被所覆盖。

树木以阔叶为主,树干矿质化,呈现半透明的虹彩,光泽类似蛋白石。叶片除叶脉以外的其他组织均为透明的淡粉色水晶状,随光线入射角度不同折射出不同颜色,棱角分明,薄而质脆;透过表皮组织,可以观察到其体内流动着的液体;根系深植于土层之下,呈琥珀色,部分老根内包裹有昆虫等内容物,根的横截面可见明显生长层结构。树木受伤后,其内部液体即会迅速自伤口处流出,在与空气接触后迅速结晶,产生六面体、四面体或针状结晶,将受损处在短时间内覆盖、硬化。尚未能了解此树种的生长机理。

tree

矿质木形态手绘图。

Level C-956 的草地与前厅的温带草原地表形态大致相同,颜色以浅绿、紫与蓝为主,普遍难以被消化,从其内部分离出大量 SiO₂ 与多种硅酸盐。在植物体枯死后,矿质元素在地面沉积,形成草丛与晶丛共生的特有景观,并导致小部分地表被难溶的“晶壳”所包裹。晶壳下方的土壤普遍松软。层级草地对含硅物质的吸收与利用机理方面的研究已取得部分突破。

Level C-956 中有大量中立实体活动,形成了较为稳定的生态系统。越靠近林地内北磁极的区域,实体分布越稀疏。Level C-956 中的实体体表多处存在硬化的胼胝体,上方一般有晶丛覆生,晶丛的数量与鲜艳程度在求偶时起了关键作用。除此之外,实体形态趋近于小型兽类,一般群居生活。

Level C-956 内气温维持在 22℃上下,较为干燥,基本无风,空气中常弥漫着丁香的气味。层级内有多条清澈的小溪,水中富含多种有机质。

现象:雨季

Level C-956 内部极少发生降水直至“雨季”到来。在雨季开始时,天空中开始聚积玫瑰色积云,层级内光照强度迅速下降,水汽浓度快速地上涨,产生浓雾,层级内能见度下降至不足 2m,约 20min 后,光线强度降至前厅的黄昏水平,丁香气味浓度达到峰值。之后,层级内将刮起稳定,风力 4 级的西南风,随后产生不知来源的巨大轰鸣声,在此期间地面的晶壳可能出现裂缝,同时雾气的粉红色由浅转深。

雨季开始约 2h 后,雨滴开始自天空落下,在整个雨季现象持续过程中,最高每小时降水量可达 200mm 以上。地表的晶壳与实体体表的晶体会在雨中缓慢溶解,植被也会因雨水冲刷暂时恢复正常的绿色或紫色。大量雨水携带碎晶汇入小溪,使溪水变浑并带有梦幻的彩色的金属质感闪光。雨季过程中,雨水会间歇性、周期性降下,而粉雾不会消失。雨季开始约 72h 后,降水逐渐稀少,雾气缓慢散去。雨季开始约 80h 后,层级光照恢复,“雨季”事件结束。

“雨季”的发生毫无规律可循,在发生前,层内实体会大规模向北磁极迁徙。气温在雨季前 3 天左右会缓慢降至 18℃左右,前往 Level C-956 的流浪者应注意观察“雨季”的前兆,预防洪涝危害。越接近北磁极,降水越少,随同兽群前往北磁极可以有效避免被卷入洪水。

“雨季”中降下的“雨水”颜色为极淡的粉红色,密度略大于纯水,成分与人类的血浆相似但比例不同,未落地的雨水可以直接饮用,可替代杏仁水。溶解晶体之后的“雨水”会因络合物的存在颜色变深,称为溶晶雨水。溶晶雨水不稳定,在接触杏仁水后,内部络合物被破坏,晶体会大量析出并放出热量。无论何时,不应饮用溶晶雨水或被其污染的任何液体

恍惚间,我自认为已逃离了时间……
我来到这里多少天了?
第三天,第十三天,还是第三十天?
我仍被困在这片色彩绚丽到极致的森林里,
玫瑰色的积云压的人喘不过气,丁香的气息弥漫在雨帘中。
在这片比一场风更宏大的雨幕里,我蜷缩在石缝间,
看着周围的晶体慢慢溶解,雨水将这个世界重新洗礼。
即将完成的地图,浸湿后皱巴巴的,紧紧地贴在我的怀中。
指南针镇定自若地指着远方云朵消失的地方。

特殊地区:北磁极/林中空地

勘探过程中发现,磁针在 Level C-956 中总会稳定指向同一点。磁针南极所指向的点即为 Level C-956 的北磁极,而南磁极似乎位于不可到达的层级界限之外。因此认为:Level C-956 内仅存在北磁极。

以北磁极为中心,半径约六百米的圆形范围被称为“林中空地”,林中空地上无树木生长,受“雨季”影响较小,晶壳较厚,导致路面光亮却坎坷难行。除雨季时间外,无兽群在林中空地区域活动。林中空地中最为醒目的结构为坐落其中的“象牙塔”。该区域于 1990 年被“北偏东”勘测队发现。

大型结构:“象牙塔”/“老钟摆”

象牙塔(自称“老钟摆”)是一座位于林中空地的半透明,有象牙光泽的斜塔。塔基位于北磁极极点,塔高 36 米左右,整体形制近似前厅的“比萨斜塔”。塔整体为圆柱形,共八层,外观为独立式钟楼,为罗马式建筑风格,大门处封闭。塔下层是实墙,用壁柱做装饰,中间六层外面用连续券做装饰,最上一层内收结束,四周散落有大量倾斜的罗马式大理石柱或晶体六角柱。

tower

象牙塔手绘示意图。

塔底还可见大量骸骨,塔门右侧地面上有一块撞破的怀表与一副撕裂的扑克牌,其中红桃 A 被封死在晶层中。塔周 30 米范围内水晶般的遗骸遍布。

塔体由晶化的躯体扭曲拼结而成,表面坚硬光滑,棱角分明。透过半透明有虹彩的坚硬组织可以观察到其内部乳白色的骨骼,很容易分辨出其中的人骨、兔骨、鹿骨等一系列骨骼,它们一般弯曲为一个特定形状,节奏性的摆动或转动,相互紧密契合。除此之外还可观察到体液——一种金属光泽透明液体在塔内循环。塔的顶层有一具兔骨与一根人类臂骨相连,绕同一个圆心在两个不同平面上缓慢旋转。据推测,这一结构可能与时钟有相同作用。

象牙塔能够用拉丁语进行简单的交流,它的形成原因仍旧不得而知,而象牙塔拒绝回答有关问题。

实体

moth

Level C-956 被捕获的不明蛾类。

Level C-956 被目击的实体包括但不限于:([骸]意为仅存骨骼)

  • 死亡飞蛾/晓梦蝶/大金环蝶狐/融雪狐
  • 狼/驯狼/猎犬[骸]
  • 落落蝇/灰背蝇/巨绳腰背夹蝇
  • 人类/狐猴/红毛猩猩
  • 红松鼠/花栗鼠[骸]
  • 鼬/獾/貂
  • 歌鲸[骸]

入口与出口

入口
  • 切入Level C-982玻璃穹顶角落的一根臂骨即可进入。
出口
  • 切入塔底一根蛇骨会导致你死亡,并将尸体切出至Level C-933
  • 切入小溪会使你切出至Level C-72


最终,我终于站在那座水晶般的高塔下,凝视着。
它庄严地转动着骨质的指针,滴答,滴答。
那只手臂与兔子越来越近了,它温和地注视着我,那是淡紫色的目光
终于,两根指针交叠在一起。
我的胸腔猛烈地震动着,轰鸣的钟声传遍了我的全身每处骨骼,
眼球在我的眼眶里颤抖,昏暗的玫红色吞没了我的视野。
我勉强支撑着自己的身体站起,望向林地的方向。
那边,雨帘垂下,丁香的云雾开始将世界笼罩。
下雨了。


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