SCP-5749

⚠️ 内容警告

: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 > * {
    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 (prefers-reduced-motion) {
    div.anom-bar-container { --timeScale: 0; }
}
 
/*-------------------------*/
 
@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; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@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的影响,更进一步地散播了该传闻。


附录5749.1:无效化

在派出数支队伍收容SCP-5749失败后,基金会派出一支由几名勤杂工组成的队伍进行最后的尝试,期望该队伍在收容方面的经验匮乏可以使他们不触发SCP-5749的异常效应而捕获它。由于背景审查工作不力,一个名为安德鲁·墨丘利Andrew Mercury的勤杂工被选入了队伍,此人曾是一名童军成员,有皮艇运动经验。

队伍出动并成功捕获到SCP-5749,墨丘利在被要求将队伍的皮艇划回岸边时受到了它的影响。墨丘利用划桨点起了火,并试图在火上烹烤SCP-5749,后被其他几名队员制止。2

队伍回到岸边后,SCP-5749被确认已无效化,在其他队员干预之前它就已经死于火焰的高温。


附录5749.2:相关文档

05/06/2021

SCP基金会内部审理部门

以下是基金会内部审理部门(ITD)2021年5月6日的会议记录,主题:SCP-5749的无效化。

被告:安德鲁·墨丘利

指控罪名:未经许可地无效化一个Safe级异常


安德鲁·墨丘利于2021年5月6日接受了审判,他被指控未经许可地处决了一个Safe级异常。被告拒不认罪,辩称该指控不能成立,因为他当时受到了一个强迫性异常的影响。控方认为该指控可以成立,因为SCP-5749的影响力还没有强到无法抗拒的地步。委员会对此进行了投票表决,结果如下:



有罪 无罪 弃权
6 7 0


05/06/2021

SCP基金会内部审理部门

以下是一份来自基金会内部审理部门的公告。

由于5月6日的审判投票结果很接近,控方有权提起上诉。3后续的审判定于2021年6月3日开庭。

05/07/2021

SCP基金会内部审理部门

以下是一份来自基金会内部审理部门的公告。

由于该案件的紧迫性,6月3日的后续审判已被提前至2021年5月10日。

——格里芬·雨果律师,内部审理部门

05/10/2021

SCP基金会内部审理部门

以下是基金会内部审理部门(ITD)2021年5月10日的会议记录,主题:SCP-5749的无效化。

被告:安德鲁·墨丘利

指控罪名:对一个Safe级异常实施二级谋杀


安德鲁·墨丘利于2021年5月10日接受了审判,他被指控对一个Safe级异常实施了二级谋杀。被告拒不认罪,辩称自己的谋杀行为有正当的理由4但理由不明。控方认为谋杀异常不论在何种情况下都是不正当的。委员会对此进行了投票表决,结果如下:



有罪 无罪 弃权
6 6 1

05/10/2021

SCP基金会内部审理部门

以下是一份来自基金会内部审理部门的公告。

7名ITD委员因行为失当被委员会除名。安德鲁·墨丘利的后续审判定于2021年5月11日开庭。

——格里芬·雨果律师,内部审理部门

05/11/2021

SCP基金会内部审理部门

以下是基金会内部审理部门(ITD)2021年5月11日的会议记录,主题:导致SCP-5749死于非命的非正义谋杀罪行。

谋杀犯:安德鲁·墨丘利

指控罪名:对一个无辜的Safe级异常实施一级谋杀


安德鲁·墨丘利于2021年5月11日接受了审判,他被指控对一个无辜的Safe级异常实施了一级谋杀。被告表示认罪。5 委员会对此进行了投票表决,结果如下:



有罪
6


安德鲁·墨丘利犯一级谋杀及故意伤害罪,被判处死刑。6他将在2021年5月12日被执行死刑。


附录5749.3:相关文件

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License