YHN-KHE-0108
: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 }
评分: +1+x
%E5%8D%8F%E4%BC%9A%E6%A0%87%E8%AF%86.png

项目编号 YHN-KHE-0108

项目名称 轩辕剑

项目等级 LIMITATIONS

归档人 Dr.济


收容措施

由Dr.济制造YHN-KHE-0108仿品,该仿品存放于“Site-玄”的保险柜中,对外将其宣称为已失效异常,同时记录YHN-KHE-0108的文件已销毁。YHN-KHE-0108本体被存放于Dr.济办公室内的隐藏收容间,收容在高3m,半径1m的真空罐中,真空罐内部配备微型现实稳定装置1与微型反重力装置2,每周一次由Dr.济对该收容设施进行检查维护。

简介

发现过程

在协会对玄门遗迹的初次科考中,协会委派的第一期调查团在进入玄门遗迹后集体失联,故此协会为减少不必要损失,启用了Dr.济作为“玄门遗迹挖掘计划”的最高领导人,并委托Dr.济对第一期团进行施救工作。在Dr.济进入玄门遗迹后,根据其能力,探明并前往了第一期团所在地,发现第一期团人员全部死亡,经过Dr.济初步尸检发现死亡人员所受创口深度、位置完全相同,最终死亡原因完全相同。根据现场调查Dr.济就此确定了前玄门异常“轩辕剑”原玄门收容以失效并且将其回收。在Dr.济完成对轩辕剑收容后,将其确立为“Site-玄”站点最高机密,所有了解第一期调查团相关信息的██级别以下人员全部进行了记忆删除,并且植入了YHN-KHE-0108在站点初就存在,并且已失效,档案记录销毁的虚假记忆。

项目描述

YHN-KHE-0108为剑形全长1.32m,重达1600kg,YHN-KHE-0108外观整体呈狭长形,剑身长约1m,宽约4.8cm,刃口厚度为0.3nm。剑身中部略微凸起,两侧平滑,剑柄与剑身无焊接痕迹。剑身材料未知,据玄门档案记载该材料为“轩辕神铜”,剑身表面呈现出独特的金黄色泽,据现代仪器检测发现剑身表面完全光滑,疑似为强互作用力材料,剑身表面经过特殊处理,正面刻有日月星辰图像反面刻着山川草木图像,剑柄长约32cm,纹理香气类似紫檀木,木质温润细腻,外包皮革,据检测该皮革材料源自于YHN-KHE-0132的同种生物,上用甲骨文书写农耕畜养和治理国家的方法,剑柄尾部悬挂着四根银色剑穗。YHN-KHE-0108的剑身靠近剑柄处,刻有一行字符,该字符含义未知,据Dr.济解读该字符内容为:“集众生力,辟邪驱魔,天下安宁。”剑鞘约为1.08m,内有剑格。经测定YHN-KHE-0108无法以任何已知方式破坏。

能力简介

YHN-KHE-0108能够对以其为圆心范围半径500m的生命体进行标记,被标记的个体在外物理表现将会趋同,具体表现为:当被标记的某一个体受到损伤时,所有被标记的同种族个体将会在身体的相同部位造成同等严重的伤口,不同种族生命体遭受的损害程度与该个体的大小呈正相关,损害出现位置不定。脱离异常能力影响范围后标记依旧生效,暂未发现标记人数上限。

当YHN-KHE-0108标记的数量达到██后,将剑身插入剑鞘,除YHN-KHE-0108持有者以外的被标记个体将会立即死亡并以肉眼可见的速度分解为能量体,最终会聚至YHN-KHE-0108处形成一个人形能量聚合体3,该个体存在一定智能与自我意识,但会无条件听从YHN-KHE-0108持有者的指示,YHN-KHE-0108-1的强度与标记个体的数量成正比,暂未发现YHN-KHE-0108-1的强度上限。

附录






























































以下内容受高维事物影响,请酌情观看

