生命的波涛
: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 }

/ 前厅 » 根植空穴

评分: +9+x



…我想,你大概没有过被地震威胁生命的经历——这很可怕,是的,至少明面上是如此。想想看,你赖以生存的大地在颤栗、奔腾,犹如滔滔江水波涛澎湃;一叶扁舟,便是你,在这延绵的江水里被卷来卷去,直到被倒塌的塔楼压成肉酱,或令地壳的缝隙将你挤入地狱……

这的确很恐怖。但假若你在前厅,并主动跳入大地的裂缝,便可能进入一个梦般的世界。绿,绿,绿,——

——你发现大地在颤栗,那是生命的波涛。






……





根植空穴

大地在颤栗,那是生命的波涛





……




生存难度:待定 意识生命 <
  • 不安全
  • 不稳定
  • 可能引发生命澎湃

根植空穴是后室的一个隐秘层级,其被确认位于地球地幔层内,但没有任何岩浆流入,因而生长有大量的植被,几乎覆盖了整个空穴。迄今为止其唯二稳定的进入方式仅有地震时跳入大地的裂缝与古登堡之都


描述:根植空穴是位于地幔层的一个大型溶洞,其温度稳定在20℃上下。其边缘部分地形诡谲多变,愈接近中心愈是开阔,其中植被密布,并存有多种未经发现的植物种类。层级中心矗立着一柱巨大的龙血树,其枝干在溶洞顶部蔓延,笼罩了该层一半有余。向远处望去,流浪者可以望见无数泡状,被岩壁和植被隔离开的大小不一的空间,同时可以目睹植物在溶洞内缓缓蠕动的情景。见下文,这些空间在对整个根植空穴的研究中起到了十分重要作用。在该层不作防护地睡下可能会导致流浪者被层内植物移走,少数会摔下高空。


流浪者若是抬头,则偶尔能够看见溶洞顶部不断开合的岩缝,这可能代表着前厅各区域的每一次地震;少数情况下,一些流浪者会从岩缝内掉下,但并不会受伤。尽管看似触手可及,岩缝仍无法被真正触摸,其外部似乎包裹着一层无形的膜,触感类似于溶洞内其他岩石,流浪者也无法通过岩缝离开溶洞。


在泡状空间内,勘探人员发现了明显由手工制作的复杂机械,其材质是令人惊讶的木质。经过复原,发现这些机械完全可以正常运作,这可能是由于这种木材具有与众不同的导电性等金属性质。这说明溶洞此前可能拥有其他居住者。

gwsic4.jpg

M.E.G. 山区通路II号




根植空穴内部光亮来源于溶洞内随处可见的发光菌类与其他植物,其可以向外界发出一种类似阳光的光亮。值得一提的是,该层内的植被并不依靠光合作用存在,有些甚至无须吸收养分。据研究,这些植物是靠储存在溶洞岩石和土壤中的未知物质生存的;而上文所述“无须吸收养分”者的生长方式尚未解明。这种物质并不会被人类或洞外生命正常吸收,反而导致其中毒而亡。洞内植物依然如此,虽毒性较小但仍可致死。除非必要莫要食用。


溶洞布局呈盆状,水、土与各种资源自溶洞边缘进入龙血树所在的低处,这也为通向聚居地路径的修建提供了便利。M.E.G. 与各团体已经进行了为期几十年的“向导”工程,致力于为意外进入根植空穴的流浪者提供指路服务以减少人员伤亡。


溶洞内的实体种类单一,原生实体仅有爬菌尸鼠两类,但仍不可小觑。前者可能隐蔽在发光菌种内伺机行动,而后者在根植空穴内进化为主要以植物为食的半植物生命体,很多泡状空间内都能够看见正在啃食植物的尸鼠,它们相对于植物更喜欢食用肉类。莫要惊扰它们,洞内的尸鼠正常而言不会注意到流浪者。粗略估算,溶洞内已经有了数以千计的尸鼠种群。


摘录#1:后室人首次入洞记录


……我们的勘探队第一次到达这个地方的时候,心情是极佳的——之前我们遭遇了一场大地震,我原以为要在那里丧命,结果机缘巧合之间整个队伍都进了这个溶洞。后来我们便不再这样想了,我的队友因为吃了这里的树果好几天都萎扉不振;幸好我找到了一片勉强能吃的,长了很多果实的裸子植物丛,才不至于饿死在这儿。

之后我们发现这里很难出去,就干脆在那片树丛边上建了个聚居地,——也就是搭几个帐篷——我没法想象这个荒无人烟的地方为什么会有WIFI,但这有什么关系呢?然后我们就向外界求助,但他们——根本进不来这里。

