SCP-3998
: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)); }
}
評価: +130+x
アイテム番号: 3998
レベル2
収容クラス:
safe
副次クラス:
{$secondary-class}
撹乱クラス:
vlam
リスククラス:
warning

配属サイト サイト管理官 研究責任者 担当機動部隊
サイト-45 編集済 スチュアート・ヘイワード博士 編集済

3998.jpg

回収時のSCP-3998。

特別収容プロトコル: SCP-3998は安全保管ロッカー3998-1(SHL 3998-1)に収容されます。SHL-3998-1には防火措置を施し、酸素が入るのを防ぐために真空封入しなければいけません。SCP-3998とSHL-3998-1は毎日午前9:00に清掃が予定されます。

Dクラス職員の自発的な発火事象が起こった場合、SCP-3998の収容ロッカーの封を点検し、必要に応じて修復/交換しなければいけません。安全上の理由から、サイト-34にはDクラス職員、特に第一級殺人および家庭内暴力で有罪判決を受けている者を配備しなければいけません。

職員がSCP-3998の標的となったことが判明した場合、それらの職員は調査の後に処理されます。

説明: SCP-3998は17世紀後半に死亡した人間の死体です。SCP-3998には脚部が欠如しており、広範な第四度熱傷に覆われています。死後の何処かの時点で、SCP-3998の残骸は収集され、編み細工・釘・ワイヤーで一つに纏め上げることによって、案山子の形状に仕立て上げられています。深刻な火傷に加え、SCP-3998は身体の複数箇所に鈍的外傷を負っているようです — SCP-3998の死因がどちらか片方なのか、両方なのかは不明確です(試験3998-6を参照)。

当該オブジェクトは、主にエタノールとヒト脂肪からなる可燃性の液体を継続的に骨から滲出させています。毎晩、午後11:00から翌日の午前4:00 まで、SCP-3998は発火して炎に包まれます。しかしながら、極めて可燃性が高いにも拘らず、SCP-3998は構造的なダメージを一切受けません。SCP-3998が炎上している状態で適切に収容されていない場合、最も近くにいる特定条件を満たした人物もまた自発的に発火します。

SCP-3998は、恋愛関係にあった相手を殺害1、または肉体的に虐待した人物を標的とします。自己発火できない状態のSCP-3998は、標的を発火させることもできません。その代わり、標的とされていたであろう人物は、胸部または後頭部に短期間の軽い痛みを感じます。

標的が燃えるままに放置されていると、大量の沸騰したエタノールが胃の中に出現します。このアルコールの大量流入は通常、嘔吐を誘発して更なる外部熱傷を引き起こし、仮に標的が初期の炎上を生き延びたとしても、多くの場合は恒久的な神経および臓器の損傷をもたらします。

最終的には、標的の体脂肪、特に胴体部/腹部のそれが溶け始めます。このプロセスは極めて急速であり、もし標的が第四度熱傷で死亡する前に成功裏に消火された場合、しばしば大規模な体内へのダメージを及ぼします。

炎上を放置すると、溶けた脂肪とエタノールの混合物が胃の激しい破裂を招き、その過程で往々にして犠牲者の肉体は二分されます。SCP-3998が消火されない限り、SCP-3998に影響された人物の消火は不可能です。



補遺-3998-1:

序文-3998-0

SCP-3998文書

scp3998.PNG

以下はSCP-3998関連の文書・資料、並びにSCP-3998が当初発見された不動産から回収された関連する手紙・記事の部分的集合です。

これらの文書群は、特殊3998クリアランスを有する職員、現任のサイト-34管理官、O5指定職員のみに閲覧が許可されます。

補遺-3998-2: SCP-3998の収容後、マサチューセッツ州における一日あたりの殺人件数が、0.32件から0.48件への特筆に値する増加を示しました。これらの死の大部分は放火殺人であり、犠牲者たちは暴力犯罪の加害者であることが知られています。犠牲者は第四度熱傷に覆われており、胸部から骨盤にかけて内臓が抉りだされていました。

これらの殺人に関する情報は、死体が公共の場で発見され、“ウィッカー・ウィッチ”の仕業であると見做されたために収容ができませんでした。一般民衆は、これらの殺人事件の加害者はウィッカー・ウィッチ伝説にインスピレーションを得た連続殺人鬼であるという説を信じるように誘導されています。Euclidへの分類は、関係者の捕縛と収容待ちの状態です。

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