SCP-9991

評価: +21+x
blank.png


君たちは私から名前を奪った。
君たちは私たちから土地を奪った。
だが気まぐれを奪うことは決してできない。

: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)); }
}
アイテム番号: 9991
レベル3
収容クラス:
euclid
副次クラス:
{$secondary-class}
撹乱クラス:
ekhi
リスククラス:
warning

lapupu1.png

「グラス」カラーのSCP-9991実例

特別収容プロトコル: 回収された全SCP-9991実例は密閉コンテナに保存し、サイト-19の保管施設に収容してください。週に2回塩水がスプリンクラーシステムで散布され、活動を無力化します。

オブジェクト内にヒ素と鉛が混入しているというカバーストーリーの下、SCP-9991の大量回収が開始されます。

従わない人物は収容上のリスクと見做されます。その場合、フィールドエージェントは財布、ベルト、その他の取り付けられた物品とオブジェクトとの連結を切断してください。これが不可能な場合、地元の法執行機関が、確立されたカバーストーリーに基づいて、残りの実例を確保する権限を与えられます。

説明: SCP-9991はカルチャーショック社の製造する「クリーチャーズ」シリーズより「ラププ」として販売されている、大量生産された高さ15 cmの縫いぐるみペンダントです。全生産の停止前に、推定50,000体の実例が流通したものと思われます。解剖では、ビニール、シェルパ、ポリエステル繊維充填剤で構成されており、機械的・生物的要素は有しないことが確認されました。

オブジェクトは移動が可能で、2音節を繰り返す形の発声1が可能ですが、これらの機能に必要な部品が欠如しています。実例は一般大衆と財団職員を区別する能力を有します。子供の被験者からの複数の報告において、実例が家庭用品を並べ直したり、食品や小型の所有物を盗むのが目撃されたと主張されています。

SCP-9991は認識災害性質を呈します。所有者は接触後、反社会的行動の増加を示します。統計によると、暴力、テロリズム、反権威主義的情動、宗教的価値観への対立、抑うつ、ストレスへの相関関係があります。

神学部門の研究者らは、その異常性を古代メソポタミアの神格パズズの悪魔的影響によるものとしています。

SCP-9991は米国と英国で人気が高まった後、親世代やキリスト教コミュニティから広範な反発を受けました。多くの人物は、子供への悪影響を主張しました。ある事件では、SCP-9991の所有者である少女が両親に繰り返し噛みついたと報告されており、「悪魔憑き」として説明されました。オンラインフォーラムのユーザーらは、所有者が最後に置いた場所から実例が移動したと報告しました。複数の国で行動への影響を理由に「ラププ」が禁止・押収された後、財団は調査を開始しました。全ての実例が異常活動試験で陽性でした。

作者のフレデリック・サンの調査の結果、彼のアナート経歴が判明しました。

«フレデリック・サンへのインタビュー»

記録日: 2025/07/01
インタビュアー: ベネディクト・ハート博士
インタビュー対象: フレデリック・サン
前記: フレデリック・サン捜索のための調査が開始された。サンは財団の拘留から逃れようと試み、一切のソーシャルメディアに投稿を行わなくなった。エージェントは、香港の彼のアパートが放棄されているのを発見した。サンは後にイギリス、コーンウェルで拘留された。


«映像開始»

<サンは歩き回り、カメラを見上げ、また視線を逸らす。彼は何かをつぶやき始めるが、カメラには捉えられなかった。>

ハート: サンさん、お席に座ってください! お茶は好きですか? そうですね…… アールグレイ、抹茶、カモミールティーがありますよ。

サン: いや。

<サンはハートの向かいの椅子に座って腕を組む。>

ハート: あー。

<ハートは目を細めて席に着く。>

ハート: サンさん、友好的に行きたいと思っています。同意してくださればあなたは家に帰れます、このこと全部やラププについて忘れましょう。

サン: あんたらが何の集団かはわかってるぞ。ファシスト連中に協力する気はない。

<ハートは聞こえる声で笑う。>

ハート: 約束しますが、私たちはあなたの周りの人が言っていたどの権威的な独裁国家よりもずっと優しいですよ。私たちのほとんどはファンタジーにちょっとのめり込みすぎたオタク集団で、それを守るために働いてるんです。

ハート: コーンウェルで何をしていたのですか?

サン: 旧友に会いたかった。

ハート: 以前、あなたについて調べました。ここコーンウェルでしばらく過ごしてたんですよね? その経験が「クリーチャーズ」シリーズのインスピレーションになったと。

<サンは腕を上げる。>

サン: ワオ、本物の研究員がいる。俺のウィキペディアを10秒見ただけで人生史を知ってやがる。

<ハートは首を振ってため息をつく。>

ハート: それであなたのご友人とは?

