: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-1247被收容於██山脈中一處無人地區上Site-CN-77建立的獨立圓形設施Sector-CN-77內,收容設施直徑1██公尺,分為中心收容室、內圍與外圍三部分。
中心收容室為直徑8公尺的圓形水泥建築,項目即收容於內,需配置一切供項目成長之設備,以及2~3名保母輪班駐守照顧項目。
內圍包含中心收容室的直徑為85100公尺,任何非真空管式電子設備皆不應當進入內圍以內的區域,進入內圍需經外圍的兩道權限關卡,內圍中配置守衛嚴密巡邏,亦可設置物資儲藏庫。
外圍區域屬於正常設施,可部署任意電子設備,功用主要為管控進出內圍之人員以及對項目研究。
MTF-壬戌-59 “摩登原始人”全權負責以上監控及守衛任務。
目前項目的攻擊頻率與範圍平均值有逐漸提升之情形,收容小組應當密切注意。
描述:SCP-CN-1247為一名2020/██/██出生於台灣臺東縣[數據刪除]地區醫院的█族-██族混血兒,女性,出生體重1███克,其母於生產過程中不幸死亡,而其父親已在收容項目後進行記憶刪除。
項目每7~18分鐘即會放出一次半徑約33~37 39 42公尺之特殊EMP攻擊,可毀損範圍內任何的電子設備。
項目EMP攻擊頻段雖為100MHz,但依然能夠完全破壞較不受該頻段影響之電器,推測其攻擊具異常的智慧性,可於攻擊當下變換最具破壞性之頻段,強制毀損目標。
基金會曾試圖採用真空管式電器協助項目之扶養,然而經過█次EMP攻擊無效後,項目產生出一種高振幅之聲波攻擊,利用共振直接破壞範圍內的各類型真空管,但並未造成人員傷亡,因其攻擊聲波為對人體無害之超音波,頻率約為█MHz,僅針對真空管變換共振頻率。
基金會尚且不敢認定項目有無能力控制自身之攻擊,在無法信任與溝通的前提下,建議將項目視為敵對單位。
項目之休謨指數、eve輻射能量、一般身體機能、伽瑪輻射值等數據皆處於常態範圍,其能力具體成因尚待調查。
附錄CN-1247-A:攻擊數據記錄
| 時間 | 平均週期(分鐘) | 平均範圍(公尺) |
|---|---|---|
| ~2020/11/23 | 7.5 | 14 |
| 2020/11/24~2020/12/23 | 13.2 | 34.2 |
| 2020/12/24~2021/01/22 | 12.2 | 34.6 |
| 2021/01/23~2021/02/21 | 11.3 | 35.2 |
| 2021/02/22~2021/03/23 | 10.6 | 35.5 |
| 2021/03/24~2021/04/22 | 10 | 35.9 |
| 2021/04/23~2021/05/22 | 9.5 | 36.4 |
| 2021/05/23~2021/06/21 | 8.9 | 37 |
| 2021/06/22~2021/07/21 | 8.1 | 37.8 |
| 2021/07/22~ | 待觀察 | 待觀察 |
附錄CN-1247-B:信件記錄
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Dr. Chi | 接收方 | Xu-lin-jie主管 |
| 自從收容SCP-CN-1911開始,我們站點陸陸續續接收到這種成因不明的異常嬰兒,我懷疑跟那場[數據刪除]的爆炸有關。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Xu-lin-jie主管 | 接收方 | Dr. Chi |
| 我們沒有證據顯示這些孩子是受那次意外影響產生的,但我跟你有同樣的想法,這些孩子們都是失去母親的早產兒,而且爆炸時它們的父母也都在台灣,我不清楚對岸那邊有沒有同樣的情況,但希望不要有。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Dr. Chi | 接收方 | Xu-lin-jie主管 |
| 說到對岸,妳什麼時候跟Area-CN-42聯繫?畢竟我們主要是武裝站點,實在不適合收下這麼多“倔脾氣”的孩子們。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Xu-lin-jie主管 | 接收方 | Dr. Chi |
| 我早就跟Legion通過信了,只是他很忙,而且…你知道的,他有多重人格,每次回信幾乎都是不同的人格,搞得我好亂啊。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Xu-lin-jie主管 | 接收方 | Dr. Chi |
| 啊,他剛剛又回我信了,他們那裡能夠分擔一些,之前的1911狀態也很穩定,只是不希望上次運輸過程中的意外再次發生,而且Site-CN-29、██也都能夠幫忙吸收一點。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Dr. Chi | 接收方 | Xu-lin-jie主管 |
| 太好了,辛苦妳啦,不過SCP-CN-1247應該是沒辦法轉移過去,它是所有孩子裡脾氣最倔的,我明天會從它這邊回去。 | |||
| Secure Contain Protect | |||
2020/██/██ ██:██
| 主旨 | 那些孩子們 | ||
|---|---|---|---|
| 發送方 | Xu-lin-jie主管 | 接收方 | Dr. Chi |
| 等你回來,到時候再開會決定怎麼幫這些孩子們找到更好的家,只是別忘了它們都是異常,還有我們的職責是什麼,尤其是那個1247,它應當被視作敵對單位,雖然對小嬰兒抱持敵意很奇怪,但誰也說不準它們是不是真的如同外表般單純,剩下的開會時再說。 | |||
| Secure Contain Protect | |||
附錄CN-XXX-C:公文記錄 “(2021)控異字111號函”
特殊收容措施基金會中國分部77號武裝站點(Site-CN-77) 函
地址:花蓮縣花蓮市██路██號
承辦人:Dr. Edge Chi
電話:(90)20011215
傳真:(60)19711203
電子信箱:nc.fpcs|ihcegde#nc.fpcs|ihcegde受文者:Sector-CN-77
發文日期:西元2021年5月13日
發文字號:(2021)控異字111號
速別:
密等及解密條件:CN1247/2權限
附件:本站20210512號會議記錄主旨:增設貴站點內圍設施兒童玩偶乙件,希照辦。
說明:配合SCP-CN-1247年齡成長,確保其心靈健康發育。
辦法:
- 負責項目之保母應於項目使用新增物品時特別注意,避免其誤食內容物或遭遇其餘危險。
- 玩偶不得使用泰迪熊。
正本:Sector-CN-77
副本:Site-CN-77
« SCP-CN-1246 | SCP-CN-1247 | SCP-CN-1248 »





