: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; } /* 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)); } }
特殊收容措施:SCP-CN-1911附近至少配置7名D級人員做為緩衝,照顧人員之MARS得分需達到 2.5 5 7.5分以上1。
項目獨立收容於Site-CN-77█區之人形異常收容間內,由[數據刪除]負責看守,非相關人員禁止接近。
Site-CN-77與Area-CN-42的合作團隊研發出一種結合奇術的新型超科技冬眠艙——“搖籃”進行項目的收容。
項目目前已自Site-CN-77轉移至Area-CN-42收容並交由專業的人形異常研究團隊進行收容與研究。
項目的收容室配置獨立的核能發電裝置,並有7名D級人員常駐於旁側的牢房,除此之外任何非相關人員不得隨意接近項目所在的收容室,其區域由MTF-癸亥-60 “註生娘娘”負責長期監控與守衛。
描述:SCP-CN-1911為一名201█/12/██出生於台灣████教醫院的華人,於剛出生時便被基金會發現並收容,當時重量約為1███克。
項目擁有傳染情緒的強烈精神影響能力,其自身完全無法控制該能力。平時項目能夠完全複製自我的情緒並蓋過離其最近之1~7個人類的情緒,情緒激烈時則能夠完全覆蓋方圓1~13公尺內任何人類的情緒,使用現實穩定錨壓制近乎無效,僅有項目自身的深層睡眠可能夠中止異常效應。
- 注意:項目的能力即使在做夢時亦可發動,唯有進入深層睡眠的非眼動期才可完全確保項目的能力關閉。
項目被基金會定義為複合型的自動強制性心靈感應者2,且由於其能力過於不可控制,而體質卻過於脆弱,導致諸多實驗難以進行,基金會已暫時放棄對項目本質進行探究,專注於尋找能夠方便進行實驗且不過度傷害項目的收容方式。
附錄CN-1911-A:發現記錄
項目本為基金會Site-CN-77常駐特工███之子。
特工███於任務中殉職,而其妻子,當時已懷有項目,得知噩耗後情緒崩潰,隨後便開始陣痛,此時距離預產期還有█個月。
妻子於生產過程中不幸身亡,項目在接生團隊的努力下成功出生,但是接下來項目大哭使接生房完全籠罩在其能力下,使房內的醫護人員與後到的基金會特工全都情緒崩潰,直到項目哭泣至無力昏睡才成功收容項目。
附錄CN-1911-B:能力類型轉換原理
項目的能力可分為不論距離,但影響個數有限之個數型與目標處於一定範圍內皆可影響之範圍型兩種類型。
該兩種項目能力類型的切換完全依據項目本身的情緒強烈程度,較溫和的情緒影響類型屬於個數型,較激烈的情緒影響類型屬於範圍型,分類大致如下表:
個數型 | 安詳 煩躁 好奇 愉悅 呆滯 疑惑 不舒適 寂寞 | |
---|---|---|
範圍型 | 恐懼 飢餓 憤怒 難過 不滿 高興 |
附錄CN-1911-C:搖籃
搖籃為一種專門用於收容SCP-CN-1911的超科技冬眠艙,研發團隊領導者為目前效命於Area-CN-42的前普羅米修斯集團員工W████ L. [數據刪除],她是長期休眠技術專家與超科技機械工程學博士,負責搖籃的大部分硬體設計。
搖籃由一高科技人工智能掌控,該人工智慧技術源自於安德森機器人公司,能夠精確調整項目長期冬眠時的生理需求。
搖籃內部搭載了一個反夢神奇術裝置,由Site-CN-16的夢神集團應對小組資深成員T. K. Dai設計,其中一部分採用[數據刪除]等奇術,用以將項目控制在深層睡眠之中。
經過倫理道德委員會的反覆審核,項目於█個月大時(202█/██/13)轉移至Area-CN-42,並進入搖籃與其餘收容措施。
附錄CN-1911-D:轉移記錄
- 202█/██/11 2█:██ |項目搭機離開Site-CN-77。
- 202█/██/12 0█:██ |項目入境中華人民共和國。
- 202█/██/12 0█:██ |項目於[數據刪除]由Area-CN-42的運輸小組接手。
- 202█/██/12 1█:██ |項目於████沙漠中因餵食不當導致其情緒極度不滿,造成運輸機迫降,運輸隊伍失聯。
- 202█/██/13 0█:██ |運輸隊伍徒步趕到Area-CN-42,一人因迫降重傷,其餘人員皆有輕傷,受傷主因為項目精神影響能力引發的隊員衝突,且心理亦有一定程度的受創,但仍全員無損,項目亦安然無恙。
後續:來自Area-CN-42的運輸小組成員後來皆一致進行了記憶刪除,以解決過程中造成的心靈創傷。
如果還有下次,一定要讓有養過小孩的人負責運輸,唉,天知道他們經歷了什麼。——██博士
« SCP-CN-1910 | SCP-CN-1911 | SCP-CN-1912 »