安娜太太的邀请函
: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 }

安娜太太的邀请函


评分: 0+x


初冬时节的气温早已降到零度以下,我裹紧毯子,坐在位于Level C-435的家中,昨晚电力又停了,住在没有天守阁的镇子就是这样,我望着嘴里哈出的白气飘到窗户上,凝成一层薄薄的雾,雪许是昨晚停的,此刻窗外早已是白皑皑一片了。正胡思乱想着,突兀的一阵门铃声打断了飘飞的思绪,我只好起身,透过猫眼却并未看到有人在外面,这着实奇怪,没有人何来的铃声?真是怪事不成,难道是某个妖精实体的恶作剧?

回到桌前才发现,桌上已经不知何时被谁人放上了一个信封,上面除了一个用纤细秀丽的笔迹的署名"Mrs. Louise"以外找不着任何其他的标记了,信封是用细软的牛皮纸做的,信封口粘贴着火漆,散发出松柏的脂香味,一枚不大不小的印章盖在上面。我感到无比的疑惑,(这年头谁还写信啊)在这片生存都困难的死地中,何人还有这写信的闲情雅致?更别提把一封精美的信件送给一名除了这间房子外几乎一无所有的落魄流浪者了。

无比精美的信封就这样格格不入地躺在我破旧的,停电的寒冷小屋中,在我那缺了一条腿的矮桌上,强烈的对比无声地嘲笑着这里的落魄。我的眼球转动,紧盯着这封不请自来的信件,一股强烈的好奇涌上心头,我不应打开它,我不该…

信封里面没有别的东西,只有一张精美的邀请函,卡片上用优美的花体字写着:

亲爱的:
兹诚挚地希望您能来参加鄙人举办的茶会。这将是一场令人难忘的聚会,在1820年5月13日,我们会在第13号房间共度美妙的时光。
届时,会有精美的茶点、优雅的音乐以及愉快的交谈。我非常期待您的光临,与我一同分享这个特别的时刻。

您的朋友,
路易斯太太敬上
1820年5月10日


怪了,不认识的名字,也没有确切的地址,这个"13号房间"也弄的人摸不着头脑,而且现在已经都2024年了,这上面的时间与今年已然相差了整整204年,不会是有人恶作剧吧。

我的鼻翼翕动,一股厌恶感油然而生,又不免觉得有些想笑,作恶者真是费事又费财,一个恶作剧用这么高贵的信具,是想表达高高在上的他对我们这等人的愧怍吗?还是想要来耀武扬威呢?

我穿上大衣,收好信件藏在口袋,大步流星的走到门口,心里已然下定了决心——我必定要找到这个无聊而又可恶的人,就算掘地三尺,我一定要当面“感谢”他,感谢他给我“送”来了这么好的东西。就如此想着,我打开了那扇已然多年未走出而落满灰尘的大门。



门外的景象令我大吃一惊:世界破碎,四处散去。四周的色彩,碎裂在虚空中,如未干的油画颜料,丝连着丝,片倚着片,后头传来窸窸窣窣低语,脚步声急匆匆,散去又聚拢。这时,有东西推了我一把,我一个哧咧便向前倒去。

……

回过神来,我已站在一个笔直的宽阔长廊里,地板上铺设光滑的大理石,上面画着各种精美的爱奥尼柱式几何图案。两旁的墙壁下半部分粉刷着养眼的天蓝色,与上边白色部分的接壤处平直丝滑,看不出一点儿小瑕疵,连墨线在上面弹过的痕迹也见不着一处,每隔一段距离,便有一道散发出檀香味的木门框在墙上。墙壁之间,深色的大理石立柱上镶嵌着金色的蜡烛架,拱顶上垂下的水晶吊灯将烛光折射出五彩的光芒,其上还挂坠着几颗硕大的钻石,显得晶莹剔透,繁华的场景冲击着我的视觉,使我一阵恍惚。

这一切都不同了!原先熟悉的楼梯间恍然间竟变成了这般模样,着实令我狠狠吃了一惊。我环顾四周,纯白色的墙壁上部,还悬挂着一些肖像,画中的人物各个身着盛装,或坐或立;画作的色彩鲜艳,但画中人的面容却看不真切,如颜料融化般糊作一团。盯着这些略发诡异的画像,一股难以言喻的亲切感却笼罩在我心头,挥之不去。走廊深处,一阵微弱的小提琴声传入耳道,吸引着我向前。

