爱丽丝梦游仙境综合症(AIWS)
: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 }
评分: +17+x

“你是想成为花间自由的蝴蝶,还是被钉在木框中的标本?”

眼前的女孩年纪明明比我小,眼中的金色光芒却无比坚毅。

那日一早,本应来到我房间的护工妈妈并未如期而至,取而代之的是两个小小的不速之客。

一扇木门突然凭空矗立在我的床前,娜塔莉和小伊切尔从中走出,可以看到门的另一边是娜塔莉的房间,以及倒在房间里的另一位护工妈妈。

“跟我走吧!”

伊切尔的声音极具魅惑力,不禁让我想起了失踪已久的小爱夏。她一只手牵着娜塔莉,另一只手向我递了过来。

蓝天,白云,草地,花海……伊切尔将外面的世界描述的极尽美好,使我情不自禁的想将手搭上去。我本没有勇气踏出这狭小的囹圄半步,但伊切尔那瘦小的身躯此刻如万丈山岳般可靠,在手指接触的瞬间,我感觉到一种勇气如电流一般瞬间遍及全身。她紧紧的攥住我的手,带着我和娜塔莉走出了房门。

紧闭的金属大门被轻而易举的推开,房门外躺着我的护工妈妈,她的身体已经被泡的肿胀,不明的液体从她的口中流出。看来她再也不用担心我有没有偷偷跑出去了。

娜塔莉的能力不能去到她没见过的地方。伊切尔想带我们寻找存放有照片的档案室,在那里,娜塔莉能把门连通到所有照片中记录的地方。

前往档案室的路上竟出奇的顺利。那刺耳的警报从未响起,也鲜有人阻拦,唯二被我们碰到的倒霉蛋也都被伊切尔随手淹死。

档案室的铁门出现在我们面前。在我眼里,这些门总是那样的高大、厚重,让我丧失推开它的勇气。

毫无疑问,门上着锁。伊切尔转头示意娜塔莉,后者怯生生的上前,眼中金色光芒逐渐闪耀,随着一阵光华璀璨,一道低矮的木门被凭空开在了厚重的铁门上。

虽然这不是第一次见到娜塔莉开门,但我心里还是无比羡慕这种能力。至少比我这种把怪物变成布偶的恶趣味能力要强多了。就是不理解明明拥有这种强大的能力,怎么还会甘愿被困在囚笼里?

借着门缝间透过的微弱光线,我们不停翻找着档案。最终,伊切尔的手指停留在一张花海的照片上,其上的编号是Level AS-60

娜塔莉用手,摩挲着照片,似有一颗泪水滴落在档案上,发出“啪嗒”的声音。旋即,一阵金色光芒闪耀在娜塔莉身后,一扇白色的木门从中凭空出现。

我也曾幻想过这样的场景。我摆脱了满是布偶和娃娃的囚笼,徜徉在无际的花海间。此时,带着我逃离囚笼的两名少女正在花海间嬉戏。夕阳的余晖挥洒在少女的裙摆间,似乎将美好定格在这一瞬间。

但是……

一种莫名的违和感自此间油然而生。

仿佛我仍身处在漆黑的档案室,看着在照片中嬉戏的两名少女。

而伊切尔仿佛也注意到了什么,转头用同样疑惑的眼神看着我。只有娜塔莉仍在自顾自的玩耍着。

随后眼前的景象如同潮水般褪去,留下的只有沉重而压抑的黑暗。渐渐的,光线在黑暗的画布上汇聚,我眼前的视野逐渐清晰。

我看到我们正身处一个朴素的房间中,伊切尔被两名黑衣人死死的钳制在地上。房间的床上,一位身着素裙的少女正盯着我们,嘴角露出玩味的笑容,仿佛是在看马戏团小丑的表演。我认识她,她是爱莉希雅,是最接近爱丽丝的人。她的脚上拴着脚镣,脖子上带着电击项圈。她比我们中的任何一个人都更像是这里的囚犯。

而她的床边站着一个瘦长的身影,留着山羊胡子,脸上带着厚的夸张的眼睛。是这里的院长,此时正冷漠的盯着我们,眼神如同毒蛇。

看来,娜塔莉并没有将我们带去Level AS-60,而是带到了爱莉希雅的房间里。

“为什么!”

被按在地上的伊切尔冲着娜塔莉怒吼,却见她目光呆滞,神情恍惚,竟仍似徜徉在那虚幻的花田中。

“是你!”

伊切尔冲着爱莉希雅吼道,且试图使用她的能力。但回应她是漆黑的电棍。

“把米莉安和娜塔莉送回房间。”院长用阴冷的声音命令道。

我被黑衣人拽着带出了房间。在最后隐约听到了院长最后的命令。

