SCP-7960
評価: +18+x

by J Dune

: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)); }
}
warning.png
アイテム番号: 7960
レベル2
収容クラス:
euclid
副次クラス:
none
撹乱クラス:
vlam
リスククラス:
notice

5094835608_92bf8d0fd1_b.jpg

挑発するSCP-7960

特別収容プロトコル: 財団職員1名がSCP-7960との結び付きを維持します。結び付きの確立後、この職員は外出を禁止されます。財団職員としての主な職務がこの手配の影響を受けることはありません。

説明: SCP-7960は平均的な人間並みの知性を示すコアラ (Phascolarctos cinereus) です。SCP-7960は生物学的に普通のコアラと区別できない反面、英語を発声・理解する能力があります。SCP-7960は極めて耐久性が高く、如何なる攻撃を加えても観察可能な傷害を負いません。

SCP-7960は1人の人間と絆を結び、その身体にしがみ付きます。SCP-7960を宿主の身体から物理的に除去することは可能ですが、いずれ宿主の身体に再出現するため、上記の収容プロトコルが必要とされています。

絆を結ぶと、SCP-7960は宿主に対して侮蔑的な言葉を浴びせ始めます。SCP-7960は負の強化を通して宿主を“改善”するのが究極的な狙いだと主張しています。財団が観察してきた限り、SCP-7960の取り組みにはほとんど効果がありません。

SCP-7960は宿主が死亡するまで結び付きを維持し、その後に改めて新しい宿主を指名できるようになります。宿主が指名されなかった場合、SCP-7960は最も近くにいる人物との絆を結びます。

補遺.7960.1: 経歴

SCP-7960は、現在既に倒産しているアメリカのオデッセイ出版社から発行されたコミック本 “ライフルキッド: 銃で遊ぼう” の1957年6月号に掲載された通信販売広告の発見後、財団の管理下に入りました。広告の書き起こしが以下に再現されています。

これは背中の猿1なんかじゃないぞ、坊や、こいつは

自分磨きコアラ

自分が問題だって知ってたか? 思い出させてやるから覚悟しろ。

いったん彼が活性化したら、もう小僧じゃない。小男になる時間だ!

自分磨きコアラは1匹しかない。彼は永遠。

$2000!

広告に併記された宛先は、オカルト物品の卸売業者として知られていたGoI-323 “ベター・ユース” の事務所でした。SCP-7960は財団によって購入され、輸送用の木箱から取り出された際に最も近くにいたエリア-179の衛生管理責任者 ポール・ダフィーと即座に結び付きました。ダフィーは2022年に死去するまでSCP-7960の収容スペシャリストを務めました。ダフィーの部下だったインターン生のイアン・ウーは、自発的にSCP-7960の次の宿主になることを志願していました。ウーはSCP-7960の収容に関する詳細事項の完全な説明を受けた上で、それを承諾しました。

ウーとSCP-7960の交流ログからの抜粋が以下に掲載されています。

補遺.7960.2: ログ

状況: ウーとSCP-7960の最初の交流。


ウーは端末に向かって座り、文書を編集している。SCP-7960がゆっくり這って入室し、ウーの身体によじ登り始める。

ウー研究員: おやっ、やぁ、君。どうも!

SCP-7960: 君は仕事が下手だな。

ウー研究員: (笑う) まぁね、でも頑張ってるよ。

ウーはタイピングを再開する。

SCP-7960: 君は仕事が下手だな。

ウーは動じない。彼はタイピングを続け、やがて手を休める。

SCP-7960: 平均的なアメリカ人は1分間に90単語をタイプする。君のタイピング速度は1分間に30単語だ。

ウー研究員: ちょっと待ってくれ、考え事をしてるんだ。

SCP-7960: 君は考えるのが下手だな。



状況: ウーは研究員の一団の前で報告書のプレゼンテーションを行っている。


ウーはスライドショーの前に立っている。SCP-7960はウーの背中にしがみ付いている。

ウー研究員: カールトン博士のこの研究の要点は、あらゆる異常現象を汎用性のあるモデルに適合させられるというものです。このモデルを—

SCP-7960: 君は演説が下手だな。

ウー研究員: あー、このモデルを4点方向モジュールと呼びます。

SCP-7960: 語彙から“あー”や“えー”などの穴埋め言葉を排除すれば、君はより良い人間になる。君は生まれつきカリスマに欠けているから未だにインターン生なのだ。

ウー研究員: 最初に想定すべき変数は根本的な偶然性です。

SCP-7960: “査定”だ。

ウー研究員: つまり — これはつまり — 根本的偶然性とは異常 — 異常な出来事を取り巻く、より大規模な形而上学的影響を指します。

ウーは数秒間沈黙する。彼は目を閉じ、息を吐いてから話し続ける。

ウー研究員: (囁き声) 頼むよ、止めてくれ…

SCP-7960: 君は私を説得するのが下手だな。



