SCP-5590
: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)); }
}
项目编号:項目編號:5590
等级等級2
收容等级:收容等級:
safe
次要等级:次要等級:
{$secondary-class}
扰动等级:擾動等級:
vlam
风险等级:風險等級:
需谨慎

thatlittlebastardrobot.png

SCP-5590(图片拍摄于取得过程中)

特殊收容措施:SCP-5590将被安置在小型实体收容间内,移除所有陈设。SCP-5590的行为改变及SCP-5590收容间所受的破坏应报告给SCP-5590的首席研究员,而后再采取行动。

根据研究员Arelli请求,SCP-5590的房间内需全天放有一个改装过的魔方。

描述:SCP-5590是一身高15厘米的有感知人形机器人。SCP-5590会尽其最大能力、尽一切可能机会制造非暴力性的困扰。这具体包括以下几类:

  • 去除或调换物品的标签。
  • 对建筑进行轻到中度的破坏。此破坏不会严重到危及建筑完整性。
  • 对物件进行中到重度破坏。这可能造成物件在被使用时破碎。
  • 对SCP-5590周边的人员制造过量感官刺激。一般包括持续且巨大的噪声、或是对着人员的眼部反射光线,但不会涉及触觉、味觉、嗅觉或者多种感官并用。

SCP-5590的手臂可以缩回其身体内部,而后将其末端手掌替换为各类工具再重新出现。已观察到作为SCP-5590肢端的工具包括有:圆锯、充满胶水的喷口、打火机。

事故记录5590-1:SCP-5590从其收容间墙壁上切下一小块碎片,SCP-5590反复将此碎片丢向监控它的摄像头,造成镜片碎裂。对摄像头镜片进行更换,将碎片从收容间中移除。6小时后,SCP-5590以另一块碎片将摄像头镜片再次击碎。

首席研究员Arelli备注:随它去。我们透过碎了的镜片一样能看到SCP-5590,不值得一直换。

测试系列1:物品熟悉及认知
目的:确定SCP-5590的智力。

程序 结果 附注
在SCP-5590收容间里放入一把木椅。 SCP-5590用圆锯手臂把椅子的一条腿削短1.5厘米,让它无法稳当。

N/A

前一测试中的木椅被拿出SCP-5590收容间。第二天将该木椅再次交给SCP-5590。 SCP-5590用圆锯手臂在椅子的整个木质表面上留下划痕,令其质地粗糙不平。 首席研究员Arelli在试图将木椅从SCP-5590收容间移出时被扎了许多根木刺。首席研究员Arelli用脚推着椅子将其移走。
前一测试中的木椅被拿出SCP-5590收容间。第二天将该木椅再次交给SCP-5590。 SCP-5590在椅背上砍出两道深沟槽。 预计若有体重与首席研究员Arelli相同(或更重)的人员靠在这把椅子上,其椅背会碎裂开来。

事故记录5590-2:于3/7/1986,SCP-5590开始对着房间摄像机做出一系列表示紧张的手势。首席研究员Arelli多次尝试无法安抚SCP-5590。23分钟后,研究员Coleman成功安抚了SCP-5590。两名研究员都未能发现SCP-5590紧张的原因。

事故5590-3:于3/18/1986,SCP-5590开始用圆锯手臂在房间墙壁及地板上留下刻痕。由此产生的尖厉切割噪音持续了一整天。

首席研究员Arelli备注:我们没法止住噪音。我和好几个技术员聊过,结果是摄像头运行的系统不允许针对单个的摄像头录像控制音量。我们惟一的选择就是让所有录像接收声音,要么就一个不收。站点主管不会允许我把它们都给关掉的,因为还有其他一些被录像拍摄的SCP需要听声。

我已决定在这东西让我耳鸣之前把风险等级从“注意”调到“谨慎”。

测试系列2:兴趣
目的:确定能否通过给SCP-5590某种任务来防止其破坏收容间。

程序 结果 附注
首席研究员Arelli将一个乒乓球轻轻丢给SCP-5590。 SCP-5590接住球,用打火机手臂将其点燃。 首席研究员Arelli扑灭火焰。SCP-5590及其收容间没有受损。
首席研究员Arelli将一张白纸和笔放入SCP-5590的房间。 SCP-5590画出了Coleman研究员的肖像,其身旁还有一身份不明、绘制粗糙的人。 研究员Coleman与该人间的身高差与研究员Coleman及首席研究员Arelli大致相当。
研究员Coleman将一个乒乓球轻轻丢给SCP-5590。 SCP-5590接住球,而后将其丢回给研究员Coleman。此过程持续35分钟,而后研究员Coleman被指示离开SCP-5590的房间。 SCP-5590对见到研究员Coleman似乎很兴奋,他一走进房间就抱住他的腿。除首席研究员Arelli之外,SCP-5590对所有站点成员都表现出了类似反应。

附录5590-1:SCP-5590开始以不规律间隔切割其房间墙壁、地板。此外,若有任何站点成员1处于听觉范围内,SCP-5590对墙壁、地板的切割会变得尤为浅淡且安静。

测试系列3:问题解决能力。
目的:通过测试SCP-5590的问题解决能力,进一步确定其智力。
前言:所有测试由首席研究员Arelli进行。

