Entity AS-39 “童话织机”
: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 }
评分: +10+x
统合实体分类系统
编号:Entity AS-39
栖息地:???
IETS
5?X **X **
分类:
Enigmatic
性质:
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

形态描述

Entity AS-39,又名为“童话织机”,其外表呈现为一枚精致的手持纺锤。

其长约十八厘米。材质类似月光漂白的骨瓷,表面温润,没有接缝,仿佛从一整块月亮上削下来的碎屑,又被打磨成这枚纺锤的形状。其表面温度恒定在37.2℃,与人类掌心温度完全一致。另外,纺锤会周期性搏动,平均每分钟七十二次,与静息心率吻合,犹如一颗跳动的心脏。

纺锤尖端始终缠绕着一缕丝线。猩红色。永不耗尽。无论是从纺锤上拉扯,还是用切割工具试图截断,这缕丝线的长度始终保持恒定,从尖端到线头末端,恰好是一臂的距离,光谱分析显示丝线并非物质,而是从某种高强度情感概念中抽取并具象化的纤维。如果把这缕丝线贴近耳朵,据说能听到一种声音,一种极其细微的、近乎无声的叹息。

纺锤未激活时,它会发出低语。

低语不需要介质传播。因此,耳塞等隔音设备对其无效,真空环境同样对其无效。低语的内容是一则童话,它的开头永远是:

“从前,有一座不会天亮的城堡……”

但后面的情节会根据听者的不同而产生偏移。有时是公主被荆棘缠绕沉睡百年等待一个吻,有时是王子用玻璃鞋寻找丢失的爱人,有时是人鱼为了爱情放弃声音最终化为泡沫。但,所有版本都指向同一个核心叙事:关于失去,以及失去之后,那种深入骨髓的、不愿再失去的恐惧。

它的功能并非传达信息,而是植入冲动。任何听到低语的个体,都有概率被植入一个被伪装成个体自身愿望的指令:

“寻找一个完美的时刻,并以此对抗时间。”

被植入者会开始出现以下症状:反复回忆人生中最幸福的片段;对这些片段产生极度强烈的占有欲;开始厌恶变化,厌恶告别,厌恶任何暗示这件事会结束的东西;在日记中写下“如果时间能停在这一秒就好了”之类的话。他们被称为“候选人”。

一些人的冲动不足以激活纺锤,低语会逐渐淡去,留下一种淡淡的、像失恋一样的惆怅。但有一部分人,会继续向前走。

激活机制与效应

Entity AS-39的真正激活,近似于一场发生在灵魂层面的仪式。它只能被符合特定身份的个体完成。

这类个体在文档中被称为“公主”。注意,本档案中的“公主”与生理性别无关,与血统无关。它是一种心理状态的表现。

“公主”标准(三项需全部符合):

1. 个体必须看到“被全世界宠爱的自己”,并对此深信不疑。这不是自恋,因为自恋者需要不断从外界获取确认,而“公主”不需要。个体的“被爱”是一种本体论意义上的真实,就像太阳无须证明自己会发光。

2. 个体无法忍受“结束”这个概念本身。“公主”会恐惧失去美好本身”这个事实。其惧怕的不是分别,而是分别之后,那段美好不再延续。

3. 个体坚信,“美好”是一种理应被强制留存、永恒不变的状态。这是一种天真的、近乎孩童式的暴政。个体不是想要伤害任何人,只是无法理解为什么美好的事物必须结束。其拒绝接受这个世界的根本法则。


当“公主”的指尖触碰到Entity AS-39时,她的第一个感觉是被理解。低语声在这一刻会突然变得无比清晰,变成一句用“公主”自己的声音说出的话,直接在其心底回响:

“别怕。我们留下它。永远。”

然后“公主”便会自然而然知道如何使用它,这像是写入每一任“公主”潜意识的本能。其只需要找到那个完美的时刻,然后想着那个时刻,想着有多么害怕它的逝去。

然后,轻轻转动纺锤。

转动的瞬间,猩红丝线会如活物的血管般暴射而出。物理法则在此被悬置。丝线无视距离,无视障碍,无视因果,直指公主心之所系的每一个存在、每一寸空间。

视觉上,丝线介于鲜血、玫瑰花瓣的汁液和熔化的晚霞之间,散发出柔和而诡谲的光晕。直视它超过三十秒,观察者会开始流泪,不是因为强光,而是一种莫名的、无法抑制的感动。

触觉上,它既像发丝般柔细,又像绞索的纤维般不可挣脱。曾经有一名M.E.G调查员在防护条件下接触激活状态的丝线,其事后报告称,丝线触感“像是被一个人紧紧握住手腕,那个人不想伤害你,只是太害怕你会离开”。

概念上,每一根丝线都是从公主自身抽取的、具象化的情感逻辑。

而后,丝线开始编织,这是一种超越物理法则的编辑行为。编织的对象不是物质实体,而是目标所处的时间线与现实叙事。