サン: 角生えた男だよ。あんたらが何者か、あんたらの全部を知ってる。そいつはあんたの上司と喜んで話するだろうな。

ハート: その悪魔はあなたが人を傷つけていると知っているのですか? それともそれも彼の計画の一部なのですか?

<サンはぎこちなく笑う。>

サン: あの娘たちは誰も傷つけない! そんなふざけた話信じるなんてとんだクソバカだな! あの娘たちはただの女の子なのに!

<ハートは笑顔を見せない。サンは沈黙する。彼の笑みは小さくなり、ハートと目を合わせる。>

サン: おおぅ、マジっぽいな…… 今回はつまりその件で?

ハート: その縫いぐるみと、子供たちが悪魔に取り憑かれたように走り回ってうなって人に噛みついてることに相関関係があると聞きました。

<サンは立ち上がって扉に向かう。>

サン: こんな話もう無意味だ、俺は帰る。

<サンは扉を開けようと2分間格闘する。彼は諦めて席に戻る。>

<サンは30分間沈黙を保つ。>

ハート: 一日中続けられますよ。私は帰ってもすることがないもので!

<ハートはぎこちなく笑う。>

<サンは更に30分間沈黙を保つ。>

サン: 俺はアートを作った、心から真剣に作った。商品化して市場に出回ったとはいえ、あの娘たちは今も俺の娘だ。あの娘たちを—子供を操る悪魔なんて言って中傷することは馬鹿なだけじゃなくて、俺ともう一人の父親が標榜する全てへの攻撃だ!

ハート: 父親

<サンはこれ以降ハートからのあらゆる質問への回答を拒否した。>

«インタビュー終了»

補遺SCP-9991-1: 7月25日現在、既知の全てのSCP-9991製品の収容に成功しました。管理者は収容プロトコルの更新について声明を発しました。

通達


SCP-9991の大規模さのため、実例の大半は可能な限り焼却されることが決定された。各色1体ずつは今後の研究のために保存してかまわないが、何千もの恐ろしい悪魔を倉庫に散らかしておく必要はない。


管理者

補遺SCP-9991-2: 7月28日、収容違反の結果として、約1万体のSCP-9991実例が焼却手順中に解放されました。この出来事の後、収容スペシャリストのトロイ・ラメントはインシデントに関するメモを残しました。

これまでの人生で、数えきれないほど悪魔、インプ、羅刹、鬼に遭遇してきた。呼び方は何でもいい。財団に来る前から悪魔祓いをやってきた。そこで徹底的に、フールプルーフが最優先だと学んだ。しかし今回は、封印も拘束も、防護措置すら見なかった。聖水の代わりに塩を使っていた。きっと地域的な慣習か何かだと自分を納得させていた。命令が下されるまでは。

管理者は、例の人形を焼却するよう指示した。

従いはしたが、内心反対していた。悪魔を祓う方法に燃やすものはない。獣を解放して、魂から魂へと飛び移らせるだけだ。管理者は他の誰よりもこれを知ってるはず。間違いない。でも僕はここに立って、疑問を持たずに命令を実行した。

箱を螺旋状に並べさせられた。また例の形だ、どこででも見る。炎が上がって煙が鼻を衝くと、声が聞こえた。

その時、何故何もかも筋が通っていないのか理解した。

あの人形の中にいたのは悪魔じゃない。

子供たちだったんだ。

管理者はそれを知ってたんだ。

8月1日現在、収容違反した実例の回収の取り組みは進行中です。現状、発見された実例はいません。

: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)); }
}
アイテム番号: 9991
レベル5
収容クラス:
keter
副次クラス:
{$secondary-class}
撹乱クラス:
dark
リスククラス:
notice

特別収容プロトコル: 以前にSCP-9991実例に対し確立された全ての収容プロトコルは、即時焼却または物語からの消去を除いて効果がないことが示されています。実例の大部分が螺旋の茂みへと帰還したため、積極的収容はもはや優先事項とは見做されません。介入の試みは、一般人と接触した場合にのみ必要です。本物か偽物かを問わず、更なるSCP-9991実例を製作している工場は直ちに強制捜索されます。

大衆との接触を阻止するため、全ての輸入品に高関税を課します。

lapupu.png

不明なアーティストによるプーカのイラスト

説明: SCP-9991は大量生産された縫いぐるみペンダントの形状を取る、幼年の雌のプーカ2の集団です。実例は3歳から7歳までの人間の子供と同等の認知・行動機能を示します。大規模な収容違反の後、実例は財団に敵意を示し、オフィスを煤で汚損したり、卑猥なメッセージを書いたり、器具を破壊したり、食料を荒らしたりしています。

SCP-9991は形態変化が可能で、一般的には動物の耳が生えた人間の女児またはシェトランドポニーの姿を取ります。縫いぐるみ形態における色は、どの形態の毛髪・毛皮においても一貫しています。