程序 结果 附注
装有一个红球的密封纸板箱被留在SCP-5590收容间内4天时间。在盒子外留下一张字条,告诉SCP-5590要从盒内取得球。 SCP-5590用圆锯手臂在盒子上切出一个洞。SCP-5590而后爬入盒内,用胶水喷涂手臂把盒子再次密封。 在被要求展示红球时,SCP-5590似乎表现困惑。盒内没有找到红球,此后也再未将其寻回。
在金属盒内放入一个红球。用联合锁将盒子锁闭后放入SCP-5590收容间内4天时间。在盒子外放置前一测试中的字条。 SCP-5590给联合锁机械灌满了胶水,待胶水硬化后将其堵死。 因盒锁堵塞,首席研究员Arelli无法打开盒子。

后续:测试未得出结果。

测试系列4:偏好
目的:为什么SCP-5590会讨厌Omer Arelli?

程序 结果 附注
首席研究员Arelli与研究员DeVorace在SCP-5590收容间内与之保持相等距离站立。 SCP-5590立即跑向研究员DeVorace,抱住她的右腿。 首席研究员Arelli报告称SCP-5590一边抱住研究员DeVorace,一边还在瞪着他看。摄像头中SCP-5590被DeVorace的腿挡住,Arelli的言论无法得到确认。
首席研究员Arelli戴上面具,并挂上DeVorace的研究员ID,而后将一个乒乓球轻轻丢向SCP-5590。 SCP-5590接住球,而后将其丢回给首席研究员Arelli。此过程持续8分钟,直至首席研究员Arelli的面具从脸上部分滑落。

N/A

研究员DeVorace给予SCP-5590笔和纸,而后询问它为何不喜欢首席研究员Arelli。 SCP-5590摇头表示“不”。在被问及它是否不喜欢Arelli,SCP-5590摇头表示“不”。 在被问及为何它认为Arelli觉得SCP-5590不喜欢他时,SCP-5590看向房间摄像头,耸了耸肩。

后续:测试未得出结果。但需注意,每当被问及不讨厌首席研究员Arelli一事,SCP-5590都会公然撒谎。

事故记录5590-4:SCP-5590使用圆锯手臂将其收容间墙壁上的一块混凝土切下。SCP-5590将混凝土块丢向摄像头,击碎其镜片,造成对其房间的远程监控无法进行。在人员抵达更换镜片时,发现SCP-5590已在房间南墙上挖出了一条小隧道2。发现SCP-5590站立在隧道内,其深度仅有30厘米,并未通向任何地点。被发现时,SCP-5590对着员工挥了挥手,而后配合离开了隧道内。

附录5590-2:SCP-5590被转移到新的小型实体收容间。该收容间与SCP-5590此前的房间相似,但其监控摄像头被安置在树脂玻璃后,以免SCP-5590对其破坏。

备注:站点主管Hoff已提醒首席研究员Arelli,对SCP-5590的收容要比最初预想更费钱。哪怕被分配给这么个一门心思用尽一切摧残人心智的机器人根本不是Arelli的错他也还是这么说。

测试系列5:阻止噪音产生
目的:
前言:Arelli做了所有这些测试。

程序 结果 附注
SCP-5590的手臂被捆在其身体上。 SCP-5590将其身体靠在收容间墙壁上,令其可以使用圆锯手臂切割墙壁。

N/A

SCP-5590的手臂被捆在其身体上。将SCP-5590投入收容间内的一个狗笼3内。 SCP-5590反复跑向狗笼两侧,产生大量噪音。 SCP-5590切开了狗笼两侧,但无法切出足够其离开狗笼的大洞。
SCP-5590被投入水桶内,而后予以冰冻。 SCP-5590使用打火机和圆锯手臂融化并切开了身边的冰块。 测试在开始24天后终止,SCP-5590在水桶上切开了一个洞并逃出。

测试系列6:问题解决能力(续)
目的:确认给予SCP-5590任务能否防止它当一个[已删除]4
前言:所有测试由研究员Coleman进行,由首席研究员Arelli远程监督。

程序 结果 附注
装有一个红球的密封纸板箱被留在SCP-5590收容间内4天时间。在盒子外留下一张字条,告诉SCP-5590要从盒内取得球。 SCP-5590用圆锯手臂在盒上切出一个洞。SCP-5590取出红球,用打火机手臂将其熔化。

N/A

在金属盒内放入一个红球。用联合锁将盒子锁闭后放入SCP-5590收容间内4天时间。在盒子外放置前一测试中的字条。 SCP-5590先用了3天时间尝试在盒子上切出洞口。在只造成了轻微破坏后,SCP-5590将剩余时间用于猜测盒上的联合锁。SCP-5590没有在指定时间内取得红球。 那个机器人切金属是唯一比切割混凝土还要糟的声音。
给SCP-5590一个打乱的魔方。魔方上有两个标签被调换,令其不可能被破解。 SCP-5590未能成功解开魔方。尽管对此任务表现出巨大的挫败感,SCP-5590已持续尝试破解此魔方达4小时 3天 11个月。 没那么聪明了吧,啊你?

后续:测试取得重大成功。不需进一步测试。

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