SCP-8594

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

by PlaguePJP

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

特別収容プロトコル: SCP-8594は収容不可能です。SCP-8594の被影響者の発見は困難です。被影響者が発見された場合、当該人物とその存命親族全員に対して、標準的な記憶処理手順を実施します。

説明: SCP-8594は、愛する者が間もなく死ぬという永続的な確信として発現する寄生性アノマリーです。SCP-8594の被影響者はSCP-8594-1と指定されます。SCP-8594の発現を助長する因子は不明であり、愛する者を失うことへの一般的な恐怖心はSCP-8594を引き起こしません。その一方で、SCP-8594-1個体には次のような共通点が見られます。

  • 15歳未満で愛する者1との死別を経験している。
  • 不安障害と診断されている。
    • 大うつ病性障害も多く見られる。
  • 家族に遺伝性の病歴がある。
    • 多くの場合、SCP-8594-1はこの疾患の罹患者である。
  • SCP-8594-2から200km以上離れた場所に住んでいる。

SCP-8594-2は、SCP-8594が誘発する疾患の罹患者です。いかなる年齢の人物でもSCP-8594-2個体になる可能性があり、感染から1~2ヶ月以内に症状が現れます。SCP-8594誘発疾患の治療法はまだ発見されていません。以下は、SCP-8594-2が経験するSCP-8594誘発疾患の経過です。

病期 説明
1期 SCP-8594-2は倦怠感に見舞われ、しばしば10時間以上眠り続けるようになります。SCP-8594-2は起きている間も屋内に留まるようになり、長時間動き続けた後には関節や四肢の痛みを訴えます。
2期 SCP-8594-2は量の多い食事を嘔吐するようになり、しばしば便秘による腹痛を訴えます。
3期 SCP-8594-1に促されて、SCP-8594-2は医療機関を訪れ、多数の検査を受けます。これらの検査で特段の異常は発見されません。0.056%の症例で、SCP-8594-1はSCP-8594-2に治療を受けるよう圧力を掛けようとしません。その場合、SCP-8594-2の体調は2週間以内に完全に回復し、SCP-8594はSCP-8594-1に影響を及ぼさなくなります。
4期 SCP-8594-2は寝たきりになり、痛みを伴わずに身動きできなくなります。SCP-8594-2が吐き出さずに摂取できる栄養は、少量の液体だけになります。
5期 SCP-8594-2の身体は体液貯留によって膨満し始めます。四肢や末端の触り心地は硬くなります。主要な臓器が機能しなくなり、皮膚と強膜が黄色味を帯びます。多くの場合、SCP-8594-2はこの段階で医療機関に収容されます。医療処置の有効性はまちまちですが、往々にしてSCP-8594-1がその場に居るか否かに左右されます。SCP-8594-1が不在の場合、7期及び8期の発症は大幅に遅延します。
6期 SCP-8594-2は一時的な昏睡状態に陥りますが、7日以内に意識を取り戻します。SCP-8594-2は口頭で伝えられる情報に対して、微笑む、頷く、顔をしかめるなどして、ごく簡単な意思疎通を行うことができます。栄養補給は静脈内投与で行う必要があります。片目または両目の失明が一般的に起こり、脚には壊死が認められます。医療専門家は依然として、SCP-8594-2の疾患についての具体的な診断を下すことができません。
7期 SCP-8594-2との意思疎通は不可能になります。SCP-8594-2はしばしば眠り続け、ごく稀に明瞭な意識を取り戻すと、弱々しく痛みを訴えます。壊死は脚から胴体下部へと進行します。SCP-8594-2はやがて完全に失明し、聴力を喪失し、更に身動きが取れなくなります。ほぼ全ての臓器が機能しなくなりますが、脳だけは疾患から影響を受けません。流体が詰まった四肢や末端の膿疱は、時間とともに膨張し、破裂します。鎮痛剤の効果はありません。
8期 SCP-8594-2の心臓が鼓動しなくなります。これにも拘らず、脳スキャンは全く影響を受けていないかのような脳活動を示します。SCP-8594-2は生き続けます。

SCP-8594-1が別れを告げるまで、SCP-8594-2は死去しません。

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