Phenomenon R-12
: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 }

评分: +6+x

原名为狂化病,现更名为德尔塔氏症,又名德尔塔综合症。

目前确证病例:24人
死亡病例:10人

病因:

因为德尔塔体内的隐性基因失效带来的基因类疾病,第一例病例为德尔塔。

一般的德尔塔氏症病因为——长期接触高能级佤夕幂能物质,亦或被佤夕幂能造影攻击时,没有及时处理伤口导致的发炎;但是接触病死者尸体,甚至食用病死者尸体引发德尔塔氏症也是有可能的。急性德尔塔氏症有可能是更为严重的佤夕幂能侵蚀造成的,或者是在超高能级区域呼吸时晶体进入体内,但这只会出现于特拉弗斯陨坑附近才会发生,但发病概率极高。

慢性德尔塔氏症一般出现于高风险人群,例如老人,小孩,妊娠期内的妇女等,且具有传染性,并且无法被免疫系统得知,病因一般为——不穿防护服的情况下长期在Level R-999的地表上行动,但一般不会在慢性德尔塔氏症病发时死亡,而是死于辐射病。

在第一位因慢性德尔塔氏症病发而死之前,世界上所有人都不知道该病症会导致患者死亡。

隐性德尔塔氏症不会出现任何症状,病因未知,目前停留在猜测阶段,W.K.往空群体认为,该病症的病因是隐性基因的失效或者是基因突变,让身体能够对高能级区域迅速适应,目前唯一一位隐性德尔塔氏症为德尔塔目前尚未有隐性德尔塔氏症患者,但疑似为隐性德尔塔氏症患者为德尔塔。

症状:

德尔塔氏症(除急性德尔塔氏症外)的潜伏期约为30天,一部分在高能级佤夕幂能区域长期活动者,潜伏期会缩短至14天左右。

德尔塔氏症的症状如下:

一般德尔塔氏症早期症状表现为轻微咳嗽,亦或腹部尤其为小腹区域经过触碰会产生痛觉,体温会上升0.6至0.7摄氏度,眼睛有时会看见一些无法看见的事物,并持续一分钟或两分钟,发病频率大概为七天一次,也有部分个例为五天一次。

但早期的一般德尔塔氏症可以通过饮用杏仁水的方式缓解,但也仅仅是缓解罢了,并不能够令德尔塔氏症痊愈——也就是治标不治本。

中期的德尔塔氏症会表现于以下症状

  • 幻听,听到他人的声音,且声音中通常伴随着心理暗示,严重者还会看到模糊的黑影在眼前晃动。
  • 患者的行为会充满攻击性,手臂上会看到更多的血管,严重者手臂上会看到黑色血管,这代表着其手臂血管已经被佤夕幂能晶体堵塞,在3至7周内手臂会因输血不足而坏死。
  • 呼吸困难,头晕,总感到内心不舒服,对事物伴有攻击性,严重者会因为佤夕幂能晶体堵塞尿道无法排精排尿,而女性感染者则会使得月经异常,引发子宫癌。
  • 腹泻,呕吐时会夹杂血液,严重者还会咳出黑色晶体,芒刺等不明物体。
  • 皮肤出现变色,严重者甚至会脱皮,牙齿掉落,病变区域会出现黑色固体或流出黑色脓液,有可能在这一阶段转变为急性德尔塔氏症。

若为慢性德尔塔氏症,早期症状为食欲不振,头晕,每隔两个星期或十天会腹泻一次。

急性德尔塔氏症会在14小时或23小时内发狂,思维紊乱,手脚抽搐,在2小时内,身体内部会出现剧烈反应,耳边会出现幻听,且听到的为自己的声音,声音会引导感染者对他人发动攻击,患者体内的佤夕幂能能级会逐渐升高到临界点。

在2小时后,患者的体表会出现佤夕幂能鳞片,在一些部位的皮肤会溃烂,并从中产生新的肢体,在这个过程之中,患者会极度地痛苦,并丧失理智。

在5小时后,患者的四周会出现由佤夕幂能凝聚而成的物质,高能级的佤夕幂能会扰乱四周的时空,患者的力量会再一次攀升,又达到另一个临界点。

……

传播途径:

长期生活于高能级佤夕幂能环境中有极高概率患得德尔塔氏症,常患一般德尔塔氏症或急性德尔塔氏症,极少数为慢性德尔塔氏症。

若于患德尔塔氏症患者长期接触容易引起感染,但潜伏期内能够被杀死。


德尔塔氏症的相关信息:

对于德尔塔氏症的相关研究报告#1

研究报告人员:[已编辑]


记录时间:[数据缺失]


记录开始
德尔塔氏症(又名德尔塔综合症),第一位患者是德尔塔,根据德尔塔的口述,与我们对其他病例的调查研究,我们总结了德尔塔氏症的几大特征:

  • 德尔塔氏症会在身体的各个组织内部产生不明晶体,且会侵蚀身体组织,但在早期并不会进攻大脑,而是侧重于破坏消化系统。
  • 在中期则是会侵蚀身体的其他系统,就例如神经系统——德尔塔氏症会让患者出现幻听症状,并且不能够通过饮用杏仁水的方式缓解该症状。
  • 被侵蚀的身体部位无法通过正常手段修复,想要缓解中晚期的德尔塔氏症只能够利用超自然现象,而在死亡后,德尔塔氏症也会继续侵蚀身体,最后会成为一种特殊的佤夕幂能造影——也有可能会成为一摊含有高能级佤夕幂能的液体。