首先,纺锤尖端会锁死“公主”认为“最幸福的时刻”,并以此为圆心,向外钳制一定半径的区域。这个半径的大小取决于公主对那一刻的情感投注强度。因此,公主控制的国度可以小到一间卧室、一座城堡,也可以大到一整个王国。在国度的半径内,时间会进入一种彻底的静滞。

接着,国度半径内的物理法则被一套新的规则取代。

光线不再遵守光学定律。它唯一的功能是给“公主”的衣物打上最好的轮廓,让她的面容在每一个角度都完美无瑕。太阳和月亮升起不是因为遵循天文法则,而是服务于“公主”的需要。

声音被筛选和美化。国度内将只剩下一种声音,那便是:公主想听到的声音。不符合公主希望的声音会被彻底抹除。

气味被提纯。公主最爱的气味成为国度的唯一气味。所有其他气味被消除。

至于公主所指定的至爱们,丝线会钻入他们的毛孔,缠住每一根骨头,每一束肌肉纤维,每一根神经末梢,将他们的身体调整到“公主”认为美好的模样。

但,他们的意识被完整保留。

被编织者的意识清醒地困在身体内部,无法动弹,无法说话,无法眨眼。他们能看到公主在琉璃国度中缓缓走过,能看到她脸上的笑容。他们想回应,但身体已经不是他们所控制。他们是这场浪漫活剧中的道具,犹如蜡像被展示在一座博物馆里,唯一的观众便是“公主”。

当国度内部的所有元素编织完毕,整个区域的外围会出现一层琉璃般的透明屏障。这层屏障是纺锤力量,也是国度的边界。

从内部看,它反射出国度内的一切倒影。从外部看,它是一面闪烁的、令人极度不安的镜子。触碰它会感到一种温热、柔软、微微搏动的触感——像触摸一枚巨大的茧。有流浪者报告,在接触这层屏障时,耳边会响起一种细微的声音,像一个人在轻声问他是否想永远留在这里。

M.E.G.警告试图踏入国度的流浪者:一旦踏入琉璃穹顶的边界,便等同于自愿加入这场永恒的献祭。

最终,仪式完成,一座完美的国度落成。

在这里,时间是凝固的琥珀,爱是永不褪色的颜料,一切都是为了展现“公主”渴望的美好而搭建的舞台。阳光永远停留在下午三点,花朵永远开放,不会凋谢,不会变色,不会散发除了“公主”喜欢的气息以外的任何气味。“公主”所爱的每一个人,都在她身边,永远微笑,永远张开双臂,永远不会走开。

这一切,正是“公主”在转动纺锤之前,日日夜夜祈祷的。

但,这座国度的唯一居民,只有“公主”自己。

所有被编织者,尽管深爱着她,却无法回应,无法变化,无法给予任何新的爱。

“公主”用自己的爱,为她所爱的世界举办了一场无人醒来的、永恒的葬礼。

“公主”拥有一座永远美好的、空无一人的王国。而这绝对的、清醒的孤独,恰恰是其最初举起纺锤时,最恐惧的那个东西。

在极致的幸福与极致的孤独造成的悖论压力下,公主的意识开始瓦解。而纺锤也会在此刻展露它真正的意图。

它将开始“反编织”,将公主本人作为最后的、也是最完美的材料。猩红丝线不再用于固定外部世界,而是转向内部,其会钻进“公主”的皮肤,缠住每一根骨头,吸吮她的每一段记忆。

反编织完成。公主消失。

她的一切:躯体、记忆、情感、恐惧,以及那颗渴望永恒浪漫的心,都被猩红丝线层层包裹、压缩、重塑。整个过程持续约四十八小时。在这期间,会形成一个肉眼可见的“茧”,外形与公主最喜欢的颜色或最爱的花朵相关。茧的表面闪烁着一层微弱的、脉动的光芒,频率与人类心率一致。

四十八小时后,茧裂开。里面没有任何生物。

只有一枚纺锤。

但仔细看,它的骨瓷表面多了一条细微的纹路,像年轮,像血管,像一段被压缩到极致的记忆。如果你把它握在手心,贴着耳朵倾听,你会听到一个新的声音:一阵极其细微的、几乎被丝线的摩擦声淹没的哭泣。

那是刚刚成为纺锤的“公主”。她的意识并未消亡,而是被凝固为纺锤内部的核心。而纺锤会穿梭于后室,寻找下一位被世界宠爱、也最害怕失去的“公主”。前任“公主”们会用所有智慧与记忆,在下一次循环中试图阻止下一位“公主”。

但每一次,“公主”都会说同样的话:

“那不是诅咒,那是考验。我不会像她们一样失败的。”

以下是部分已确认国度的简要记录。

“从前,有一座不会天亮的城堡。城堡里住着一位不会长大的公主,她的父母永远在花园里为她庆祝生日。”

公主:琉璃城堡的小女儿

编织对象:父王、母后

国度形态:一座会呼吸的琉璃宫殿。公主最初的计划是让父母和自己一起永远幸福地生活在这座城堡里。

