: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 }
特殊项目编号:YHN-KHE-0268 拟态虫娘
危险等级:INTRANQUIL
归档者:隳湮
特殊收容措施:,一间4m×7m×4m的混凝土房间,以“白色”为底色进行布置。并在房间内放置10本以上的纸质书籍,定期更换。书籍必须符合正常人类的道德观、是非观,内容健康、积极、乐观,不得有阴暗内容,尽可能的选择图画多的书籍。特殊注意:YHN-KHE–268的食物必须经过深度加工,且尽可能单一,并确保食物未曾感染生物组织,严禁该异常接触生食。并需在供给食物外,定时补给维生素片来调整饮食缺少的元素
再次注意:严禁YHN-KHE-268摄入含有完整生物基因或者基因片段的食物。如若必要,必须先用高温使其失活、破坏结构后食用
描述:YHN-KHE–268外表类似16岁左右的人类女性。黑发,身高一般为1.65米,体重■■千克1。该异常具有极高的智能,在学习后具有交流的能力,具有类似声带的器官。YHN-KHE–268具有极强的学习能力,并能模仿、拟态其他生物和非生物的结构、行为。但一般只能模仿外表,完全拟态需要摄入该生物的基因
YHN-KHE–268具有类似人类的内骨骼结构,但骨内部具有的类似支架的特殊结构,所以相比人骨,机械强度、韧性都更高
YHN-KHE–268的眼睛实际上是由黑白两种结构特殊的小眼构成复眼,黑白比例近似人眼。白色小眼映射的图画模糊,范围较广,黑色小眼映射的画面清晰,范围狭窄。YHN-KHE–268的复眼结构并不同于昆虫,具有更高的清晰度,整个黑色复眼部分的视力比普通人类的视力更为清晰,白色复眼部分相当于近视700度的人类视力。尽管白色复眼的视力并不清晰,但对会动的事物非常敏感,使得YHN-KHE-268的拥有广角视觉
YHN-KHE–268的皮肤具有硬化的能力,这种能力的原理未知。硬化的皮肤利用常规的手枪便可以贯穿
YHN-KHE–268的下颌结构特殊,由四部分构成,分为左右外下颌和左右内下颌。内下颚平时与外下颌相连,只有在进食需要撕咬的食物时才会露出。内下颌极为尖锐,可以撕碎其他生物的身体组织并钩进口腔。需要注意,该异常的咬合力极强,可以轻松咬穿铁器
YHN-KHE–268的腰部与胯部具有10对对称的呼吸孔,大多数时间,呼吸孔并不被使用,YHN-KHE–268更倾向于用类似肺的身体组织呼吸。呼吸孔通常被用于水下呼吸,需要注意的是,在水下时,YHN-KHE–268会抗拒剧烈运动,推断是因为呼吸孔的呼吸能力较差无法支撑剧烈运动的氧气消耗
YHN-KHE–268被发现于■■地区的一个施工区域的地下,所有被影响的人员已进行记忆清除。YHN-KHE–268的外表最初呈现为一颗淡青色的球型物,经检测,性状类似虫卵。最初被装在一个由布条密封的陶罐内,浸泡在一种黑色的粘稠液体中,该液体性状类似焦油,不可食用,并不具备可燃性。瓦罐与液体统一命名为YHN-KHE–268–1,现已封存处理
YHN-KHE–268在被发现后经过了五个阶段才最终演化为现在的模样:在取出后30分钟内孵化,此阶段称为阶段一,外貌为一只长度20cm左右的白色巨型毛虫。此时YHN-KHE–268并不具有智能,只会凭本能进食与休眠。也并不具备攻击性,受到侵害时会蜷缩来保护自身。平均10天就会蜕皮一次。在蜕皮进行了8次后,该异常结蛹,并从阶段一演变为阶段二
阶段二时,YHN-KHE–268表现为一只形似蝗虫的昆虫,体长将近一米。此阶段它具有一定智能,攻击性增加,但仍然不会主动攻击体型过大的生物2,需要注意的是,此阶段进行攻击性实验时,曾咬伤实验人员,这似乎对它后续阶段造成了影响。经过近一个月后,它再次结蛹,演变为阶段三
阶段三,YHN-KHE–268表现为一头人形的昆虫,趴在地上行动,第一对肢体和第二对肢体在蛹里融合,形成了一对类似人类胳膊的前肢,尾部缩小。背部长有一根软体具有韧性的柱状组织,作用被推断为代替脊柱支撑身体。此阶段具有较低的智能,观测到了类似好奇的行为,但攻击性也同时增加。在一个月后,再次结蛹。这次结蛹后转变为阶段四
阶段四:此阶段表现的更为类似人类,外表为具有昆虫特征的人形生物。身体佝偻、瘦长像是严重营养不良的人类,头部有类似头发的结构,但检测结果为“是由特殊的结构的甲壳物组成”,尾部完全消失。有许多实验人员表示,该异常的样貌令他们恐惧,推断是因为YHN-KHE–268触发了人类的恐怖谷效应。此阶段表现出了异常的学习、拟态和演变能力。可以通过模仿来学会简单的行为,例如用手使用勺子。复杂的行为或者性状可以通过摄取该生物的基因获得,例如:通过人类基因,它学会了用表情表达情感
阶段五,即现阶段。它的外貌与人类无异。需要注意的是,YHN-KHE–268在阶段五初期时,外貌中性。现在的样貌是后期模仿形成
-YHN-KHE–268实验记录-
YHN-KHE–268学习能力实验
[■■年5月17日■■时]实验内容1:将播放幼儿教育的电视放入YHN-KHE–268的收容间内,电视很快吸引了YHN-KHE–268的注意,YHN-KHE–268对电视中的画面看了很久,并时不时会模仿电视中的人物的行为,推断这是在试图理解和学习。经过多次实验,发现该异常对重复内容会失去兴趣。通过观看电视,YHN-KHE–268很快学会了一些基础的汉字,并理解了其中的一部分的含义
业博士注:“这家伙的学习能力有些离谱,但仍在接受范围之内。话说它能不能学习用用筷子?整天用手挺……不讲卫生的。”
后续实验该异常学会了用筷子。并为了使用筷子让自己的手更加接近人手结构,更为灵活
[■■年5月20日■■时]实验内容2:将一些各年龄段的书籍放入收容室,YHN-KHE-268对拥有更多图画、幼儿书籍表现出了兴趣,丢弃了那些只有文字的书籍。YHN-KHE-268很喜欢看那些图画,并有时会试着模仿图画的内容。比如挥手,整理头发3、将房间中的装饰物撕下裹在身上等。并在实验人员回收书籍后,表现出类似失落的情绪
业博士注:“很有意思的反应,该异常似乎在学习书中的内容,或许……可以通过教育来束缚它?”
后续实验,表明这种想法是可行的。对YHN-KHE-268的实验给予更多的道德教育,这一行为让该异常拥有了对错是非的观念,并有了较高的的道德观念4。并且附带学会了要穿衣服、打招呼、抱歉之类的行为,虽然它并不完全理解这些行为
业博士:“它很聪明,但还是被道德束缚了,暂时。我并不确定这能束缚它多久,或许很快,或许很久,它会发现它不必遵守这些道德观念。我当然希望能约束它久一些,这样不会出太多乱子……”
YHN-KHE–268基因模拟能力实验
[■■年4月29日■■时]实验内容1:供给YHN-KHE-268数十张印有人类样貌的图片以及高度拟真的人体模型。YHN-KHE-268首先看了图片,然后然后开始摆弄模型。摆弄的同时,它的身体也在发生变化,身体表面的关节变淡,五官也在微弱的改变。但有意思的是,它并不是模仿其中一个的容貌,它的面部特征似乎是从所有图片和模型中搜集,拼接而成
业博士注:“YHN-KHE-268的容貌特征似乎是按照它自己的喜好拼接的,但也却符合大部分人的审美……这可以算是人的审美刻在DNA里的的一项证据吗?”
[■■年5月22日■■时]实验内容2:分别给YHN-KHE-268喂食100g普通生猪肉、100g用紫外线破坏基因结构的生猪肉、一小节银杏树枝、一只活体蜘蛛以及一小节电线
实验阶段1:YHN-KHE–268对生猪肉的兴趣很高,迅速吃完了生猪肉。在吃完的进1分钟内,YHN-KHE–268身体迅速发生变化,体表长出了毛发,面部生长畸形,肢体末端生出角质层,变成类似奇蹄目的肢体,尾部延伸出一根短尾巴。推测这是因为YHN-KHE-268正在吸收猪的基因,并将其与自己的基因融在一起。在半小时后,畸变停止,YHN-KHE-268先适应了一下身体,在收容室中来回走动,并试图抓起书本,几次尝试后失败。YHN-KHE-268的特征开始消退,回到了实验前的状态
业博士注:“幸好,它变了回去,不然这篇档案就要叫‘拟态猪虫’了。” 实验阶段2:YHN-KHE-268进食了破坏了基因结构的生猪肉,并没有表现出其他异常,仅仅是吃完了
业博士注:“看来它不能吸收被破坏的DNA……”
实验阶段3:当被要求吃掉银杏树枝时,YHN-KHE-268表现出了疑惑的情绪。当第三次被要求时,它才拿起树枝,试探性的咬了一口。最开始没有表现出异常特性,只是咀嚼,吞下。当被要求展示进食带来的效果时,才从背后发芽,抽枝散叶,直到形成一颗小银杏树,这总共用时不超过5分钟。在树苗长出后,YHN-KHE-268蹲在地上,不再活动。当被要求走动时,YHN-KHE-268才站起来佝偻着走了两步,当被要求走快些时,YHN-KHE-268立定在原地,盯着墙上的扩声器,停止了活动,推测它这是在表达它的不满
业博士注:“看来它不太爱吃菜……虽然我也不会吃树干就对了,不过它被烦多了也会有情绪啊。”
实验阶段4:当蜘蛛被放入YHN-KHE-268收容室内,YHN-KHE-268并没有立刻吃掉它,反而对蜘蛛的结网行为感到了好奇。YHN-KHE-268看着蜘蛛结网,然后破坏掉,再看着蜘蛛再次结网,然后再破坏……直到第五次,它似乎失去了兴趣,将蜘蛛捕食。在5分钟后,YHN-KHE-268表现出能从掌心搓出蛛丝的能力。并尝试用这种能力织一个巨大的蛛网,最后以失败告终
业博士注:“不错的能力,或许可以用来织布做衣服?”
实验阶段5:当YHN-KHE-268被要求吃掉电线时,YHN-KHE-268迟疑了很久,并时不时的会回头向扩音器看一眼。但在约半个小时后,该异常还是拿起电线,食用了。并没有表现出其他异常,只是从它织出的蛛丝中发现了极细的铜丝
业博士注:“能把摄入物加进蛛丝……投喂毒蝎子能出现有毒蛛丝吗?我有点好奇。”
■博士注:“你TM别!”
另补充:实验3:YHN-KHE-268通过学习发电机的结构,在体内利用血肉与电极制造出了与发电机原理类似的血肉发电机,但后续因为发电能力极差,所以退化
业博士注:“古怪的能力……通过学习改变自身构造吗?那……它能变坦克吗?”
■博士注:“别想着你那馊主意了!”
-收容失效记录-
因同站点YHN-KHE-■■■失效,导致YHN-KHE-268逃出。后被实验人员收容
以下内容为实验人员口述:
“当时我是从楼梯处看到那个家伙的,她就缩在天花板的角落里……对,大概就是那个方位。她像只受惊的动物,看到我直接扑了上来,把我撞在墙上……把手掌摁在我肩膀上,我感觉我的胳膊碎了——事实来说确实如此。抓住我后她的……下巴,翻了出来漏出两排带牙齿的下颌。兄弟,那真的太恐怖了,我从没见过那样子的怪物!然后?然后我就尖叫。它一口咬住我的胳膊,我当时觉得自己死定了。结果在它咬我的那一刻,它停住了,把自己的嘴从我的身上移开。”
*展示手臂上的两排疤痕*
“然后那怪物就把我扔在一边,又跑回了本来待着的那个角落。你是不知道被它咬一口多疼!我感觉我的胳膊被塞进了碾压机里——好的,说回正题,我在地上疼的打滚的时候,那东西还时不时看我一眼,我竟然从它的眼神里看出了担忧……我真是疯了。等我痛感下降的能站起来的时候,那怪物又来到我的跟前,就站在那里,一直念叨着回家之类的。我就把它引到防卫人员那里,把它交给他们。”
YHN-KHE-268表现出了应激反应,安抚2个小时后镇静
-事件记录-
[■■年■月■日■■时]一名实验人员携带一小瓶雌性科莫多龙的血液样本试图进入YHN-KHE-268的收容室,被防卫人员阻止,并■■
业博士注:“其他人干什么吃的!绝对!绝对!不能让YHN-KHE-268接触到拥有孤雌繁殖能力的生物样本!你们也不想看它的危险分级上升吧?!”
« YHN-KHE-0267 | YHN-KHE-0268 | YHN-KHE-0269 »