推开一扇又一扇木门,向深处走去,走廊的装修也变得愈发奢华,装饰用的金线从地板爬上墙壁,构成一个又一个繁复的图案;立柱和拱顶上,各种花草纹饰的雕刻渐渐浮现。走廊的尽头,一扇不起眼的小门出现在我眼前,门上纯金的铭牌刻着“13”,门后传来悠扬的提琴声和淡淡的茶香,我整理了一下衣领,缓缓地打开了13号房间的门。

…..



房间内,晚霞透过三扇巨大的落地窗照入室内,将铺着白色瓷砖的地板染成一片火红。房间中心的茶桌上,摆满了各式茶点和红茶,一位一身黑衣,戴着厚面纱的妇人正坐在桌前,等待着她的客人。

“你来了,孩子,”一道温柔的声音直接出现在我的脑中,“坐下吧。”我不由自主地向前走去,坐在路易斯夫人的身旁。桌上,一杯刚沏好的红茶散发出阵阵香气,冲击着我的鼻腔,她示意我喝上一口,我便照做,那茶的味道十分甘醇,闭上双眼回味无穷,我简直感受不到舌头的存在了。

“可怜的孩子。”夫人摘下右手的手套,修长而纤细的手指缓缓抚上我的脸颊,语气充满悲伤和痛心:“他们就是用这种拙劣的把戏蒙骗你的?就这么让你认为你是他们中的一员?”

我想开口说话,却发现根本张不开嘴,我的五官仿佛被凝固一般无法移动,我无法睁眼,却能看见她的手轻轻抚过我的面庞,一股强烈的疏离与厌恶感涌上心头。

“这只不过是一种虚假的束缚,本不属于你的束缚,他们仅仅出于一己私欲,仅仅为了“正常”,将你变成这样。”手指轻轻点着我的鼻子,可我完全没有任何知觉。“长成他们的样子,认同他们的行为,遵守他们的繁文缛节——但这些从一开始就是骗局,你永远不是他们的一员。”夫人的声音夹杂着愤怒,她猛地收回手,扯下了头上的面纱。

她没有五官。


尾声


我醒了,还躺在我家的门口,脸上悄然已经渗透了血迹,一种痛彻心扉的撕裂感袭来,我不由得摸了一下脸,只摸到一块块如颜料般溶解的肌肉,很快回想起那些作为“人”的可笑日子,杀戮的本性不自觉回到了我的身体,血不断滴落,脸上的伤口不断扩大,这时,一队军队冲了过来,试图将我就地正法,在嘴巴消失前,我意味深长地冲他们笑了笑。

因为我看到,他们之中有些“人”,五官也正在溶解,似乎某种东西即将要觉醒了,这时,伴随着痛苦的哀嚎,枪声乱响,几颗子弹击中了我的身体,我被惹怒了,站起身来,抹了抹光滑脸庞上的血迹,朝着他们之中猛扑过去。

……

紧急新闻

(枪声、电磁声)
现插播一则紧急新闻,据前线记者报道,近日,大量基地和前哨站及其他流浪者聚居地出现大规模流浪者实体化事件,截止到目前为止,伤亡人数或者实体化的人数尚在进行统计。据专家表示,这些实体化的流浪者多数将转化为无面灵,推测变异可能是感染某种新型病毒所致,但具体原因尚未得出。专家建议,流浪者外出时请携带必要武器,并及时做好个人清洁工作,目前M.E.G.正在全力应对,请大家避免不必要的恐慌。
后室广播电视总台






史密斯博士,哦,不,战争犯史密斯·韦德,请原谅我不得不这么叫你,你得为你自己所犯下的错付出代价了,明天一早你就要去行刑了,临走之前还有什么话就快说吧。

药效已经失效了吗…怎么可能呢?怎么可能药效会失效?我明明试验了那么多轮,不可能的,一定是你们中间出了什么差错,前期实验结果还好好的,怎么会搞成现在这个样子?


可不管怎么说,失败了就是失败了,就是因为你,当初要想那些馊主意,非要搞一个什么药剂,你可真是异想天开,你真是幻想着流浪者能和实体和平的过几个世纪吗?做你的春秋大梦去吧!



脚步声走开了,只剩下牢房里一个衣衫褴褛的中年男人沉默着发呆,嘴里一直呢喃:“不可能的,怎么会失败呢…真是说笑,只要施加一定的化学药剂就一定能够转化的,一定是剂量不够,一定是这样的,一定是的!一定!”,男人突然歇斯底里起来,疯狂拍打牢门,几名士兵不厌其烦,他们早已经受够这个疯子了,要不是这个疯子的“杰作”,他们才不用佝偻着身子待在这阴暗的地下城里。

随着几声枪响,除去地上的一具陌生尸体和一滩血迹之外,仿佛一切都不存在了,又仿佛曾经存在过什么一般…


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