“这个伊切尔,没什么用了。拉下去处置了。”

我知道,院长让我和娜塔莉活下去,仅是因为我们还有用

不为人知的后续

“ 这些爱丽丝,凡是想要逃跑的,都会去找能自由穿越切行的娜塔莉。但我早就让爱莉希雅在娜塔莉的脑中植入了‘保险’。可怜的娜塔莉,还天真的以为自己是拯救了很多人的英雄。”

院长的脸上透露着阴险的笑容。同时手又不断揉搓着爱莉希雅的秀发。

“你让我做的事,我都做到了……”一个娇柔的声音打断了院长的夸夸其谈,“你答应我的,什么时候实现?”

“爱莉希雅,你也知道,现在‘神之灵柩’仍然极其不稳定,不让你进去是担心你出现危险。”

“是担心我发生危险?还是舍不得你们的夏娃?”

“爱莉希雅,这都是组织的决定。希望你不要让我为难。”

说着,院长晃了晃手中的电击项圈遥控器,言语中满是威胁的意味。

“院长啊院长……”爱莉希雅如汉白玉一般的双臂轻柔的环抱住院长的脖颈,气若幽兰。“你知道的,凡是我想得到的东西,我都会为之付诸一切手段。”

院长只觉汗毛倒竖,一把将爱莉希雅推开,却发现自己手中的遥控器不翼而飞了。而爱莉希雅却在床上把玩着遥控器。

“没用的,爱莉希雅,拿到遥控器也解不开你的项圈。”

院长看上去仍很冷静。

“你怎么能确定……”爱莉希雅转头转向院长,金色的光芒在瞳孔周围流转。“项圈真的戴在我的脖子上?”

院长的神色顿时大骇,只见爱莉希雅缓慢的抬起无暇的手指,轻轻的按在遥控器红色的按钮上。

电流声瞬间响起,但不是在爱莉希雅的项圈上,而是在院长自己的脖子上。院长立刻倒地不起,失去所有行动能力。

待电击结束,院长已然失禁,秽物流了一地。在看爱莉希雅,她的脖子上哪有什么项圈,脚镣也消失不见,就连面容特征都与之前的不同。

“既然你不愿让我使用‘神之灵柩’,那我只能自己去取了。”

“爱丽丝……总会从梦中醒来,即使……使用‘神之灵柩’也是徒劳。你想……永远的保留自己的能力?呵呵……呵呵哈哈哈哈哈……”院长含糊的回应道,“痴心妄想!”

“是不是痴心妄想,试一试便知。”爱莉希雅蹲在院长身前,如神明般俯视着他。“再告诉你一个好消息吧,我把这座设施的情报,都透露给M.E.G.安插的间谍了。我想他们很快就会赶到这里了。希望到时候你能恢复行动能力。”

爱莉希雅冲院长露出一个灿烂的笑容,院长的面容极尽狰狞扭曲。

“我会在他们到达之前带走‘神之灵柩’和娜塔莉。至于米莉安,我能看出来,她的能力已经快消失了。即使M.E.G.不来,这里的所有人也都会被失控的实体撕成碎片吧……呵呵。”


返回文档

声明:本文档所有实验数据均来自缴获的U.E.C.实验数据。M.E.G.从未进行过任何非人道的实验。

现象编号 AS-9

等级 4

分类:类疾病现象

区域:特定群体

形式:精神影响与现实扭曲

描述

爱丽丝梦游仙境综合症(简称AIWS,即“Alice in Wonderland Syndrome”)起初仅被认为是一种罕见的眼疾或者精神疾病。其症候表现为:在日常生活中,患者眼前场景会突然像爱丽丝漫游仙境一样,或置身于奇幻的场景中,或凭空出现一些奇异的事物。患者对外界的刺激会变得迟钝,仿佛精神已经置身于另一个世界。这种状态一般会持续3~7天,而镇定类药物可以强行使患者清醒。

该病症被冠以“爱丽丝漫游仙境”之名的另一个重要原因是,仅有年幼的少女会患上AIWS。患病少女通常表现的异常瘦弱,或发育迟缓。但这一病症会随着年龄的增长而逐渐痊愈,一般认为,患者的乳牙全部脱落且被恒牙代替后,AIWS的症状也会随之消失。

2017年8月到11月期间。M.E.G.在线人的情报下,有组织的捣毁了一张由U.E.C.主导的巨大的犯罪利益集团。其中就包含有民间组织埃森罗森慈善基金会以及其旗下的埃森罗森儿童收容所。M.E.G.发现该民间组织长期得到U.E.C.的资助,并打着慈善的幌子“挂羊头卖狗肉”,协同U.E.C.做了很多惨无人道的实验。其中就包括在埃森罗森儿童收容所AIWS患者做的大量人体实验。