“纺锤转呀转,丝线长又长,
织一件永远不会旧的衣裳。
穿在妈妈身上,穿在爸爸身上,
穿在我身上——呀,怎么有点凉?”

生物学特征(?)

Entity AS-39是否存在生物学意义上的生命,目前尚无定论。扫描显示其内部并非空心,而是由一种密度极高的纤维状结构填满,排列方式类似于生物体的神经元网络。当纺锤被“公主”握持时,这种纤维结构会开始搏动,频率与“公主”的心跳同步。

当前一位“公主”被反噬成为新纺锤后,其内部纤维结构的排列方式会发生一次改,变得更加有序,更加复杂。

这暗示了一个令人不安的可能性:

纺锤是一个存储器。每一条纤维,都是一段被压缩的意识。这意味着当前的Entity AS-39内部,囚禁着曾经渴望永恒的公主。她们在纺锤内部仍然以另一种方式“活着”,也以一种我们无法理解的方式感知着外部世界。

但没有人能听到“公主”们的求救。或者说,听到的人,都以为那是诱惑的一部分。

附录:笔记

以下为匿名调查员在Level 11某处发现的个人笔记,据信作者曾与一名“候选人”有过长期接触。笔记的纸张边缘有烧焦痕迹,部分段落字迹潦草难以辨认。

她又开始说那句话了。“要是能永远这样就好了。”

每次她说这句话的时候,我都会笑一下。她则会撇撇嘴,不再说话,但我能看出来她在想别的事。她在想如果时间真的停了,我是不是就不会再对她皱眉,不会再催她睡觉,不会再在她画画画到一半的时候说“该吃饭了”。

她想停的不是时间。她想停的是我离开她的每一个瞬间。

page 17



今天她给我看她的新画。画的是一座城堡,城堡外面全是玫瑰,玫瑰的刺缠在一起,把整个城堡裹得严严实实的。我问她城堡里的人怎么出去。她说不用出去,里面什么都有。

我问她那他们想不想出去。她想了想,说不会的,里面那么好,没有人会想出去。

page 23



她的日记本摊在桌上。我知道我不应该看,但我还是看了。

只看了三行。

“今天他说永远太久了。他知道什么?他什么都不懂。他不知道自己对我有多重要。”

“如果有一天他不见了,我不知道我会做什么。”

“也许会像那个故事里的公主一样,把时间停住。”

我当时应该把那本日记烧掉的。或者把她带到别的层级去。或者做任何事。但我说服自己那只是青春期的小情绪。我告诉自己每个人都会在日记里写些夸张的话。

我告诉自己她不会真的找到那个纺锤。

page 31



她说她做了一个梦。梦里有一个人给她一个纺锤,告诉她可以留住任何东西。我问她留住什么。她说了一句话,我没有听清,但她不重复了。

她的床头多了一本书。封面上没有书名,只有一枚纺锤的简笔画。我问她从哪来的。她说不知道,有一天醒过来就在枕头边了。

我看了一眼那本书。每一页都是空白的。但她说每一页上都写着一个故事。她给我讲了一个,关于一个公主把整个王国织进了一面镜子里,然后在镜子里看着自己慢慢变成老太太,而王国里的所有人都还是年轻的样子。

她讲这个故事的时候,眼睛亮得不像话。

page 38



我把那本书藏起来了。她找了三天,哭了三天。第四天她不哭了,她说没关系,她已经记住了所有的故事。

我想说你怎么可能记住所有的故事,那本书那么厚。

但她的确记住了。她给我讲了一个新的,关于一个公主把整个春天织进了一个琥珀里,然后在冬天打开琥珀,春天就永远不会结束了。

我说春天不结束,夏天就不会来。她说不来就不来,她不喜欢夏天,夏天太热了,而且她讨厌蝉叫。她说蝉一叫,就意味着夏天结束了。

是啊,她讨厌一切“结束”。

page 42



今天是她十七岁生日。她吹蜡烛之前闭上眼睛许愿。我笑她闭眼睛的时间太长了,愿望许了这么久还没想好吗。

她睁开眼睛,看着我。那个表情我以前没见过。不是笑,不是生气,是一种很深很深的、像是在看一件即将失去的东西的表情。

她说:“我的愿望很长。”

我问是什么。

她摇头,说不能说,说出来就不灵了。

后来我找到了她吹蜡烛时掉在桌上的那根头发。上面缠着一缕丝线,是红色的。

page 47



(最后几页被撕掉了。只有最后一页角落有字:)

“我应该在第一天就把那本书烧掉的。我应该在她说‘永远’的时候转身就跑的。但她说‘永远’的时候眼睛里有光,我不忍心熄掉那盏灯。

现在那盏灯熄了。她变成了一枚纺锤。

我今天早上看到她的母亲在厨房里煎鸡蛋。她煎了三个,然后突然愣住了,站在灶台前,手里拿着锅铲,保持着翻面的姿势,一动不动。三秒。然后她继续翻鸡蛋,像什么都没发生一样。

page 48


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