SCP-7590


: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)); }
}
評価: +9+x

by PlaguePJP

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

house.png

SCP-7590イベント。


schwimmer-min.png

デヴィッド・シュワイマー氏。

特別収容プロトコル: デヴィッド・シュワイマー氏の複数の死が公になることを防ぐことに収容活動は向けられています。シカゴ、ニューヨーク市、ロサンゼルスの計四か所のシュワイマー氏の住居には職員が駐留します。シュワイマー氏が蘇生した場合は即座に最寄りの財団サイトに収容します。

説明: SCP-7590は、アメリカ人で俳優兼コメディアン兼プロデューサーのデヴィッド・シュワイマー氏の死とその後の蘇生を引き起こす継続的な異常現象です。SCP-7590イベントは無作為に発生し、確実にデヴィッド・シュワイマー氏の死をもたらします。

SCP-7590イベント後一日から七日以内に、シュワイマー氏はアメリカ合衆国内の四軒の自宅の内一軒で蘇生します。彼はSCP-7590イベントを明白に認識していませんが、依然として死亡以前の経験を記憶しています。SCP-7590イベントはシュワイマー氏のみに局所的に発生するのではなく、周辺区域や付近の人物に被害をもたらします。

SCP-7590の正確な原因は不明ですが、財団の研究員は既知の最初のイベントが、1990年代半ばから2000年代初頭まで放送されていた人気連続コメディ番組であるフレンズの初回放送から一日後に発生したと断定しました。

補遺7590.1: SCP-7590イベント記録要約

イベントID: 7590-01

日付: 1994年9月23日

SCP-7590イベント説明: シュワイマー氏は『フレンズ』のプロデューサーと共に「セントラル・パークCentral Perk」のセットを偵察中に人体自然発火を起こし、前述のセットの大部分を焼き尽くしプロデューサーを死亡させた。

余波: シュワイマー氏の死はその日のうちにメディアに報じられ、敬意を表して『フレンズ』第一シーズンを打ち切ることに関する議論が巻き起こったが、既存のエピソードをシュワイマー氏に捧げることや、ロス1の役割を担う代替キャラクターを探すことなどで意見が揺れた。この時点では財団は関与していなかった。

この事件から三日後、シュワイマー氏が第二シーズンに関する議論のため『フレンズ』のセットのもとに姿を現した。製作チームは驚き、すぐにロサンゼルス市警察に通報した。ロサンゼルス市警察に潜入中の財団エージェントが直ちに介入し、ベールの維持手順を策定した。

イベントID: 7590-03

日付: 2001年9月11日

SCP-7590イベント説明: 自身のプールで泳いでいた際、シュワイマー氏の水泳パンツがプール梯子のゴム製ストッパーに巻き付き、水面から頭部を出すことが不可能になった。ボディーガードを装ったエージェントが彼を救助した。三時間後、シュワイマー氏が泊まっていたホテルが炎上した。シュワイマー氏は人体自然発火により死亡した。

余波: 直ちにベールの維持手順が策定され、火災の原因をガス漏れであるとする偽情報キャンペーンが展開された。アメリカのメディアの注目は別件に集まっていたため、報道管制は不要だった。

イベントID: 7590-08

日付: 2002年3月3日

SCP-7590イベント説明: 今後のプロジェクトに向けて農場を調査していた際、シュワイマー氏は猫に下唇と顎を引っ掻かれた。当初は軽傷と思われたが、猫の爪に付着していた細菌により間もなく感染症を発症した。シュワイマー氏は入院したが、抗生物質による治療は効果がないと判明し、シュワイマー氏の健康状態は急速に悪化した。シュワイマー氏は後に人体自然発火により死亡した。

余波: 火災の際に70人が死亡、200人が負傷した。その後ベールの維持手順が策定され、再度火災の原因はガス漏れであるとし、被害者および犠牲者の家族には記憶処理が施された。

イベントID: 7590-12

日付: 2004年9月11日

SCP-7590イベント説明: 『フレンズ』の最終回の後、シュワイマー氏は身の安全とサイト-322での研究のために直ちに財団の収容施設に入れられた。同日、カオス・インサージェンシー率いる四つの要注意団体によるサイト-322への前例のない侵入が発生した。彼らの攻撃計画の一環として、電磁パルスを利用して高セキュリティ収容室への電力が遮断された。この区画にいたシュワイマー氏は解放され、逃走を図った。

シュワイマー氏は変装を試み、死亡したカオス・インサージェンシーのエージェントの体から衣服を剥いでそれを着たまま施設から出ようとしたが、出口の周りに境界線を築いた四十人の武装した財団エージェントと対峙することになった。エージェントは変装したシュワイマー氏を認識し、再収容プロトコルを策定した。シュワイマー氏はその夜遅くに人体自然発火により死亡した。

余波: シュワイマー氏が財団に拘留されている間、『フレンズ』の終了後シュワイマー氏はプライベート・アイランドで休暇を過ごしていたという偽情報キャンペーンが展開された。シュワイマー氏はシカゴの自宅で回収された後、再度収容された。

収容されている間、シュワイマー氏は無作為な人体自然発火イベントを経験し続けました。

補遺7590.2: 再分類

2004年11月23日、デヴィッド・シュワイマー氏はSCP-7590-1に指定されSCP-7590はThaumielに再分類されました。同時に、シュワイマー氏の所在についての疑惑を防ぐため、デヴィッド・シュワイマー氏の影武者が作成されました。その後影武者は解放されましたが、異常性による影響は確認されていません。これらの出来事は以下のインシデントを受けて起きたものです。

イベントID: 7590-27

日付: 2004年11月22日

SCP-7590イベント説明: シュワイマー氏は鎮静剤を投与され、爆発物として使用される可燃性の高い持ち運び可能な棺に入れられた。

この棺は機動部隊のヘリコプターに取り付けられ、一時的に反ミーム34-2Γに感染した。サイト-322への襲撃を実行したカオス・インサージェンシーの拠点の位置を三角測量した後、ヘリコプターは拠点へ飛行して棺を屋根の上に置いた。シュワイマー氏は後に人体自然発火により死亡した。

余波: インサージェンシーの拠点は全焼し、300人が死亡、600人が負傷した。シュワイマー氏はニューヨークの自宅で回収された。

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