状況: ウーは顕微鏡を使用し、実験的な人工微生物の研究を支援している。


ウーは顕微鏡の上に屈み込んでいる。SCP-7960は横のカウンターに座っている。SCP-7960が顕微鏡のスイッチを切る。

SCP-7960: これを使ってはいけない。

ウー研究員: スイッチを入れろ、今は邪魔するな。

SCP-7960: 君は見るのが下手だな。

ウー研究員: クソ野郎、スイッチを入れろ。

SCP-7960: 視力の悪い先史時代の男は、遠くにいる捕食者を見つけられなかっただろう。君は死に、君の血統も途絶えていただろう。

ウー研究員: なぁ? いいからスイッチを入れろよ。

SCP-7960: 男はかつて戦争に行った。今の男はメガネをかけている。

ウーは腹立たしげにSCP-7960を掴んで持ち上げる。

SCP-7960: 弱い男は動物を殺す。もっとマシな事をやれ。

ウー研究員: 訳の分からない事ばかりぬかしやがって。やってられるかよ。

ウーは研究助手を呼んで微生物の分析を任せ、カウンターを離れる。SCP-7960が彼の背中に転移し、研究助手を指差す。

SCP-7960: 彼女は科学が上手だ。



状況: ウーは寮室でテレビを見ている。


SCP-7960: 君は下手だな。

ウー研究員: (溜め息) 何が?

SCP-7960: 全てだよ。

ウーはソファから跳び上がり、SCP-7960の首を絞めようとする。SCP-7960は唸り、ウーを引っ掻いて負傷させる。

ウー研究員: こん畜生、今度は引っ掻き攻撃か?

SCP-7960: もし君がコアラとの喧嘩に負けるのを女に見られたら、その女は君への性的な興味を全て失う。君は男としての機能を果たせなくなる。もし君がセックスをするなら、私はそれに対してコメントし、部屋から出るのを拒否する。だから君は女にアプローチするのを恐れる。

ウーはキッチンへ移動し、喘ぎながら傷を洗う。

ウー研究員: いったいどうなってんだよ、お前のその — 性差別は?

SCP-7960: 私は世界を理解するのが上手だ。



状況: ウーは財団職員としての資質の判定試験に向けて勉強しており、合格すれば昇進できる可能性がある。


ウーはページをめくり、メモをタイピングする。

SCP-7960: 君は落第する。

ウーはヘッドホンの音量を上げる。

SCP-7960: 君は落第する。

ウーは耳元に手を伸ばす。SCP-7960はヘッドホンをもぎ取り、破壊する。

ウー研究員: お前な! ふざけるのもいい加減にしろよ? このヘッドホンは100ドルもしたんだ、そして俺は出世できるように勉強してるんだ! お前はそれが嫌なのか? 俺を失敗させたいのか? 俺は自分磨きに力を入れてるのに、お前は問題しか起こさない!

SCP-7960: 君よりも若くても、もっと稼ぎ、もっとセックスをし、もっと成功している人々がいる。君は既に失敗している。

ウー研究員: ダフィーにもこんな事をやってたのか? 真面目な質問だ。

SCP-7960: そうだ。しかし彼は自分磨きが下手だった。だから彼は死んだのだ。



状況: ウーはコンピュータが査定試験の結果を処理し終えるのを待っている。


ウーは試験室の外に立っている。SCP-7960は彼の肩に座っている。

ウー研究員: 試験中は静かにしてくれててありがとう。本当に、本当に感謝してる。あとで… 小枝か何かくれてやるよ。

SCP-7960: 他の受験生たちの邪魔にはなりたくなかったのでね。彼らは一生懸命勉強してきたのだから、それは失礼にあたる。

試験監督がドアを開ける。

試験監督: それでは、試験カードを取り出してください。カード中央の円が緑色になっていれば、3時間以内に2A号室で結果を聞いてください。おめでとう、その人たちは合格です。円が着色されていない人たちも、引き続きよろしくお願いします。

ウーは試験カードを取り出す。円は着色されていない。

SCP-7960はウーを見つめながら微笑んでいる。ウーは片手で口を覆い、震えている。

ウー研究員: 何か言え。言えよ。その通りだ。お前が何を言おうと、それが事実だ。

SCP-7960は無言で微笑み続けている。


その後、ウー研究員はエリア-179のヘリパッドの頂点に登り、75フィートの高さの屋上から身投げしました。ウーは直ちに救命処置を受け、30ヶ所以上の骨折と重度の頭部外傷が治療されました。ウーは神経学的に無傷な状態で安定したものの、追って通知があるまでは医療休暇扱いとなりました。

以下のログは、ウーの容態が安定した直後のものです。

ウーは全身をギプスで固定され、病院用ベッドに横たわっている。彼はゆっくりと意識を取り戻す。

SCP-7960はベッドの足元に座っている。

SCP-7960: 君は自殺するのが下手だな。


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