苟活了好几天之后,我们还是走了,顺路摘了几个能吃的果子。半路上地震了。那一坨大树就在那——蹦蹦跳跳,蹦蹦跳跳,差点被震死。妈的。在路上,我看见溶洞中间有特大的一棵树,跋山涉水好几天才到。

那里有很多人,而且都很善良,和不属于后室一样。至少我们有家了。


——未名勘探队,1948年录





地震在根植空穴十分常见,其并不由于地质运动发生,而是因为溶洞内活跃的巨型植物的活动。一些植物粗壮的经脉直接插入了岩石之中,随植物的活动而活动,导致这一区域的地面产生巨大震动。理论而言,越接近溶洞中心植被越繁茂,地震的发生也更频繁;但并非如此,凡是溶洞中心的龙血木根茎所及之处,发生地震的概率都会极大减小。我们暂不知晓龙血木是否会活动,但就目前来看龙血木维护着整个溶洞的稳定。


据溶洞原住民1叙述,在数百年前龙血木曾进行过一次活动,导致聚居地尽数毁灭,一些流浪者音讯全无。有人认为这些流浪者已经死去,另一说法是去往了前厅或后室,这尚无定论。在由后室人建立的新秩序中,大型聚居地范围内不允许纵火,特别是龙血木附近,否则后果不堪设想。

jz8nvf.jpg

距龙血木1.6km远处的树木,其根茎已蔓延到龙血木1.2km远处




出入口:除上文所述的前厅外,古登堡之都存在一个通往该层级的出口,向当地人员询问即可找到。根植空穴只能通过切入龙血木周围的地面小概率地进入古登堡之都,除此之外没有其他离开的方法。


聚居地:
B.F.P.F. - 木材供应商 M.E.G. - 极目远眺 E.P.B. - 生物研究所I号
E.B.A. - 生物研究所II号 B.N.T.G. - 木材中转站 “卡乌弗斯特”社区





施工区域:

记录#0 - “卡乌弗斯特”社区


施工单位:原住民
施工用时:未知

描述:由溶洞原住民建造的大型社区,环绕龙血树向外扩散,建筑主要为砖木结构,取自溶洞内岩石与各类树木,目前仍在扩建中,面积有数公顷之大。宜居。


记录#1 - 山区通路


tt05qh.jpg

山区通路II号,停工期图


施工单位:M.E.G. B.N.T.G.
施工用时:8年

描述:“向导”工程实施第一要务。从溶洞外围搭起架桥、在地面建造路径,按地形将二者连接。其中山区通路I号系一直接通向溶洞中心的架桥,II号通路全部建于地面,路径蜿蜒曲折。路上设有箭头标识。


记录#4 - 伐木场


sssall.jpg

伐木场的一部分


施工单位:B.F.P.F. B.N.T.G.
施工用时:2.5年

描述:由两个团体建造,用于砍伐洞内木材的场所,并将其运入古登堡之都。层级内导电的木材为后者的建设提供了极大便利。由于行径对于溶洞内生物而言十分残暴而常遭地震,濒临崩溃。


记录#5 - 温室


tvgtcf.jpg

温室


施工单位:The Sowers
施工用时:4月

描述:“农”成员在该层自发建立的聚居地,用于养护并培育溶洞内植物。位于“卡乌弗斯特”社区。与伐木场不同,该场所十分受植物喜爱,相对稳定。由于未知原因,目前该聚居地似乎已经废弃,成员转移至远离龙血树处。

……

档案更新

地震了。溶洞的中心。我的家。

这一天总会来的。那棵高大的龙血树的枝干在飞腾,它埋在地下的根茎将地面搅得千疮百孔,但我们无法离开,只能在躲避的疲惫后静待死亡。

我想,如果安娜能活着,我宁愿现在就死。我的女儿啊,她才五岁,为什么就要遭这灭顶之灾呢?我应该去古登堡定居,至少那里没有这样危险,但因为这里的一点东西,我现在就要丧命。

我真傻。我加入了农,那些植物告诉我们巨树马上就要苏醒,我们却觉得只要远离龙血树即可。这样大,这样古老的一棵树,它的根茎恐怕早已遍布整个溶洞,离得再远也是无用的。

如果安娜还活着,如果你们在我死后能看到我发的编辑,烦请过来照顾照顾我的女儿吧。尽管我知道这没用,她大概也是要死的。

我,和我们,从不该把这个溶洞,还有这个后室,当做自己的家。自然也不是我们的家。看,那粗大的根茎破土而出,四散的岩石像仓皇的鸟儿。我只能把女儿护在身下。

看,溶洞在颤栗,大地在颤栗,前厅和后室在颤栗。看,那是生命的波涛。如此澎湃。如此壮烈。如此无情。

——未名勘探队,1958年录



BY / Mirror hands

IMG / 且均经处理




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