: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 }
危险等级:SCOURGE
归档者:恁跌
普遍敌意:中等
智能:高
收容难度:高
现状:收容失效,正在监视
描述:项目通常表现为一棵灰黑色的榕树,但也有极少数情况会有人报告称项目表现为桃树。靠近项目可以闻到一股焚烧木材的气味。
简介:
项目目前处于西双版纳热带雨林中。最初因三名村民死亡而被受到重视。
其中一名村民曾拨打过求救电话,但很快便被挂断了。
尽管看起来项目仿佛被火烧过,但毫无疑问,它十分健康。
项目的身体组织硬度超过钢铁,难以摧毁。不同于普通的木头,项目的身体组织在水中不会浮起,无法燃烧,且温度一直保持33℃。
在项目及项目分裂体(YHN-KHE-0167-1)以其为中心半径15公里圆形范围内所有活体(包括无实体生物)机能减弱,疑似项目造成。
离其越近,效果越明显。
在能量吸收达到饱和后,项目有几率留下一株分裂体幼苗,随后用不知名方式离开(也可能是因猎物较少,无法满足需求),初步推测是利用其强壮的根,最快移速约50km/h。
项目很懒,除此之外,基本不会动。
幼苗会在2天内长成成体。
成体分裂体与母体无外观区别,但无法移动,无智慧。
项目目前已学会人类语言,能通过文字或语言进行交流,未确认项目是如何阅读文字和发音的。
当项目受到致命伤或需要快速移动时会立刻自焚(当然,打死就不需要了),随后意识随机转移到一株分裂体身上并在原地留下一株分裂体幼苗。
项目存在时间较为久远,无法确定全部分裂体位置及数量,因此,除非项目自愿,我们无法进行收容。
能力:
吸收能量,分裂个体,自焚,意识转移,移动。1
第一发现地:中国尖峰岭热带雨林
收容措施:实时监视母体与分裂体位置,疏散周围群众。若发现母体自焚,立即观察所有分裂体情况,确认母体是否转移。必要时,可进行分裂体清除。
在组织进行多次测试后,成功发现了与项目保持不同距离时人类不同的反应(前提是项目正在使用该能力)。以下内容供各位特工参考。
●略微有点疲惫——15km~12km
●感到饥饿——12km~10km
●哪怕刚吃过,也很快饿了——10km~7km
●头晕、无力、强烈的饥饿感——7km~4km
●严重头晕、难以前行——4km~1km
●体重明显减轻——1000m~100m
●休克/昏迷——100m范围内
●直接死亡——接触
注:项目身体组织一旦脱离本体便会丧失自动吸收能量/生命力的特性,所以可放心接触;以上内容皆为最明显症状。
接触记录
-语音记录-
注:部分无用内容已删除。
“根据三名死亡村民身边的电话碎片,能了解到项目有独立意识,懂得先摧毁电话,防止信息泄露,推测智能较高,可以进行交流。██特工,由你负责此次行动。”
“……”
“█████?”
“抱歉,队长,我刚刚走神了。”
……
“你好,我是█████。我代表我的组织向你提出几个问题,请配合回答。”
(树枝被折断的噼啪声)
“语言……需要学习……”
“……书……”
……
“那么,经过一晚上的时间,你现在是否能回答我的问题?”
“可以。”
……
“很久以前,我就存在了。但是我是在一群家伙放火烧山后,才醒的。”
“后来,那里太吵了,我便来到了这里。”
……
“你对人类有什么看法?”
“一群自以为是的傻子,我都懒得管。”
“那么,请为你杀死三个村民做出解释。”
“你懂的,我也是为了活下去,食物不够了。你们不也是这样吗?猎杀动物,吞食它们的血肉。而且你们打打杀杀,杀死的人可比我多太多了……”
“……我们人类的事,不需要你管。”
“呵呵呵……整天只知道杀戮……你们和那些野兽,又有什么区别?你们人类的贪心,终究会毁了自己……好了,请回吧,我累了……说话对于我很耗费精力。”
-录音结束-
据特工█████回忆,在项目说话前,他听见了清晰的树枝折断声。他对于项目可以说话,以及项目在一晚的时间便学会人类语言这件事表示惊讶。█████表示,项目对人类有较高敌意,并向组织申请对项目进行处决,但组织拒绝了申请。
-实验记录-
实验1:
人体反应测试
时间:██年█月█
对象:可消耗人员及YHN-KHE-0167分裂体
目标:探究和项目保持不同距离时对人类的影响。
描述:我们让10名可消耗人员从不同地点出发,向项目移动,并用生命体征检测仪和无人机对他们进行实时监测。在距项目约100m的地方,所有可消耗人员全部倒下。在对他们进行尸检后,报告指出他们的死因均为饥饿导致的严重营养不良。
结论:项目及项目分裂体均能通过未知方式减弱生命体机能,并以获取的能量维持活性。
实验2:
能量转移实验
时间:██年█月█
对象:YHN-KHE-0167分裂体
目标:探究项目分裂体吸收的能力去向
描述:经测验,项目维持自身活动所需的能量极少,只占吸收总能量的10%。对于多余的能量去向,我们感到十分好奇。在借助项目YHN-KHE-████的帮助下,我们发现了所有多余的能量均汇聚到母体根系处。
结论:项目会把能量汇聚到母体根系。
实验3:
材料测试
时间:██年█月█
对象:项目赠予的组织和项目分裂体碎片
目标:探究项目身体组织在脱离本体后的特性
描述:在向项目请求并以10名可消耗人员作为交换后,项目同意送出一截大小约为3立方分米的枝干并摧毁一株分裂体。经实验,分裂体碎片除上述特性外与普通木头没有区别。而母体主动送出的材料拥有攻击目标后回馈持有者能量/生命力的特性,具体表现为受伤后可通过攻击敌人恢复伤势,且坚硬度等特性较碎片均有所提高。
结论:正研究材料带来的价值是否比向项目提供可消耗人员的代价高。若是,则可考虑长期合作。
附录4:
确认项目意识转移方法
当项目意识转移后,现意识所处身体周围将会变得极度安静,树叶有几率颤动。
-事故报告-
在组织拒绝了特工█████的申请后,█████擅自携带重火力武器及大量弹药,对项目进行轰击。尽管组织的其他人员在不久后便到达现场并控制住了█████,但仍激怒了项目,导致项目连续自焚并将意识转移到距离人类居住地较近的分裂体身上并向人类聚居地移动,导致至少7万人死亡。以下为录音记录,先后与█████和项目进行对话,部分无用内容已删除。
“该死的,我早说过了应该把那家伙处决而不是闹出这么大的事!”
“█████,这次事故完全是由你的不理智行为导致的。”
“我的问题?我的问题?!那它杀了我的父母也是我的问题!!!我TM说了,这东西就是个祸害!!!”
“█████,请你冷静。”
“冷静!你让我TMD怎么冷静?!我说了……”
-录音终止-
“我们为█████的鲁莽行为道歉。”
“……”
“你好?你还在听吗?”
“……骗子……”
(愣住)“什么?”
“我说,你们这群骗子!你们违背了诺言!”
“很抱歉。但我们保证……”
“保证?你们还有信用吗?你们人类……我将会复仇,这只是开胃小菜而已。现在,你给我滚!”
(火焰灼烧木头的声音)
-录音终止-
据协商人员回忆,死亡的三名村民中两名是特工█████的父母;项目在说完话以后自焚了。目前,特工█████因不听从组织命令导致重大失误,已处决;项目随后在西双版纳热带雨林中被发现,处于被监视状态。
枯木枯木,枯而不死。
« YHN-KHE-0166 | YHN-KHE-0167 | YHN-KHE-0168 »