一般人との交流は概して平和的です。SCP-9991実例はしばしば悪ふざけや悪戯に興じたり、焼き菓子と引き換えに家事を行ったりします。実例が人々に車に乗るよう申し出て、しばしば深く暗い森の中を冒険してから家に帰すという多数の報告があります。SCP-9991との遭遇は、健康状態や農業収穫の改善と関連付けられています。

現在の形のSCP-9991は、元の実例の大部分が失われた子供たちの地に追放されたか、財団-妖精戦争3時に物語的に消去された後、エントロピーに満ちたろくでなしがフレデリック・サンと接触した際に出現しました。これにより、SCP-9991は再び大衆の前に姿を現すこととなりました。

虚ろな木々の場所に逃げる前、管理者が以前所有していたSCP-9991実例は、蹄を持つ者と接触を確立するための指示を残しました。

«嘗ての妖精宮廷道化師へのインタビュー>

記録日: 2025/08/22
インタビュアー: 管理者
インタビュー対象: 不調和の鹿
前記: 管理者は2人の武装職員とカメラオペレーターを伴い、ねじれたオークの端で対象と会うことを取り付けた。


«映像開始»

<螺旋状の蔓から裂けた足を持つ背の低い者が現れ、地面から蹄を持ち上げながら縫うように進み、管理官の周りを回る。>

やあやあ! 実に久しぶりだねぇ。どれくらいぶりだ—一世紀? もっとかな? まぁだ39超えてるようには見えないねぇ。どんな秘密を隠してる? 罪なき者の血から作られた保湿クリームか、それともヒマシ油か?

おおっと、礼儀を失敬していた! どうやらそちらのお名前を失念してしまったようだ…… 私はなんて無礼なんだ! 何だったか思い出させてくれるかい?

管理者: その手には乗らない。

<3つの目を持つ者は怒って脚と腕を組む。>

名前の持つ力は、そしてどれだけ私たちを物語の本から丁寧にこすり落としてきたかは知っているね。だが素晴らしいと思わないかい? 娘たちのことはきっと見ただろう。あの娘たちは君たちや、おとぎ話に出てくる煮えたぎった財団なんかを恐れて生きてはいないんだ。君たちがどれだけ気まぐれを奪い去ろうとしても、あの娘たちはまだこの灰色の世界に楽しみを見出してる。遂に私たち二者を縛る悪しきサイクルを断ち切れるかもね。

管理者: お前は再び世界を混乱に陥れた。お前の種にとっては、我々人間社会にちょっかいをかけるのはただのお遊び。でも私たちにとっては、お前の不和の種は苦しみと死を招くだけ。

<彼女は一瞬沈黙する。>

管理者: これを最終警告と考えなさい。お前の醜い子孫をこれ以上傷つけたいとは思わない。でも続けるなら、残っている者も完全に消去する。お前の大切な人女王と同じように。

たとえ君の要求に従ったとして、全人類の中でよりによって君が、私たちの抹消に少しでもためらいを見せるものか疑わしいね。既に娘を何千と殺戮してきて、まだ君の飢えは増すばかりだ。もしできるものなら、あの娘たちの残りと同じように私だって消去するだろう。それができていないことに永遠に苛立ってる。私は君の中の常套から外れてるんだ。

ただまあ、自分の財団に嘘をついて、私たちを暴力的な悪魔として塗りつぶすなんてのは最低記録更新だと認めざるを得ないね。手綱を握れてもいないのに、人類が妖精の魔法で強化されるなんて考えが、君には耐えがたいみたいだ。

ねぇ、過去3回見かけたときから君や評議会の人たちが一日も老けてないのは何でなんだい?

管理者: 心がどれだけ歪んでいようが、奥底で私に勝てないことはわかっているでしょう。なら何故奴らはまだ歯を見せて笑っている?

<歌うサテュロスは笑い始める。>

君たちは私たちの名前を奪い、私たちの魔法を使って、私たちの地を自分のものだと言った。でも君たちには決して手に入らないものがある。それが今君の前に立っている理由だ。サイト-19の廊下で私の顔が君に付き纏う理由だ。

私たちの気まぐれを奪えはしない。

<一歩一歩、自然の妖精は口笛を吹き始める。風は動物のうなり声のような音を立てる。頭を傾け、唇を曲げ、礼儀正しくお辞儀をし、野獣は戻っていく。ギッターン4の最後の音がハリエニシダとヒイラギの間に鳴り響く。>

«インタビュー終了»

補遺SCP-9991-3: 2025年9月現在、「ラププ」の人気は急激に低下しています。遭遇の報告は大幅に減少しました。9月7日、管理者がオフィスに到着すると、ドアに一連の手描きの絵と写真が釘付けにされていました。

BUBU.png

パパとお祭り騒ぎしよう


炎の中に失われたみんなを覚えてる?
管理者様?




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