Dr.G:“喂喂喂……我说你这是怎么了的……怎么突然变得那么不像你?是不是之前玄学的那些东西研究多了入脑了还是鬼上身了?罢了罢了,都说坏掉的东西拍几下就会好。你等着,我去给你找根棒球棍过来……”

Dr.济:“并没有,我想了很久很久,我不会被什么异常影响到,你也是知道的,那里需要我,我已决心赴死。”

Dr.G:“喂喂喂……你不会说的是真的吧?…这种玩笑太无聊了,下次别开了,好吗。我知道你是不会去这样做的……哈?什么叫做”我已决心赴死”?隔这还玩我呢?听~话~不要去想那些有的没的,管那么多你还不如这周末帮我去联系陕北那边的站点,或者是多多研究你那些什么古老的玩意……哈?你说你没开玩笑?真的假的?(用手摸额头)也没发烧哇……净说什么蠢话呢……你去死了谁来帮我去完成KPI?好好活着,你对我的用处还是很~大~的~呢~哈哈~”

……

某研究员:“G博士,Dr.济确认死亡了,这是他留给你的信”

Dr.G:“哈?!你说那个老家伙死了?!又在开什么国际愚人节玩笑呢……以那个老不死的玩意的身手,怎么可能会死……你说你没说错?那个老壁灯真的死了?……md…怎么突然就死了啊……东西还没弄完就丢下我了……还说着什么”陪伴一生一世的”……连一声道别都没说…(轻微抽泣)…你死了我东西怎么办啊……月底的KPI我找谁帮我冲啊……tmd……早知道不答应了…”…现在……又失一棋……看起来…计划需要改变了……(小声)
Dr.G:(强忍泪水)……知道了,下去吧……信给我看看吧。”

Dr.济的信(遗书)“我一直都知道你的谋划,我不是个笨蛋,你也知道的,但是我还是乐于去为你而实施它,只因为是你,为了你可以是千千万万遍,很高兴能在我漫长的岁月里认识你这个孩子,这是我此生最为快乐的一小段时光,违背了我的誓言实在是抱歉,很遗憾余下的路不能陪你一起走了,请原谅我的不告而别,但是为了你,为了未来我必须这么去做,有缘再见吧,说不定再下个纪元能够再次重逢。”

信纸随着眼泪从Dr.G的指尖滑落,没入壁炉的火光之中,就像他从未存在过一样。



“死了?”鱼放下手里的报告,看不出来有什么情绪波动,“谁知道是真的死了还是恶作剧呢……诸如此类的话总是能听见很多次唉。”

“嘛,帮我请一个假吧,我去买点花参加哀悼会。”



“谁?那个家伙能死?”Miss博士从文件中抬起头,不可置信的看着向她汇报的下级。

“你认真的?你真的认真的???”Miss使劲摇着下级的肩膀,不可置信的看着他。

“事实确实是这样,我也很伤心……但是Miss博士,你能不能不要摇我了。”██推了推Miss的手,向后退一步。

“对不起……但是…为什么……为什么会这样……”Miss捂着脸痛哭,怕眼泪打湿文件,边哭边蹲到了一旁的角落,抱着自己安慰。

“呃,Miss博士?”██下属知道自己的上级是一个感情丰富的人,毕竟还年轻嘛,这很正常。但是她从来没有看见她哭成这样过。

过了一会,Miss博士摸着还在不停滴落的眼泪,站起身来,她看向██询问道:“追悼会是哪一天?我请一天假。”

追悼会后,Miss博士依旧不停的完成工作,只不过在好长一段时间内没有伪装成下级骗人了,其他人也看出来Miss博士是真的非常伤心。

大家然后默默传出一个不成文的规定,那就是是不要和Miss博士提济。

