:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
SCP-CN-1779于发现时
特殊收容措施:SCP-CN-1779被收容于Site-CN-82-α的认知危害收容隔间中,其隔间内部要完整地贴好厚度不小于5厘米的隔音棉。项目仅对3级及以上权限持有者开放。对于破坏收容室环境的行为要予以惩罚。
描述:SCP-CN-1779是一黑色轮椅,其上常覆盖着一层白布。据调查,项目原为一个患有严重下肢瘫痪的青年女子徐██的遗物,在其逝世后将项目存放于当地存车处,其死因不明。
当受试者移动覆盖在项目上的白布1后,一人形目标将出现在受试者独处的高层房间的窗外,受试者会因精神影响被迫与目标互动。互动期间,目标会重复表达进入屋内的愿望并作出翻越窗框的动作,随后突然坠楼2。
目标通常被描述为一身着白色长裙、留有黑色长发、面无表情的年轻女子。大量实验表明,目标仅能被受试者观察到,且异常效应的发生不可人为改变。项目的异常效应会使受试者产生极大的负面情绪,目前已有多名受试者自杀。
补充:SCP-CN-1779被发现于██市█████旁的停车库,由于车库老板多次移动项目后其仍回到原处,占用车库空间,引起基金会的注意,此后立即展开调查。在发现如附录2所示的内容后,将犯罪嫌疑人交予警方处置,并将项目收容。
附录1:实验记录
实验1
实验对象:SCP-CN-1920
实验过程:受试者在触发SCP-CN-1779的异常影响后进入Site-CN-82-γ科研区域C-02的12层
实验结果:受试者下肢被截断,报告称其发现有与目标一致的漂浮个体,且目标周围散发着烟雾与多种未知符号
备注:受试者在此后对窗户和与窗户有关的一切物体(包括语言文字)产生恐惧
实验2
实验对象:SCP-CN-1924
实验过程:受试者通过SCP-CN-1924观察SCP-CN-1779
实验结果:受试者报告称其观察到CN-1779之上存在一人形,与目标相似,其上覆盖着白布。两秒之后,目标转过头,在可以观察到面部的一半时,SCP-CN-1924似乎出现损坏
备注:受试者在提到目标时流泪,在报告完毕后产生语言障碍
实验3
实验对象:SCP-CN-1557
实验过程:受试者在触发CN-1779的异常效果后,被命令暂居于CN-1557的603号房间
实验结果:受试者报告称,房间内可以听到脚步声和女孩的哭声。除此之外,在实验结束前,受试者在将要离开房间时,发现有一白衣女子从阳台处跳下
备注:设置在房内的监控设备拍摄到阳台出现白色长裙的一角,但没有捕捉制到其它受试者报告内容的画面
实验4
实验对象:SCP-CN-1669
实验过程:受试者吃下一生日蛋糕,在SCP-CN-1669上写下“徐██的轮椅”,字迹随后消失
实验结果:SCP-CN-1669上显示留言“别担心,我知道你不是自杀的”,受试者无效果
备注:项目负责人Dr.Suloob请求尽快调查出徐██的死因
实验5
实验对象:SCP-CN-078
实验过程:将SCP-CN-1779至于SCP-CN-078下
实验结果:CN-078刚开始出现闪烁,随后亮起,受试者在经过CN-078时观察到有一类似于目标的个体;一个月之内,受试者多次迷路,同时接触目标,目标多次重复“我迷路了,您能带我回家吗”
备注:受试者在实验结束后似乎总是在找寻着什么,对其询问后,受试者总是回答“她”
实验6
实验对象:SCP-CN-013
实验过程:使CN-013蹲坐在CN-1779的座椅上
实验结果:CN-013出现暂时昏厥,其颈部的玻璃球中的人形烟雾消失;在此期间,一类似于目标的烟雾状个体出现在CN-1779旁,其神情十分惊恐,并迅速消失
备注:本实验造成了CN-013短期的抑郁症加剧,项目负责人要求减少项目与CN-013的交互
实验7
实验对象:SCP-CN-1498
实验过程:[数据删除]
实验结果:CN-1498被受试者认为是目标,且逐渐实体化;受试者一切生理活动均停止
备注:[数据删除]
实验8
实验对象:SCP-CN-066
实验过程:项目负责人向CN-066询问有关于徐██的多个问题
实验结果:CN-066拒绝回答,强调“自己不是为基金会服务的,想知道的话自己去问它”
备注:本次实验过后,目标出现在CN-1779之上,人员对其进行了采访并拍摄了照片,但所有有关目标的档案和人员对于此事件的记忆均遗失
实验9
实验对象:SCP-CN-029
实验过程:一SCP-CN-029-a触发CN-1779异常效果并闭眼
实验结果:CN-029被受试者描述为与目标一致的内容。目标被观察时在流泪,并且环境中有轻柔的歌唱声
备注:受试者在实验后精神失常,似乎在躲避什么,出现自残行为
实验10
实验对象:SCP-CN-174
实验过程:将CN-1779移动至CN-174附近
实验结果:观察到项目之上的白布漂浮到CN-174上,CN-174逐渐摇晃剧烈,白布被多名观察人员误认为目标的形态。之后,白布消失,5分钟之后,白布重新出现在CN-1779之上,并沾满雨水
备注:实验当天云南省██市突降大雨,在实验后,该市出现大量的[数据删除]
实验11
实验对象:SCP-CN-255
实验过程:将CN-1779移动至CN-255收容室,受试者在CN-255上入眠
实验结果:受试者醒后接受采访,在访谈中提到了目标,但语意不明。访谈后,CN-1779在无人员注意时自行移动到其收容室
备注:实验后的一个月内,受试者对CN-255产生依赖性。在一次睡眠中,受试者持续停留在睡眠状态且无法干预,但其各项生理机能均正常
附录2:视频记录
前言:以下内容发现于█████42号楼142号的电脑中,发现时该文件已被加密。
[记录开始,<00:00:00>]
镜头对准一个住宅楼的窗户,透过窗户隐约可见一女子(甲)表情凝重地望向窗外
<00:00:02>甲向后转头,画面出现第二名女子(乙),乙与甲交谈
<00:00:07>乙开始对甲实施殴打,甲倒下并消失在画面中,乙下蹲,持续对甲的殴打
<00:00:10>乙起身,用力践踏下方的甲
<00:00:15>乙向后移动至门前,拿起放置于门后的拐杖,后回到原处,挥动拐杖击打甲
<00:00:21>乙双手叉腰,似乎在歇息,阳台下端伸出一只手抓住窗框下缘
<00:00:29>窗户被乙快速打开,甲被乙拉扯而起,随后乙抱起甲推向窗外,甲努力抓紧窗框下缘而没有坠楼,乙走出房间
<00:00:31>乙右手提着一水壶再次进入房间,将壶中水倾倒在甲手上,甲松开抓紧窗框的手,随后坠楼
<00:00:34>乙前半身探出窗户,望向落地的甲,随后抬起头左右查看,最后发现并望向镜头
[记录结束,<00:00:40>]
后记:基金会得知,视频中的受害者正为徐██,施暴者为其母。在该视频被发现前,施暴者坚持称徐██为自杀。警方发现该视频后,立即逮捕施暴者,现其已被判处死刑。
附录3:事件记录
事件记录
[2004/06/12]一次实验中,项目座椅之上出现一副画作,内容为一个身着白色衣裳的女子坐在轮椅上望向窗外,窗外的景物与项目发现地附近住宅区一房间所能观测的景物一致,调查后得知,该房屋为徐██的家。室内没有搜索到有意义物品。
[2005/10/09]项目收容室的监控断开连接,重连成功后发现项目突破收容,自行移动到了站点外部,且其上的白布消失。对平民进行记忆消除后,白布在不经意间回到项目之上,但其上沾染大量血液,经检验发现是项目负责人Dr.Suloob的血液。项目负责人在调查监控时突然昏厥,醒后不具备有关该事件的记忆。
[2006/02/13]在项目与CN-1557的交互后,项目的收容室内经常传出异常声响,但未发现声源但多次显示声源为CN-1557。声音被形容为女孩子的哭泣声,负责看守的人员在接受声音后同样产生了一种悲伤感。项目收容措施也因此加设了隔音棉。
[2008/11/24]监控显示项目收容室内存在一人形实体,该实体跪在室内门前用力敲打房门,由于其处于监控的视野盲区,不能观测其样貌。但门外看守的特工报告未听到任何异常声音。事件当晚,在收容室门前出现一具用白布裹好的女尸,其上沾满鲜血,身体组织和器官严重分离。
[2010/03/16]项目的收容室北侧墙面以未知方式出现一面积为1平方米的窗户,并且展现出不可被摧毁的性质,在收容室外部不能观测到该窗户。监控显示,尽管会有人员不断移动项目,但项目总会在人员离开后自行移动到窗前。
[2012/05/07]收容室开始以未知原因被“装饰”,至今(2020.1.16),收容室内部已出现3盆月季花、一个内含10条金鱼的鱼缸、7部画作、6本书籍和一架钢琴(均为实体),收容室内也常会传出浇水声、琴声,现被认为是正常现象。项目有关负责人员一致同意不破坏此环境。
[2013/09/25]项目负责人自当日起每隔一周进入项目收容室并坐在沙发上,时而带着礼物(如书籍、发卡、洋娃娃等)。现已确认项目的异常效应对该人员无影响。项目负责人称,当只有该人员处于收容室内时,目标会出现于该人员的“意识”中,并且和自己进行互动。目前,该人员已获得多条有关项目的情报,但目标要求保密。
[2014/12/13]项目负责人突发心脏病,项目以未知方式突破收容,并自行移动到项目负责人的抢救室门口。原本抢救无效的负责人在被推出抢救室后逐渐恢复生命体征。暂时可以认为是项目的异常影响所致。
[2018/03/24]项目负责人Dr.Suloob死亡。SCP-CN-1779无效化,目标自此消失。
[27 Jul 2021 12:01]项目重新具有异常性质。
« SCP-CN-1778 | SCP-CN-1779 | SCP-CN-1780 »





