SCP-5749

評価: +12+x

⚠️ content warning
: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)); }
}
アイテム番号: 5749    
レベル1    
収容クラス:
neutralized    
副次クラス:
none    
撹乱クラス:
none    
リスククラス:
none    

loberIV.png

無力化前のSCP-5749。写真はSCP-5749の影響を受けた漁師の一団が撮影。


特別収容プロトコル: SCP-5749は無力化しており、その死体は非異常であるため、収容プロトコルは必要ありません。

説明: SCP-5749はPalinurus elephas、より一般的にはヨーロッパイセエビとして知られる種のロブスターでした。SCP-5749は未知のプロセスによる異常な生存戦略を確立していました。

この生存戦略はSCP-5749に関する人間の意図を変更させることから成っていました。SCP-5749に特定の行為を実行する技能と意欲を有する人物は、SCP-5749の周辺1に接近すると、その行為を実行する技能と意欲を完全に失いました。被影響者は代わりに、それまで関心を抱いていた事とは別の行為に並外れて熟達し、それをSCP-5749に実行する意欲を得ました。SCP-5749はこの能力を活用して当該区域の漁師による捕獲から逃れていたものと思われます。

SCP-5749は、魚を罠に掛けることが不可能と伝えられる "呪われた釣り場" の噂をきっかけとして発見されました。この噂から地元の漁師たちが当該区域で罠に掛けようと試みるに至り、やがて彼らもSCP-5749の影響を受け、さらに伝説が広まる結果となりました。


補遺5794.1: 無力化

SCP-5749を収容するために派遣された数チームが失敗した後、収容の経験が浅いチームであればSCP-5749の効果を活性化させずに捕獲できるという期待から、数名の用務員で構成されるチームを利用した最後の試みがなされました。不適切な経歴に関する審査の結果、カヤックの経験がある元ボーイスカウトのアンドリュー・マーキュリーがチームに加入しました。

出発したチームはSCP-5749を捕獲できましたが、マーキュリーはチームのカヤックを岸まで漕ぐよう頼まれた際に、SCP-5749の影響を受けました。マーキュリーはオールで火を起こし、SCP-5749を加熱調理しようとして、他数名のチームメンバーから止められました2

SCP-5749はチームが介入する前に火の熱で死亡しており、チームが岸に到着した際に無力化が確認されました。


補遺5749.2: 関連文書

2021/05/06

SCP財団内部法廷部門

以下は2021年5月6日の財団内部法廷部門の議事録 (議題: SCP-5749の無力化) です。

被告人: アンドリュー・マーキュリー

容疑: 無認可でのSafeクラスアノマリーの無力化


2021年5月6日、アンドリュー・マーキュリーがSafeクラスアノマリーを無認可で撲滅した罪で裁判を受ける。被告側は、強迫的なアノマリーの影響下にあったために罪は適用できないと抗弁し、無罪を主張した。検察側は、SCP-5749の影響は抵抗できないほど強力ではないために罪は適用可能であると主張した。この議題に関する評議会投票は以下のように記録されている。



有罪 無罪 棄権
6 7 0


2021/05/06

SCP財団内部法廷部門

以下は財団内部法的部門からの通達です。

5月6日の裁判の投票が僅差であったため、検察側は控訴権が認められます3。再審は2021/06/03に予定されています。

- グリフィン・ユーゴ、Esq.、内部法廷部門

2021/05/07

SCP財団内部法廷部門

以下は財団内部法的部門からの通達です。

この事件の緊急性から、6月3日に行われる再審は2021年5月10日に繰り上げとなりました。

- グリフィン・ユーゴ、Esq.、内部法廷部門

2021/05/10

SCP財団内部法廷部門

以下は2021年5月10日の財団内部法廷部門の議事録 (議題: SCP-5749の無力化) です。

被告人: アンドリュー・マーキュリー

容疑: Safeクラスアノマリーの第二級謀殺罪


2021年5月10日、アンドリュー・マーキュリーがSafeクラスアノマリーの第二級謀殺の罪で裁判を受ける。被告側は、不明な理由で謀殺は正当化されていたと答弁し4、無罪を主張した。検察側は、アノマリーの謀殺は決して正当化されないと主張した。この議題に関する評議会投票は以下のように記録されている。



有罪 無罪 棄権
6 6 1

2021/05/10

SCP財団内部法廷部門

以下は財団内部法廷部門からの通達です。

ITD評議会のうち、7名がその行為の悍ましさから解任されました。アンドリュー・マーキュリー事件の再審は2021/05/11に予定されています。

- グリフィン・ユーゴ、Esq.、内部法廷部門

2021/05/11

SCP財団内部法廷部門

以下は2021年5月11日の財団内部法廷部門の議事録 (議題: SCP-5749の不当かつ不慮の殺害) です。

被告人: アンドリュー・マーキュリー

容疑: 無実のSafeクラスアノマリーの第一級謀殺罪


本日2021年5月11日、アンドリュー・マーキュリーが裁判を受ける。被告側は罪を認めた5。この議題に関する評議会の投票は以下のように記録されている。



有罪
6


アンドリュー・マーキュリーは第一級謀殺と暴行の罪で死刑を宣告された6。当人の処刑は2021/05/12に予定されている。


補遺5749.3: 関連ファイル

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