: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)); } } /*-------------------------*/ @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)); } }
于2018年11月16日拍摄的SCP-CN-1291-1理念成像图。隐约可见两名持枪者(左)与被缚于十字架上的一人(右)。
特殊收容措施:SCP-CN-1291的使用申请需经站点主管Dr. Fishbone审批。任何可能为项目引发的不良异常效应都应向电子神学部汇报。网络异常收容部将持续监视SCP-CN-1291-B以杜绝情报泄露。
所有新发现的平民SCP-CN-1291-A应予以无效化,并按照标准赔偿准则支付赔偿金。
描述:SCP-CN-1291是阿赖耶识仪式1的一个特殊变种,通称“阿赖耶识·M”。发动SCP-CN-1291需要准备以下物品:
- 一台外壳上画有特定奇术符号的笔记本电脑
- 一支采血针
- 十三枚锈蚀的钢钉
- 一台基因检测仪
- 一支塞有软木塞的试管,用于承装血液
- 一把模型手枪,表面涂有红漆
- 一件西装,背面有多处破洞
向试管中加入至少两毫升的单一来源人类血液后,将上述物品以金属导线相互连接,在其半径10米内执行阿赖耶识仪式的通常程序,即可完成SCP-CN-1291。在仪式中提供血液的人员被编为SCP-CN-1291-A。
SCP-CN-1291的相关资料最初发现于一家隶属于GOI-CN-1291“太悲咒”2的私人诊所。至SCP基金会接管全部GOI-CN-1291相关的医疗设施为止,共发现了2016名SCP-CN-1291-A,其中██人因早期基金会对异常性质的了解不充分而死亡。对GOI-CN-1291的更多调查结果详见研究报告《不死常态化之后:东亚地区GOI一览》。
SCP-CN-1291-1是一个嵌于人类理念圈当中的模因复合体。尽管对项目的初步了解起始于对SCP-CN-1291的相关研究,在此之前基金会已观测到数个可能与之相关的超常现象(如超常现象-20170319-地外483、超常现象-20170719-东京014)。
当SCP-CN-1291-A因某类原因而即将死亡时,该个体将不会陷入死亡并免疫受到的伤害,这一过程的外在表现近似于被抽取了对应的Thanatoma,与此同时一个SCP-CN-1291-B将被发布于任一含有较多日本动画《机动战士高达:铁血的孤儿》二次创作视频的视频网站(如哔哩哔哩、Niconico动画、YouTube)。SCP-CN-1291-B为以虚拟角色奥尔加·伊兹卡5的死亡为主题的视频,且视频中奥尔加的死法与同一时间SCP-CN-1291-A所受伤害的类型高度关联。发布SCP-CN-1291-B的账号为多个特定的用户账号,当前均由基金会负责管理。
删除SCP-CN-1291-B可以使它对应的-A个体失去前述特性,直至其成为另一次SCP-CN-1291的血液提供者。如果删除时其视频播放量低于一未知数额,相应的SCP-CN-1291-A将立即失去生命体征,并在SCP-CN-1291-1的感知核内生成思想同位体。
至:XB
自:PedanZeton
主题:关于我们亲爱的SCP-CN-1291-1
简单来说,我们正在跟一个幼年神打交道。
信仰神的诞生依赖凡人对它的信仰。崇拜、恐惧、尊崇……大量的强烈情绪汇聚至一个实体身上,就能为它带来信仰,哪怕这份信仰与其他神所拥有的信仰截然不同。而在娱乐超越一切情绪的现代,因普罗大众的那甚至谈不上是善意还是恶意的集体“信仰”而诞生于互联网之内的初生神祇已不在少数,他们大部分没有固定的信徒,没有真正的权能,连成功产生自我意识的都微乎其微。
想要一个人死,也是一种信仰。
我不知道你看没看过那个动画,没看过也无所谓。和-B打交道了这么久,至少这破动画的二创都是些什么玩意我们应该都很清楚。一个二次元角色,因为各种各样的原因,而被打上了死者的烙印,被一次又一次地杀死在这电子屏幕背后的世界里。无数人以此为乐,用他的死去寄托心中的种种情绪。这一切跟什么异常模因都没有关系,完全是民众持续数年还愈演愈烈的自发行为。这要是造不出一个神那才奇了怪了。
幸运的是,这个神也就是个刚诞生没几年的小婴儿,除非往他里面狠狠轰入理念加速成型过程,不然短时间内他干不出什么大事。就威胁来说可能还不如一个真在现实里活过来的奥尔加·伊兹卡。
只不过,构成它的核心理念有且只有一条。
昨天晚上我们部门给它取了下像,图片之前发给你了。占了成像图最大面积的是三个人形,一个是奥尔加,这个很容易看出来,头上长的那个回旋镖辨识度太高了。
另外两个,用高达圈的话来讲,叫暗杀兵。
再强调一遍,这不是奥尔加之神,这是奥尔加之死之神。得到信仰的不是那个他妈的大天才冈田麿里笔下的奥尔加团长,是她犯病搞出来的奥尔加被暗杀兵突突死的情节。
如果这个新生之神有什么本能,那就是让自己被杀死,毕竟这是它所有信徒的共同愿望。
那么这对我们来说意味着什么呢?这代表他如果能萌生出意识,那么体会到的第一种感受就是死亡的痛苦。
至:Captain_Chao
自:Agent_Wu
主题:回复:再考虑考虑吧
我不是对抽取死亡有意见,我只是不能接受以这种方式换来的不死。
Thanatoma是怎么生效的我不知道,你让我用它我也不会拒绝。但是SCP-CN-1291不一样。你还记得之前A15收容失效、我被困在收容间里的时候吗?那次我一瞬间生成了一百多个视频,这应该代表我也一瞬间死了一百多次。在迎来那一百次死亡的时候,我看到了SCP-CN-1291-1的里面。
那个场景我不知道该怎么描述,非常抽象,就像是色彩很浓的抽象画。我只知道里面有人,而且不只一个。最初我听到了小史的声音,就是之前因为我们乱删视频而死了的那个年轻人,他的嗓音很特别,一下就能听出来。之后是没见过的孩子、老人,无数难以分辨的嘶吼,一个个模糊的人影在我眼前出现……他们的叫声让我想起了Chou临死的时候。他们抬起头盯着我,哪怕大部分已经扭曲到不成人形,我还是能望到他们眼中的恨意。
现在我明白了。SCP-CN-1291不是让人不死的仪式。它是代你去死的仪式。
至:XB
自:Captain_Chao
主题:一条好消息和一条坏消息
好消息是,我们抓到了那个盗版大悲咒团伙的一个高层,还在那家伙自杀前从他嘴里撬出来了点情报。
跟你想的一样,GOI-CN-1291没有技术去从头构建一个不死化奇术仪式,他们只是借用了现有的异常。SCP-CN-1291-1自身有回应信徒祈祷而死亡的机能,他们就利用这一点搞出了阿赖耶识·M。那仪式的真正意义是向神打欠条,用通过视频收集的信仰来换取神明从人身上抽走此刻的死亡,删掉播放量少的视频会让人死掉是因为欠的账还没有还清就断了收入来源,本人就被抓去还债了。
坏消息是,如果情报属实,那么这个系统的运行将会伴随SCP-CN-1291-1内部重演的无尽死亡。现在还不清楚-1有没有自我意识,但是有几十个人的意识体已经被困在里面了。我不觉得在周围环境是个宛如炼狱的无限行刑场的情况下,这些人的状况能有多好。
至:Dr Fishbone
自:XB
主题:该停下来了。
网络异常收容部监测到了一段异常电子信号,是从SCP-CN-1291-1里面传出来的,解码后可以转换为一个音频文件。我把里面的人声抄录了一份。
我是铁华团团长,奥尔加·伊兹卡。
妈妈?
海水,好咸。
真他妈不该信什么Thanatoma。
几颗子弹不要紧的。
小花乖,马上就不疼了。
救命。
今天是个值得纪念的日子,手指从手里长出来了。
求你求你求你求你。(伴随音量逐渐增大的电锯声)
后面是楼前面是车不会躲吗?没长腿吗?要不是你跟山炮似的让人打死了你爹怎么会遭这罪。
我的话你们想怎么杀都可以,想杀我几次都行,身首异处曝尸荒野也无所谓。
操你妈的。
为什么会变成这样。
没把馒头带回去,爷爷会挨饿的。
我究竟还要再死几次才够,这里离地狱还有多远?
这里是脑子被挖出来攥在手里也能清晰思考的世界。除了没法睡觉,一切都好。
在死后克服了深海恐惧症,真你妈好笑。
几把疼。
肉飞出去的时候,只要看得到星星就不会痛了。
你不应该追逐不属于你的天堂。
至:Dr Fishbone
自:XB
主题:废除提案
SCP项目废除提案表
项目编号:SCP-CN-1291
首席研究员:高级研究员XB
支持人员:
- Dr. Zett - 代表电子神学部
- Dr. Chao - 代表SCP-CN-1291特别收容小组
请对您申请理由对应的方框进行打勾或填选:
☐ 揭开面纱情景风险极高
☐ 极度危险
☐ 昂贵
☑ 伦理顾虑
☐ 法律顾虑
☐ 有能力废除的Apollyon级项目
☑ K级情景风险高(若是如此,请说明具体类型(多种类型):ΩK级
☐ 其他(请说明):概要:SCP-CN-1291所构成的死亡抽取系统有违伦理,其运行将会过度刺激SCP-CN-1291-1并致使超过90个5级智能意识体持续承受痛苦。此外,SCP-CN-1291如果脱离收容大肆扩散,将可能引发ΩK级“死亡终结”情景。
于2019年1月14日拍摄的SCP-CN-1291-1理念成像图。
废除行动于2018年10月1日起由Area-CN-15废除部执行。约一个月后,所有SCP-CN-1291-A均已被安全地无效化。
在两个月后的调查中,观测到SCP-CN-1291-1内部的[已编辑]仍在持续增长。后续研究显示以奥尔加的死亡为主题的非异常视频同样会刺激SCP-CN-1291-1并造成内部意识体的死亡体验。SCP-CN-1291可使SCP-CN-1291-1从SCP-CN-1291-B接收的能量与SCP-CN-1291-1支出至SCP-CN-1291-A的能量相抵消,经基金会奇术部改良后可被用于收容SCP-CN-1291-1,维持项目当前的低神圣度状态。
经O5议会决议,终止对SCP-CN-1291的废除,并在Area-CN-15内部开展项目的试验性应用计划。若未发现更多潜在的安全性问题,预计将于2022年之前在全基金会站点范围内推广。
更重要的是这可比Thanatoma便宜多了,不是么?
-05-U,此处"U"代表"Undead"
« SCP-CN-1290 | SCP-CN-1291 | SCP-CN-1292 »
请按如下方式引用此页:
“SCP-CN-1291”,作者 blackinblack,来自 SCP-CN 维基。原文链接:https://scp-wiki-cn.wikidot.com/scp-cn-1291。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
文件名:bbeauty
图像作者:DR WXX
授权协议:CC BY-SA 3.0
来源链接:http://scp-wiki-cn.wikidot.com/local--files/gallery/bbeauty
文件名:beauty
图像作者:DR WXX
授权协议:CC BY-SA 3.0
来源链接:http://scp-wiki-cn.wikidot.com/local--files/gallery/beauty
更多维基文档信息,请见版权信息总览。