但规定总是有人不愿意遵守的,有人不信邪的学济叫一旁路过的Miss博士小妞博士。Miss博士一个回头就是一拳,看见对方的脸的时候愣住了神,然后止不住的掉眼泪,没有搭理这个人就回自己的工作室了。于是这个人在之后上班的时候同事瞧不起了,毕竟谁会喜欢开死人玩笑的人呢?



滴滴声响起,是定时闹钟,汤显和缓缓拍下闹钟,揉了揉眼眶,看着面前的报告,纸面上还沾着旧时的血渍,又是一次异常突破收容,死了,很多人。

眼睛里都是血丝,监控二十四小时运行着,将整个站点连同他自己一同反馈给他,汤显和已经很久没睡了。

铛铛的敲门声响起,特制玻璃的磨砂表面隐约可以判断人形,“请进!”

陈璐推开大门,“师傅,您的第三方信件,还有,总部有一条特殊提示消息记得看。”说罢急匆匆抱着汤显和桌上的文件转身离去,汤显和没有阻拦,他们的事情都很多。

伸出二指夹起信封,暴力的撕开,白纸上只有一串日期,汤显和皱了皱眉头。

拽来一台电脑,登入官网,通过身份验证后看了起来。

短暂的阅读很快结束,汤显和思索了一下,瞥了一眼监视器,提笔写了起来。

许久不见 你好 见字如面……
……
我时常和别人开玩笑,说我认识一棵,银杏树,说的倒也没错,如今更是证明了这一点,薪柴和巨木相差无几,年轻之时便应当知晓一些事实。
……
我从未想过使用举目无亲来形容一个人的寿命,时间平静的扫去历史的碎隙,将一切深埋于土地的宝物展现出来。连同他的本质和信念,质疑在此刻一扫而空,也不知道是幸运还是不幸,我倒是觉得,这是一种不幸了……
……
我不会给死人立下墓碑,墓碑是为了纪念,但只要尚未被人遗忘,便是一种纪念了。
……
仿佛那古老的刻舟求剑,年少不可得之物,老了也不能得到,最终将困顿一生,汝生就于山野间亦要回到山野里去。
……死亡不见得比生存更加容易,但我的死亡尚未到来,我还在期许它吗?不知道,但在我死之前,这种感觉恐怕会像日升月落般,亘古日久。
……
我种在山上的银杏,绿叶又黄,黄叶又落,又是一年。”




得知Dr.济死讯的Dr.Wen从桌案上抬起头来木讷了一下,“也许,这是件好事?”(意味深长的苦笑)



“…我知道了”影博士在收到这个消息后并没有做出什么反应,事实上,在她收到这个消息的时候,已经是几日后了,她在实验室忙的夜以继日,以致于没能及时通知到她

虽然曾经济博士和她开过很多类似的玩笑,但是这次她并没有质疑这件事情的真实性,只是破天荒的从实验室里走出来了一阵子,随后再次投入到了她的实验当中

“所以我就说啊,人类总是会带有多余且泛滥的情感,真的…很讨厌啊…”



米迦勒抬起头,脸上依然没有表情波动,他只是吩咐助手在他的葬礼那天去送了一束百日菊。

太阳沿着亘古不变的轨道落下,又将在某个朝雾弥漫的地点升起。

米迦勒看着夕阳,金色的短发发出柔和的光,说了一句:“一路顺风”,转回头来,他的影子披着闪耀着的尘埃,逐渐拉长。

……

……

……



此时YHN-KHE-118已被收容█年以上。

“济叔叔?死了什么的……什么嘛,谁让你们这么说的呀?他那么厉害的人肯定是去别处玩了呀~既然叔叔他先离开这里了,就说明他不是我家的大神,那就,那就可以……就可以……(声音逐渐低下去,背过去擦擦眼泪后又转过来,微笑着)就能好好地代替大神祝福他了呀,诶嘿嘿~放心吧,叔叔以前就嘱咐我要多笑一笑,我会听话的!”

话虽如此,这一天负责清洁的员工发现一向胃口很好的YHN-KHE-118竟然剩了饭。

