YHN-KHE-0104
: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-104

危险等级:DEATHLY

归档者:蛤蟆镜


收容措施:YHN-KHE-104暂无法收容,但已实现大规模控制,协会实验室内有「部落脑皮层危害生物武器」和「变种失控生物武器」的个体,进行医疗方式实验。且YHN-KHE-104对外进行保密,防止产生患者大暴乱和社会恐慌。


描述

66d3095cd9c307b7e95dbac0.png

YHN-KHE-104艺术病/脑前额叶皮质损伤症候群

YHN-KHE-104为一种「浮层」精神体病毒,病毒在「水面」中不可观测 ,外形为噬菌体病毒。
「艺术病」,学术名称为脑前额叶皮质损伤症候群(cerebral prefrontal cortex injury syndrome)由病毒「部落脑皮层危害生物武器」导致。
存在变种「脑变异症」,由病毒「变种失控生物武器」导致。
会改变人类大脑皮层,让人类对艺术的概念产生改变,对「部落」文化狂热盲目崇拜或对有害人类社会的艺术和观点痴迷。
YHN-KHE-104和YHN-KHE-606都为「部落」进行文化入侵的生物武器。

“艺术是一场巨大的骗局!”





【发展历史】


66d3058fd9c307b7e9532564.png

艾斯特歌剧院暴乱

66d305c0d9c307b7e95362f4.png

脑前额叶皮质层产生病变

19世纪浪漫主义时期,零号病人因艾斯特歌剧院暴乱致脑震荡,X光片显示病人脑部产生异常变化,YHN-KHE-104被首次发现。

暂不确定YHN-KHE-104具体最早诞生时间。目前最早可追究到石器时代。「壁画」「石珠」等存在证明YHN-KHE-104一直延续至今。
早期YHN-KHE-104体现对神明的崇拜,浪漫主义时期追求以人为主,YHN-KHE-103因此变异。由于YHN-KHE-104会改变大脑皮层结构,变异后改变的结构也产生变化,导致X光片发现异常,且确认曾认为正常的大脑结构均为YHN-KHE-104感染后。
根据《2024全球卫生健康事业发展统计秘密文件》统计,全球感染人数约为50万,死亡人数约为3万。

【症状】


[潜伏期]

YHN-KHE-104潜伏期通常为两周,病毒会逐步改变大脑皮层结构。

[崇拜]

早期YHN-KHE-104症状为对神明的狂热向往,且对其进行相关的艺术创作,患者产生此症状的主要原因是大脑前额叶皮质产生损伤。
患者崇拜的神明已被证明为「部落」(详情请阅读病因)。
浪漫主义时期病毒产生变异,患者对于艺术创作追求自由形式,输出不利于人类社会发展的观点。

[认知污染]

早期YHN-KHE-104神明崇拜极其病态。变异后转变为对不合理认知的推崇,对其他疾病进行艺术美化。
例如对「甲状腺功能减退症」「黄斑瘤」「肺结核」等。《梅奥诊所论文集》指出蒙娜丽莎很可能患有「甲状腺功能减退症」「黄斑瘤」「脂肪瘤」等多种疾病。且「甲状腺肿」在不同时期的名画中都曾活跃过。在浪漫主义时期,对「肺结核」标上“文雅,精致,美丽”等标签,抵制健康。大仲马曾说“患上肺病是一种时髦,30岁前因激动咳血死亡是时髦的终结生命方式”

66d30c60d9c307b7e960308d.png

《蒙娜丽莎》对疾病进行美化

[偏执]

患者对于艺术的创作欲望强烈,忽略长时间创作所导致的身体危害。
多数音乐演奏者都患有「肌肉骨骼失调症」,部分美术创造者也会有相关病症。

[精神疾病]

此症状并非病毒直接导致,对艺术的偏执会导致患者极易患上其他精神疾病。例如「精神孤独症」「艺术孤独症」等。

[天才症]

少数情况下,由遗传感染的患者极易患上「阿斯伯格综合征」也称「天才症」。「天才症」患者100%患有「艺术病」,但「艺术病」患者不绝对患有「天才症」。

[变种]

部分病毒产生变种,患者以上症状加重。变种病毒称为YHN-KHE-104-1/「脑变异症」。
例如二战女战犯伊尔丝·科赫,将人皮制成钱包,书籍封面等皮制艺术品。同症状患者例如中国西安的胡跃龙制作人皮灯笼等。


【流行病学】


[流行地区]

YHN-KHE-104全球地区流行,存在艺术品的区域必定有病毒传播。

[传染性]

YHN-KHE-104传染性极高,常年性流行,感染率为40%

【传染源】


[艺术病患者]

YHN-KHE-104为精神体病毒,无法进行生理学传播,因此传染源只能为患者。

【传染途径】


[艺术品]

YHN-KHE-104的传染源为患者创作的艺术品。在欣赏艺术品时极易感染YHN-KHE-104。艺术会刺激大脑相关区域,病毒会以相同电波形式进入患者脑中。

[遗传]

YHN-KHE-104可通过家族中患者对下一代进行传播。刚生下来的患者脑部正常,在日后的生长过程中不需要病毒,也可自然生长为畸形的大脑皮层。

