: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 }
栖息地: N/A
描述:
Entity C-177也被称为黑鸟,它们是一种黑色鸟类实体,会用爪子附着在个体身上,以它们的「精神」为食,使其出现持续性的抑郁、焦虑等消极情绪。单个个体可以被多个黑鸟附着,其影响效果也会叠加。
这是对受黑鸟影响程度的划分:受影响程度 | 黑鸟附着数量 | 影响效果 |
---|---|---|
轻度 | 1~6 | 此时受影响者很难感到高兴,但对行动并无大碍。 |
中度 | 7~11 | 此时受影响者会感到明显的抑郁情绪并产生轻生的念头,同时会出现思维迟缓、目光呆滞、行动缓慢等症状。 |
重度 | >12 | 此时受影响者的大脑已因为抑郁情绪而无法正常思考和行动。 |
该实体无法通过常规方式进行观测,目前已知的观测方法:
- 中度及以上的受影响者可直接观测到该实体。
- 通过重度受影响者拍摄的图片及视频可以使所有人观测到该实体。
该实体会以未知的方式通过电子屏幕进行远距离的穿梭,为防止此实体进一步扩散,禁止任何人拍摄、传播带有黑鸟的图片和视频。
行为:
黑鸟会促使受影响者做出自我伤害的行为,新实体会从伤口钻出且不被受影响者察觉。当受影响者因自杀死亡时,大量黑鸟从他的尸体涌出,时间持续1-5分钟不等,新出现的实体会继续寻找下一个目标。
当受影响者感到快乐的时候,该实体会停止寄生,其产生的负面影响也会随之消失。但大部分黑鸟会选择继续跟随,直至受影响者不再快乐甚至伤心的时候,再进行二次寄生。除此之外,我们发现当受影响者有一些令人作呕的想法时,该实体会不停的干呕、停止寄生甚至死亡。
当黑鸟面临多个可寄生目标时,它们通常会选择更聪明的那一个,并认为思维活跃的生物的「精神」更好吃1。因此,黑鸟会优先选择人类作为目标。但如果该实体长时间2未找到寄生目标,则会直接死亡,尸体散成许多羽毛然后消失。
黑鸟在吃掉「精神」的同时也会看见受影响者的记忆及想法,所以该实体表现出超乎常人的智商,并且可以与人类正常沟通。我们发现不同黑鸟的想法、观点一致,并且一只黑鸟可以感知到另一只黑鸟所感知到的东西。以黑鸟的智商,它们极有可能已经通过流浪者的记忆知道了前厅的存在,并为了更多的食物,四处游荡并附着在聪明的流浪者身上,企图进入前厅。
由一名流浪者拍摄的黑鸟,已经过处理。
生物学特征:
黑鸟是一种未知的黑色鸟类,体长约22cm,没有重量,全身羽毛大部分为黑色,少部分为棕褐色;喙短而细,呈深灰色;它们的眼睛大而灵活,眼白呈白色;在其头部两侧各长有三组较长的羽毛。该实体具有群居意识,一般以三至五只出现在树上、房顶等高处。
我们曾尝试抓住它们以便进行解剖,但都以失败告终。
发现记录:
起初,黑鸟造成的影响被误以为是普通的心理疾病,在多次对受影响者使用药物治疗无果,以及类似事件不断增多后,我们发现了此实体的存在。
附加信息:
以下是在初步调查期间,由Gray对其中一位受影响人员所作的访谈:
附录Entity C-177-A
采访对象:流浪者███
采访者:Gray
<采访记录>
Gray:你好,你应该知道我们采访你的原因。
流浪者:你好,是的,我很清楚。
Gray:请描述一下Entity C-177。
流浪者:嗯……它们是一种鸟类,会飞,全身基本上都是黑色的,大概21~24cm长。我尝试抓住它们,但都失败了,它们穿过了我的手。
Gray:感觉最近怎么样?
流浪者:很糟糕,感觉对什么事都提不起兴趣,说实话这很痛苦,我曾一度想死。我原以为只是普通的抑郁症,按照医嘱服药,可那根本没有用。直到我尝试割腕自杀的时候,一只黑色的鸟从我的伤口飞出,我呆住了,然后我透过镜子,发现我的后背上竟有数十只相同的鸟。
Gray:我能理解,在此之前我还听说过类似的事情。
流浪者:不,你不理解。你知道当我第二天见到朋友后,我…… 发… 发现……(啜泣)
Gray:放轻松,伙计,你发现了什么?
流浪者:我发现……我的朋友背后…都有几只相同的鸟,你知道那意味着什么,我害死了我的朋友!
Gray:别这样想,你只是看见几只鸟,这说明不了什么,深呼吸,调整心态。
流浪者:但是,在那以后,他们都…… 先我一步离开了……
流浪者:这次采访就到这吧… 我有事情要做。
(当我们再次发现该流浪者时,他已自尽。)
我们在调查中发现一名愿意与黑鸟交流的流浪者,记录如下:
附录Entity C-177-B
采访对象:Entity C-177
采访者:流浪者████
<采访记录>
流浪者:你,你好……你会说话吗?
(Entity C-177歪着头盯着他)
流浪者:噢……好吧,我居然试图和一只鸟说话,真蠢。
Entity C-177:你可以问我们问题。
流浪者:你怎么知……
Entity C-177:我吃掉了你的思想,也看见了你的思想,我能知道你在想什么。
流浪者:天哪……(流浪者沉默了几秒)你们为什么要缠着我。
Entity C-177:说实话,你很聪明,你的精神美味可口,我很喜欢。不过与你同行的朋友十分的愚蠢,他们的精神难吃死了,他们都是坏人,你最好离他们远点。
流浪者:我不允许你说我的朋友![脏话],你们到底有什么目的!快从我的身上下去!
Entity C-177:由不得你。
(双方纠缠了一会儿,然后陷入沉默)
流浪者:唉,为什么我总是摊上这种坏事。
Entity C-177:聪明的人不会被愚昧蒙蔽双眼,他们总是比普通人看得更远,当他们向远处眺望时,他们会发现愚昧之外全是混沌。这也是我为什么会选择你,因为这是聪明的「代价」。
Entity C-177:有的人害怕了,他们俯首低头,他们用药物麻痹自己,让自己钻进愚昧之中,这下他们看不见混沌了。
Entity C-177:但他们也让愚昧结束了自己的生命。
行为准则:
应当:
- 远离黑鸟。
- 乐观
在被寄生时:
- 做自己喜欢的事。
- 使用吸收“抑郁”或释放“快乐”的情绪晶石。
- 迫不得已时,可采取吸毒等非法措施。
不应:
- 靠近黑鸟。
- 消极。
你好!
我是Dr.Simon,是一名研究鸟类的博士。
我知道一些关于「黑鸟」的事情。
如果你想更加了解它们,可以来Level[已编辑]找我,或者发邮件到这个地址:[已编辑]
附录Entity C-177-C
采访对象:Dr.Simon
采访者:Gary
<采访记录>
Gray:你好,我是Gray。
Simon:你好,很高兴你特地跑来见我,你知道的,这里很危险。
Gray:是的,所以请尽快告诉我关于黑鸟的事。
Simon:嗯,说实话,它们是群有趣的生物,摸起来毛绒绒的,并且我发现它们体内居然只有羽毛,很神奇不是吗…
Gray:体内只有羽毛?这并不符合生物学,但你似乎能触碰到它们,怎么做到的?
Simon:是的,很荒谬对吧,没有肌肉更没有内脏,却依然能够存活。我不同于一般的受影响者,我不仅能看见它们,还能触摸到它们,因为我和黑鸟达成了一个「约定」:以我的「精神」为代价,换取对它们的控制权。
Gray:「约定」?和一群到处伤人的实体?先生,你有没有搞错什么。如果你有对它们的控制权,那你为什么不让它们停止伤人?
Simon:哈哈,那是它们的本能,你总不能让你的孩子不吃不喝吧。况且,它们可以为我做很多事,它们即使再淘气也不会置我于死地,只要我献出一些伤口,它们就会帮助我探索层级,让一些准备害我的实体痛苦地去死,只是……
(Simon望向了Gray)
Gray:只是什么?
Simon:啊,没什么,我们回到刚开始的问题吧,你是想知道更多关于它们的事情对吧。被黑鸟寄生的生物在自杀后,尸体会像喷泉一样在一段时间内喷涌出很多的黑鸟,只可惜很少有人能看见这么壮观的景象,但我拍摄了一张照片。
Simon拍摄的图片,已经过处理。
Simon:很美丽不是吗。对了,黑鸟很喜欢高智商的人类,它们有时甚至会因为寄主太笨而转移到新寄主上去,这也为什么它们会长期地选择与我「约定」,相反,愚蠢的人到最后只会变成一瞬的喷泉。
(短暂的沉默)
Simon:(微笑了一下)过去了这么久,你不觉得你自己很危险吗?
Gray:(环顾四周)嗯?什么。
Simon:你还真是愚蠢,你从一开始就不应该与我见面。如果我能看见黑鸟,那在这周围一定有它们的存在,你现在正被无数双饥渴的黑色眼睛盯着。而这是我不得不做的,我没有选择,对不起了。
(黑鸟向Gary飞去,Gary开始恐慌,拉扯着衣服试图把黑鸟赶下来)
Gray:等等,你不是能控制它们吗,快让它们停下来。
Simon:那是它们的本能啊,就像我刚刚说的,愚蠢的人到最后只会变成一瞬的喷泉。
« Entity C-176 | Entity C-177 | Entity C-178 »