“叔叔他真的不回来了吗?他之前答应要给我讲故事,才刚讲到玄奘西行呢……我想他了。”



“呐我说,谁散布的假消息,他*的活腻了吗?(指骨捏得咔吧响)到底是谁……不是假消息?协会确认的死亡报告——咳咳咳!!谢谢你,我知道了。”说完后,嘉迅速离开了。

大约三个小时后,嘉因为无故翘班和工作时间酗酒被处以警告,以下是他在思过室中的发言:

“不过是变回原样罢了,你们以为我是为了什么才努力工作?你们以为我又是为了什么才去接触那些要命的异常?!就因为那个人在,我这辈子头一次有了活着的概念。我不承认,那可是Dr.济!不是你们这种凡夫俗子可以比的!给我手枪!他不在这里,我要去找他啊!!”

经过奋力阻止,嘉没能开枪。鉴于Dr.济平时的确对大家产生了深远的影响,再加上嘉调查员一直以来严谨的工作态度,协会决定不解雇嘉调查员,但下不为例。



“我知道了。”

Douglas Smith不敢相信回应竟如此简短无情,以他的印象两位博士的关系分明还算不错:“过几天会有追悼会,您要去吗?”

“协会不会因为一个博士就停止运作,我也一样。那天你可以调休。”

……

“稀客。”老板冲着来人招呼道,“看来今天是个特殊的日子,喝点什么?”

“另一位应该还有酿米酒的习惯吧?上一碗。”

老板看着灰发博士,然而后者在吧台前坐定后就不再言语。于是他只好折进后厨;过了好一会,待到他端着碗挪出来时,却见这位博士已经又投入到文件的审批工作去了。

瓷碗在空中顿了顿,终于迟疑地落在Raphmandas的右手边。酒液在昏暗的光线下笃定地荡漾着,慢慢沉静下来,等待一位不会再光顾的客人。



希路卡将一只已经死去的碧绿色蜻蜓丢进面前的坑中,坑上立着一块简洁但被精心打磨过的的白色花岗岩墓碑,上面刻着三个字。

济道长

“花岗岩象征着永恒与稳固,而你…”

希路卡没有说下去,只是重重叹了口气,在一片白色的墓碑中,他的黑色是多么的显眼。

我期待我们的再次相识



“他死了?走在我前面?”青提听到这个消息后表情一瞬间的愣住,然后很快变回了平常那种淡漠。

“嗯……真是意料之外啊,我会在清明给他上坟的,默哀。”说罢,青提摆了摆手,身形微颤的离开了此地。

不久之后,青提使用17回到过去时间线尝试改变这个结局,但因为各种原因屡屡失败。

什么都没有发生,什么也不会改变。

“……原来是无法改变的事实吗?”青提有些悲伤的喃喃自语,看着胳膊上的0017,然后坦然接受。

Dr.济的留言:“我不能重蹈上个纪元的覆辙了,不是吗?让那些孩子送死我做了无数次,现在该轮到我了,为了未来我早就做好了这次准备,有缘再会吧,xitiya~”

“祝愿你……幸福归来。”

后续██在询问青提这个话题的时候,青提疑惑的看着对方,然后敷衍了几句就拒绝交谈了。青提把这段记忆埋藏到了记忆的深处,在她未完成她的目标时,她杜绝了一切感情相关的影响。

(ps:17的异常档案名是,祝愿你幸福归来)

……

……

……



……

腐朽的剑插在苍茫的大地上,而剑的主人,早已不见踪迹。

不管枝丫如何分化,最终都会统筹至一处,化为虚无,这是命定的未来,济,这便是清为你从最开始就定下的,创造之初定下的,既定的未来。

———观星(心)



我早就准备好了,从我诞生之初就是如此,我已在路上,纵死不悔,用不着关心我啦,我早就准备好了

———金蝉氏




























































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