埃森罗森儿童收容所内缴获的一张通知便签:

通 告

实验体伊切尔(编号:Ailce#009)已证实为近期多起溺亡事件的元凶。她谋害了包括她的主治医师和护工在内的十余人,并联合实验体米莉安(编号:Alice#003)和实验体娜塔丽(编号:Alice#007)尝试逃离研究所。现三只实验体已被控制。责令负责人立即将9号实验体处理掉,并加强3号与7号实验体的监管。这两只实验体对我们的研究至关重要。

UEC

圣域之手
TK

“爱丽丝”特有的瞳孔特征

在拿到并整理了U.E.C.在埃森罗森儿童收容所所有的研究数据后,M.E.G.将爱丽丝梦游仙境综合症认定为一种现象,原因是该病症的患者,有较小的概率获得一定的现实扭曲的能力。获得特殊能力的少女在生理上表现为瞳孔会发生不自主的震颤,且瞳孔周围会闪烁金色的光圈,脑电波会出现不同程度的紊乱,以上特征在使用能力时尤为明显。

从残存的资料判断,每名觉醒特殊能力的少女,其所获得的能力各有千秋。U,E.C.的研究资料显示,自埃森罗森儿童收容所成立以来,从数千名孤儿中仅培养出447名患有AIWS的少女,而其中仅有10人获得了现实扭曲的能力。这些获得特殊能力的少女被称为“爱丽丝(Alice)”

目前已知爱丽丝的详细名单:
Alice#000:神之灵柩—夏娃
Alice#001:仙境幻梦—爱莉希雅
Alice#002:星辰造物—温蒂(已处置)
Alice#003:玩偶匣子—米莉安
Alice#004:绮罗花园—卡洛琳(已处置)
Alice#005:黑白世界—格蕾丝(已处置)
Alice#006:魅魔之躯—爱夏(已处置)
Alice#007:梦境迁跃—娜塔莉
Alice#008:失败之作—米娅(已处置)
Alice#009:水之妖精—伊切尔(已处置)

遗憾的是,与这10名爱丽丝相关的研究资料绝大多数都被U.E.C.销毁,M.E.G.仅在埃森罗森儿童收容所中解救下米莉安一人,并在一个安装有焚尸炉的建筑中找到了伊切尔还未被销毁的遗体。其余三名未被处置的爱丽丝们皆不知所踪。目前仅整理并公开以下资料:

收容档案:米莉安

M.E.G.新希望孤儿收容所入院体检报告单

MLA

米莉安

一、基本信息:

日期:2017年11月26日

姓名:米莉安

性别:女性

年龄:13

身体状况:健全

精神状态:精神萎靡,需要进一步进行精神评估。

既往病史:不明


二、体检结果:

身高:1.42m

体重:37kg

血压:116/72 mmHg

五官:
眼部:瞳孔周围存在暗淡的金色光圈。
口腔:最后一颗乳牙已脱落。
耳鼻喉均正常。

血常规、心电图均无异常,但患者对医用针筒表现出强烈的恐惧,且抽血过程中陷入晕厥。在患者双臂处发现大量针孔。


三、精神评估:
患者患有轻微的自闭症以及抑郁症,同时伴随有严重的晕血症。


在与米莉安的日常接触中,我们得到了另外三名爱丽丝的部分信息。

伊切尔:

  • 特殊能力为能操纵人体内的水分。
  • 在M.E.G.剿灭U.E.C.行动开始前不久拉拢米莉安娜塔莉实施越狱,失败后被注射大量镇定剂致死。

娜塔莉:

  • 特殊能力为可以凭借想象创造出能任意切行的门。
  • 同样参与到越狱行动,失败后遭U.E.C.禁闭。
  • 在M.E.G.剿灭U.E.C.的行动中尝试带领U.E.C.高层以及其他实验体离开埃森罗森儿童收容所所在层级。但不知为何,似乎仅有娜塔莉本人成功切出,其去向未知。

爱莉希雅:

  • 特殊能力为可以悄无声息的让人陷入幻境。
  • 与U.E.C.存在某种合作关系,会主动为U.E.C.提供帮助。
  • 导致伊切尔三人越狱失败的直接原因。
  • 目前下落不明。

AIWS患者觉醒的特殊能力也会随着年龄的增长而逐渐消失。M.E.G.执行剿灭计划之际,恰逢娜塔莉最后一颗乳牙脱落,AIWS的全部症状以及特殊能力全部消失,以这种能力收容的实体全部脱出,并从内部瓦解了U.E.C.的防御,使得本次剿灭行动异常顺利。而娜塔莉从实体的暴乱中毫发无损的逃脱,其原因尚未可知。

米莉安讲述的一段故事。


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