SCP-8022
評価: +34+x

アイテム番号: 8022
レベル2
収容クラス:
safe
副次クラス:
none
撹乱クラス:
dark
リスククラス:
caution
: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 > * {
    white-space: nowrap;
    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 screen and (prefers-reduced-motion: reduce) {
    div.anom-bar-container { --timeScale: 0!important; }
}
 
/*-------------------------*/
 
@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; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@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)); }
}

Brick brick brick brick brick brick brick brick brick brick brick brick brick brick brick brick brick brick brick

Brick.jpg

SCP-8022。

特別収容プロトコル: SCP-8022はサイト-19の標準的な安全収容ロッカーに保管されます。SCP-8022の利用はレベル2職員に制限されます。SCP-8022を用いる実験は、適切な安全対策を講じた制御環境下で実施する必要があります。

説明: SCP-8022は標準的な8インチ × 2-1/4インチ × 4インチ (20.32cm × 2.54cm × 10.16cm) の赤土レンガです。化学分析において、SCP-8022の組成や構造に異常は確認されていません。

SCP-8022で意識を喪失するのに十分な威力の打撃を受けた人物は、即座に鮮明な夢を見ている状態に陥ります。これらの夢は、対象者が抱く最も深い願望や空想の実現という形式を取り、しばしば潜在意識下の要素と幻想的なシナリオを混在させたものとして現れます。この夢見体験の強度、内容、鮮明さは、対象者の意識を喪失させた打撃の威力と直接的な相関関係にあり、より強い打撃で意識を失った被験者ほど、より明快かつ詳細で共感性の高い夢を見たと報告しています。

なお、留意すべき点として、SCP-8022の異常性は、鈍器外傷や打撃による肉体・精神への潜在的な悪影響に対していかなる防護力も付与しません。夢見体験を別とすれば、対象者の肉体は、粘土レンガで勢いよく殴られた際の外傷に対して予想される通りの反応を示し、適切な援助や安全対策を講じなければ負傷や死に繋がる可能性があります。

SCP-8022に繰り返し曝露しても、その異常な影響力は減衰しないようです。しかしながら、長期間に及ぶ曝露や過剰な曝露は精神衛生への悪影響を及ぼす場合があります。

補遺8022-1: SCP-8022は、地方法執行機関に潜入していた財団エージェントが、レンガを用いた暴行事件について詳述する警察の報告書に着目したのをきっかけとして、財団の注目を集めました。後日、SCP-8022の異常性や、それらの夢を誘発する手段としてのレンガの使用など、警察報告書と一致する詳細事項を含む関係者2名の通話が傍受されました。

この情報に基づいて、機動部隊タウ-15 (“想像具象化師”)イマジニアズ が派遣され、現地住民が所持していたSCP-8022を発見しました。クラスB記憶処理が施され、SCP-8022は無事確保されました。

補遺8022-2: SCP-8022の異常な影響力の性質と限界への理解を深めるため、現在も試験が進められています。また、潜在的な応用の研究も検討されており、倫理委員会の承認待ちです。


試験ログ:

試験A
被験者 D-346
手順 D-346は、SCP-8022によって30ニュートンの力で頭部を殴打され、意識を喪失した。
結果 D-346は愛する人々に囲まれてジェットスキーをする夢を見たと報告した。
試験B
被験者 D-415
手順 D-415は、SCP-8022によって40ニュートンの力で頭部を殴打された。
結果 D-415は、芸術界の巨匠となって世間に認められ、作品が世界中の権威ある美術館に展示される鮮明な夢を見たと述べた。
試験C
被験者 D-569
手順 D-569は、SCP-8022によって60ニュートンの力で頭部を殴打された。
結果 D-569は、超自然的な能力を発揮し、熱心な信奉者たちから神のような存在として崇拝される強烈な夢を経験した。

SCP-8022 - 試験D

序: 次の試験は、SCP-8022がもたらす夢は対象者が理論上知り得ないはずの外部情報を取り込むことができるのか、それとも夢は対象者の潜在意識のみに由来しているのかを断定する目的で実施された。


[記録開始]

D-384は実験室に入室する。彼は、椅子に座り、更なる通達があるまで何もしないように指示されている。彼が着席すると、インターコムが作動する。

アプキンス研究員: D-384、注意して聞くように。君はテーブルがある部屋にいる。テーブルの上には、プラスチック製のカップが置いてある。

D-384: オーケイ? それで?

アプキンス研究員: カップの下には、パスワードを記した紙が入っている。もし、そのパスワードを回収し、記憶できたなら、君は報酬として解放されるだけでなく、多額の資産を与えられる。

D-384: えっ、ウソ? マジかよ!? 俺をからかってるわけじゃないよな?

アプキンス研究員: そんなことはない。さて、パスワードの回収を試みる前に、君はパスワードを知りたいという願望に本気で集中しなければならない。

D-384はカップに手を伸ばそうとする。

アプキンス研究員: 待った! まず後ろを向いてくれ。

D-384はカップを持ち上げる前に手を放し、溜め息を吐く。

D-384: やれやれ、分かったよ。

D-384は椅子の向きを変えて壁に向き合う。

D-384: なんでいちいちこんなことする必要があるんだよ?

アプキンス研究員が入室し、D-384の頭部に向かってSCP-8022を振りかぶる。

アプキンス研究員: 特に理由は無い。

[記録終了]


結果: D-384は約40分後に覚醒した。夢の内容を説明するように求められたところ、D-384は持ち上げたカップの下に銃を発見したと報告した。彼はその後、アプキンス研究員を至近距離から射殺し、進路上のあらゆる人物を撃ち倒しながら施設内を逃げ回り、最終的にはハリウッド女優 スカーレット・ヨハンソンの支援を得てヘリコプターで逃走したと述べた。今回の試験では決定的な結果が得られなかったため、更なる分析と実験が必要である。


回収資料


特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。