SCP-5381

By:Fishish

: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)); }
 
}
 
/*-------------------------*/
 
@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)); }
}
项目编号:項目編號:5381
等级等級3
收容等级:收容等級:
euclid
次要等级:次要等級:
none
扰动等级:擾動等級:
vlam
风险等级:風險等級:
警告

项目编号:SCP-5381

项目等级:Euclid

特殊收容措施:SCP-5381 将被安置于 Site-56 的标准野生动物围场内。被分配于 SCP-5381 的人员在任务期间不得食用面包;在最后一次与 SCP-5381 交互后,人员应至少维持该饮食规定一个月,以避免触发其影响。

Duck

SCP-5381。

描述:SCP-5381 是一只雄性家鸭1。SCP-5381 能够交流,其展现出人类的智力水平与对其所属物种的生物学、营养和有机化学的基本了解。

SCP-5381 展现出一种有限的将物体物质化为非异常白面包的能力,通常直接于其目标的胃内部发生。
该影响由任何具有下述特征之一的人触发;达到这些必要条件的其他动物不受该实体的影响。面包片突然出现在人的胃里通常会导致严重的腹部不适,往往使人产生严重的恶心和呕吐。

SCP-5381 的异常影响是根据意愿表现出的,通常是当该实体与任何最近喂过其所处物种内的另一成员面包的人类交互时,此会触发该实体的极端反应。该影响也将最近食用面包的人作为目标,因此工作人员在研究 SCP-5381 时有必要避免食用面包。2

发现:SCP-5381 首次发现于在几起涉及“会说话的鸭子”的报告被发现与同一地区住院人数激增有关后。该区域的基金会工作人员迅速前去捕获 SCP-5381,其在被成功收容前导致了 3 人受伤。3

附录-5381-A:以下记录详细说明了一次 SCP-5381 和前首席研究员 Amara Pearson 之间的交互,同时被称为事件-5381-A。

被采访者:[SCP-5381]

采访者:[Dr. Pearson]

前言:[ 组织以下访谈旨在确定 SCP-5381 产生的影响是出于报复还是自卫机制。访谈在发现最近吃过面包的人也容易受到该实体的影响之前进行。 ]

<记录开始,[16:43]>

Dr. Pearson:你好 SCP-5381,我是 Dr. Amara Pearson。你准备好开始访谈了吗?

SCP-5381:我可以向你投诉吗?别管这儿是哪,你是这个地方的老大吗?

Dr. Pearson:嗯,我现在负责监管你,所以我想我确实可以接受你的投诉。想向我投诉些什么?

SCP-5381:是的,控制,状况,不管怎样,我不管,我需要你管好你的工作人员。其中一个给了另一只鸭子一片面包,我发誓我几乎就要丢掉理智了,明白吗?你不会希望你的研究人员不断地被喂面包吧,是吧?

Dr. Pearson:呃,为什么呢?

SCP-5381:等会儿,你是什么博士?

Dr. Pearson:我看不出这有什么关系,但我有博士学位。在鸟类学方面。这回答了你的问题吗?

SCP-5381:你是想告诉我你学习了生物然后你仍然忽视了面包的有害影响吗?

Dr. Pearson:等等,你不是凭空变出面包的吗?而且,你几乎总是用这种能力来强行让人类吃面包?

SCP-5381:也够你吃!当然,你不会强迫来让我吃面包,但靠近面包对我来说已经太困难了。不过,当你们都受到面包营养价值低下的负面影响时,你们都会明白的。

Dr. Pearson:你明白人类并不是真的受到面包的影响吗?我的意思是,它不是很健康,但它对我们有营养价值。

<SCP-5381 保持沉默 15 秒。>

Dr. Pearson:呃,还有,你已经很靠近面包了吧?我来这里之前吃了一个三明治。已经有两片面包了。

<SCP-5381 突然开始摇晃。>

SCP-5381:,你想要面包?那就好好享受吧。

Dr. Pearson:等等,那是什么意-

<SCP-5381 集中了几秒钟的注意力,然后在 Dr.Peason 的胃里变出了一整条面包。可看到 Dr.Peason 蹒跚了几步后倒下;在此之后站点安保和医疗小组立即被派遣出。>

<记录结束,[16:58]>

最终报告:[Dr.Peason 虽然康复,但仍处于危急病情长达数周。SCP-5381 被重分级为 Euclid。特殊收容措施被更新,以降低类似事件发生的可能性。]

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