[煽动]

游行,演讲等一系列具有煽动性的言语都会导致感染YHN-KHE-104

[实验室传染]

由于防护不严、操作不当和实验室事故造成感染。

【易感人群】



人类对YHN-KHE-104普遍易感,无天然抵抗力。对艺术敏感人群更容易感染YHN-KHE-104。

【疾病类型】



目前只有YHN-KHE-104和YHN-KHE-104-1两种类型,其攻击区域均为大脑前额叶皮质,个别情况会影响到前额叶皮质。两个区域均为人类大脑感受美学的重要区域,YHN-KHE-104会改变患者对于艺术的感受。

【病因】


66d315fcd9c307b7e96bf8e4.png

部落脑皮层危害生物武器

「部落脑皮层危害生物武器」为YHN-KHE-104的病原菌,是一种来自「浮层」的精神体病毒,「水面」中不可观测,利用其他异常身上的类似玻璃材料制成的显微镜可观测到该异常外形。
「部落脑皮层危害生物武器」是一种无固定颜色的噬菌体,尾部细长,是目前发现的噬菌体中最长的。头部为二十四面体。
区别于常规噬菌体以蛋白质组成,「部落脑皮层危害生物武器」的外形是以电波组成,被归为电波生物。且噬菌体是吞噬菌类,「部落脑皮层危害生物武器」是目前唯一一种吞噬人体细胞的噬菌体,推测原因为对非来自[浮层]的生物细胞视为菌体导致。
「部落脑皮层危害生物武器」在任何温度下都适宜生长,对电波敏感,目前还没有找到可杀灭病毒的电波频率。
当人类感染「部落脑皮层危害生物武器」时,病毒会改变人类大脑认知,病毒会利用脑皮层繁殖,被杀死的细胞意外会快速再生,但重新生长后的大脑会出现偏差,随着再生次数越来越多,脑前额叶皮质会大幅度改变结构。
会改变的大脑会因此产生认知偏差,产生「艺术病」症状。
YHN-KHE-104-1的病毒被称作「变种失控生物武器」。病毒尾部外形变为锯齿状,繁殖极快导致对大脑影响更快,大脑再生出的新组织也更为畸形,且「变种失控生物武器」必定会攻击颞叶皮质。

【相关检查】


[脑常规]

大脑皮层结构变化,整体较为明显,细节为出现细小毛刺,需最新技术光学显微镜才可观测到。

[血常规]

检查血液中████是否大量下降。

[脑脊液]

患者脑脊液会发生████和█████的明显变化。

「脑电波」

观察患者是否出现脑电波紊乱等症状。

「审美」

观察患者对于「部落」的文化是否出现高强度狂热性。

【治疗】



暂无有效治疗方式,存在有可能性的方式。

[电波]

观察到一些特定的电波频率可减少病毒活性,但还没发现可杀灭病毒的频率。目前发现的三种有效频率都对人体存在不良影响,无法大规模使用。

[疫苗]

「部落脑皮层危害生物武器」为电波生物,无法依靠常规方式减灭活性制作疫苗。但依靠「电波」一栏,除了杀灭的可能性,彻底减少病毒活性的可能性也存在。且有过一次来自「浮层」的不知名材质影响到病毒的情况,尚未确定该材质为何物。人体不确定是否可对此病毒产生生物抗体,但不排除脑电波抗体的可能性。

[额叶切除术]

20世纪尝试过将受到影响的脑区域切除的方式治疗,被称为「额叶切除手术」。初步观察患者进行手术后明显减少对艺术的狂热性,从而大幅度投入使用。后续发现患者实际成为痴呆,此手术被世人称为“愚蠢的”,但实际上切除额叶并不会导致痴呆,只会导致反应能力愚钝。
后续实验发现,患者再生后畸形的额叶会和其他大脑区域进行连接,导致额叶切除后其他区域功能受影响,因此导致额叶手术后痴呆病症的出现。

[舆论]

病毒在浪漫主义时期被发现的主要原因就是病毒变异,导致新的畸形大脑变化过大。原始病毒的症状主要为崇拜神明,人类依靠自我意识推崇艺术以人为主体,对病毒的生存产生极大威胁,因此病毒产生变异。
证明人的思想可以影响病毒,虽然浪漫主义时期没有成功灭杀病毒,但通过舆论依旧可以对病毒的生存环境产生影响,目前此方法被大量投入使用。

【来源】


66d3189bd9c307b7e9704910.png

《最后的晚餐》已确认为「部落」聚集

目前YHN-KHE-104和YHN-KHE-606已确认均为「部落」的生物武器。
「部落」为来自「浮层」的一种文明生物,YHN-KHE-104的主要作用为文化入侵。
YHN-KHE-104早期症状崇拜的神明均为「部落」的外形,虽不知YHN-KHE-104是何时被投入「水面」,但早期人类文明壁画,巨像等,上面的神明究竟为何物的未解之谜也因此解开。


注释:以下实验进行多次,过程及结果仅有少量偏差,因此得出结论

附录


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