SCP-8597
guythumbnail.jpg

.


: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)); }
}
評価: +24+x
blank.png

by PlaguePJP & J Dune

アイテム番号: 8597
レベル3
収容クラス:
euclid
副次クラス:
{$secondary-class}
撹乱クラス:
{$disruption-class}
リスククラス:
{$risk-class}

slideshow1.png

SCP-8597の冒頭スライド。


特別収容プロトコル: アクティブなSCP-8597実例が発見され次第、財団ウェブクローラ-TT-01 “周受資の逆襲” による標準的なオンラインコンテンツ除去プロトコルが実行されます。民間人がSCP-8597-1個体に遭遇した場合は、標準的な記憶処理プロトコルに従います。

説明: SCP-8597は、ソーシャルメディア 兼 コンテンツアプリケーションの TikTok にアップロードされるスライドショーです。

SCP-8597は13枚の画像で構成されています。視聴すると、クロード・ドビュッシーの“月の光”の30秒間のオーディオクリップがループで再生され始めます。最初のスライドは “きみのつき、きみのやつ” というタイトルカードになっており、それに続いて12枚の画像が流れます。各画像では1体のSCP-8597-1個体、その名前、及び特徴が説明されています。

SCP-8597-1は、SCP-8597を視聴すると自然に出現する、歴月に対応した12体の異常な実体の総称です。視聴者の誕生月が、12体のうちいずれが出現するかを決定する要因となります。

SCP-8597-1個体が出現するためには、ユーザーが自分の誕生月と対応するスライドを60秒以上画面に表示している必要があります。なお、タイトルカードはユーザーに“つよくしんじる”ように指定していますが、ユーザーの信念とSCP-8597-1の出現可能性を関連付ける証拠はありません。SCP-8597がユーザーのデバイス上で再生されている限り、SCP-8597-1個体はユーザーの近くに留まり続けます。

ユーザーがSCP-8597から別なコンテンツへとスクロールするか、アプリケーションを閉じるか、デバイスの電源を切ると、SCP-8597-1個体は激しく爆発し、血液と内臓の他、テキストで“悲しい顔”を表現した絵文字1だけが記された紙片が代わりに残されます。ユーザーは上記の出現パラメータに従うことで、自身に対応するSCP-8597-1個体を再出現させることができます。

補遺8597.1: SCP-8597-1個体

いちがつ
ばいきゅりあす ふらんく (bicurious frank)

frank.png


- うほうほ うきうき
- ほしいものには おしっこを かける
- ざいせい ほしゅ しゅぎしゃ

説明: SCP-8597-1Aは、口語的に“バイセクシャル・ライティング”と呼ばれるピンク・紫・青の光に包まれたキンシコウ (Rhinopithecus roxellana) です。SCP-8597-1Aの照明効果は周囲1m以内に作用します。

SCP-8597-1Aの知性は6~11歳のヒト幼児と同程度です。発話能力はありませんが、短い文章を走り書きする (読解は可能) ことができます。SCP-8597-1Aはしばしば、自身を出現させたユーザーを説得して金融投資を行わせようと - 具体的には、ゲームストップとテスラ・モーターズの株式、並びに数種類の暗号通貨を購入させようと - します。

SCP-8597-1Aは自身の“バイキュリアス”という呼び名に激しい不快感を示しており、“ふつーにふらんくてよんでよ”と要請し、頻繁に呼び名を“むりぢーして”いることを財団職員に謝罪します。この明らかなストレスの結果、SCP-8597-1Aはこれまで幾度も過呼吸を起こし、気絶しています。

補遺8597.2: 事件8597-アルファ

2022年11月24日、フランチェスコ・ホワイト次席研究員 (1992年2月29日誕生) が、SCP-8597の標準的な実験を行いました。誕生月と対応するスライドを表示したにも拘らず、いかなるSCP-8597-1個体も出現しませんでした。代わりに、ホワイトの携帯電話は過熱によってクラッシュしました。

その後1時間かけて、ホワイトの胃は著しく膨らみ始めました。ホワイトがサイトの医務室に搬送された際、看護師たちは彼の体温が基準値よりも10度低いことを確認しました。ホワイトに鎮痛剤を投与する試みは全て失敗し、腹部の塊が巨大化するにつれて、激痛を訴える声は絶え間ない絶叫に変わりました。塊はホワイトの体内で暴力的にうごめき、やがて彼はベッドから転がり落ちて、膝を突いた体勢になりました。塊はホワイトの消化管内を上昇し、彼の胸部・頸部に、本来ならば彼を意識不明に陥れるか、もしくは致命的となるはずの極端な膨張を引き起こしました。ホワイトは口から黒い粘性の液体を嘔吐し、続けて手のような器官2つと、それに付着した重量25ポンド相当の肉・毛髪・歯・眼球の不定形の塊を吐き出しました。

ホワイトは意識を喪失しましたが、完全に回復しました。携帯電話の電源が復旧し、彼が再びSCP-8597にアクセスしたところ、1枚のスライドが表示されました。


blob.jpg






閏日 (2月29日) に誕生した被験者に対して実験を繰り返し行ったところ、いずれも同一または類似の結果となりました。

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