.报告结束.

德尔塔失控事件

在圣所事件结束后,W.K.往空群体前往Level R-999开始建立新的基地,而在一次高难度的任务中,德尔塔遭遇了一次意料之外的事情。

……

“这里是德尔塔,我正在最大的一个陨石坑附近,在勘测地形的途中,我与小队成员发现了一些呈现黑色且表面光滑的晶体,我的直觉感觉到它不简单,而且这附近有一些半透明的实体。”

“我在使用地质锤敲击该晶体的时候,发现该晶体异常坚硬,并且该物体附近的能量能级比其它区域的能级要高上不少。”

“德尔塔请求一部分地表行动小队来到陨坑附近,坐标125x,67y。”

“收到,空降小队预计空降时间需1小时20分钟,地表行动小队正在维修月球车,预计需要2小时30分钟到达,请德尔塔继续勘察地形。”

“好的,我将向核心区域行进。”

……

在进入到一定区域后,通讯信号突然中断,德尔塔从工具箱中拿出了维修工具,打算将通讯器重新修好,但却没有任何效果。

“真倒霉。”

……“算了,还是等什么时候通讯器自己修好了吧,还是探测地形更加重要,对了……那白茫茫的一片是什么,应该是液态水……?不对,在零下19摄氏度,怎么可能还会出现液态水……”

“我总觉得有些奇怪,但这里毕竟是后室,什么奇奇怪怪的东西都能给蹦出来,零下19摄氏度还存在液态水也没什么值得奇怪的。”

“……但这附近却没有什么实体,就连刚刚看到的那些佤夕幂能造影也不见了,而且……我好热……”

高温让德尔塔不自觉的看了一眼参数,但温度那一栏上标着的却是零下19摄氏度,“……奇怪……服装也出了问题吗……”

……“…………”从通讯器中传来了混杂的声音,声音中并没有听到人声,就像是电视无信号时发出的噪声,德尔塔继续在陨石坑中前行,“……”

……“……”通讯器中的声音逐渐清晰,但却不是人类的任何语言,德尔塔的眼睛突然像是被什么蒙住了一样,无法看清身前的事物。

突然,脚下一空……“……”大脑中一片空白。

……

“……这里是,这里是哪里?”

“……嗯?”

……

在空降部队正式来到陨坑附近时,看到了德尔塔的身影,她站立在环形山上,身上散发着高能级的佤夕幂能,这让队长感到不对劲,德尔塔的状态似乎有些问题,并且……

他看到……德尔塔在逐渐的悬浮,身旁还有着数十个黑色的立方体……“发生了什么?”

佤夕幂能的能级在逐渐升高,甚至吸引了大量的佤夕幂能造影,这让地面上的空降部队感到了深深的不对劲。

……

德尔塔再度回到了那个在记忆深处的家园,从每一棵青草到每一处河流,都与记忆中的映像完全重合,她的心中充满了回到家园的兴喜,她走在这一片熟悉的道路上,面前是清澈见底,宛转逶迤的河流。

熟悉的触感再度由手心传来,蹁跹的脚步跨过溪水,树林中撒下零碎的阳光,溪底的鹅卵石缝隙之间还能看到水草在摆动着……


人们对于德尔塔失控事件的看法

Lnsetir:
德尔塔是叛徒!

AESXIA:
德尔塔背叛了我们!

Online:
把她放逐出去!她是怪物!她在拉斯斐尔提的时候就是一个彻头彻尾的怪物!她会害了我们!

Delta:
……

行为准则:

应当:

若感染德尔塔氏症,尽量地不要前往人员较多的地方,也不要因此而惊慌失措,而是配合医护人员治疗。

不应:

不应相信偏方或幻听的声音。




































能毁灭掉一个人的事物,它在那个人的生命中有多大的重量,已经不言而喻。

能够让一个人彻底崩塌的,除了绝对的绝望,便是再度破灭的希望,她为其付出了自己的半生,但却遭到了质疑与唾弃。

她为此伤感,她为此迷惘。

她明明还有着那么大好的年华,但为什么要为其而一遍又一遍的去送死,甚至只是一个简单的骗局,就让她的心里如此的绝望,如此的悲痛?

“……我明明只是想要……想要一个机会,想要一个平凡到只要活下去的机会,我只是希望能够在远方的前厅,与他相伴,白头偕老……”

信念最开始破碎的原因,是因为那隔着的是一个不可逾越的距离。

飞鸟的自由之翼让她向往那大千世界,但蹁跹的脚步却被脚下的荆棘缭绕……

……我不管,我不管那些什么的前厅后室,明明我想要的生活只是那么简单,为什么连那么简单的要求都做不到……

……只是为了这样的安稳生活,为什么让我拿起刀,去谈论所谓的生存之道?

……只是这样简单的要求……而已啊……

…………





























































……能毁灭掉一个人的,便是告诉她,她为了她的信念所做的一切,毫无意义。



















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