SCP-6668-3

: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)); }
}

10:27 AM



特殊收容措施:SCP-6668-1与SCP-6668-2目前位于Site-███的员工食堂。禁止对前者进行探索。

描述:SCP-6668-1是Site-███员工食堂地板上的一个巨型坑洞。SCP-6668-2即D-1812019,曾下降至SCP-6668-1并随后出现异常性质。自上次09:44更新此文件以来,其异常性质已大幅发展。如以下影像记录所示:

[由站点主管Hughes监督的一组研究员被安排在D-1812019周围。后者悬浮在空中,双臂垂于身后,头部以不自然的角度上扬。]

[D-1812019上翻的双眼突然恢复正常的状态并扫视周围。他与研究员Comtois进行眼神接触。D-1812019的喉结开始活动。]

Comtois:主管,他醒了!

[喉结继续活动的同时,D-1812019的嘴唇开始颤动。]

Comtois:他想说话!

[站点主管Hughes跑向D-1812019,拉过来一把身后的椅子。他站在椅子上,使自己与D级人员处在同一高度。他向D级人员的嘴巴倾身,试图听清楚。]

Hughes:来吧,你想告诉我们什么?

[D-1812019的嘴唇缓慢张开,一只小脚掌从缝隙中挤出。接着,一只肥大潮湿,与鼠科动物形似的啮齿动物从D级人员的嘴里爬出。当鼠类的大部分身体出来之后,它的尾巴从D-1812019的下嘴唇和下巴上滑落。它重摔到地上然后迅速跑走了。]

Hughes:这到底……

[在研究员们做出反应前,从D-1812019方向传来一阵潮湿的吸食声。第二只更大的啮齿动物正在试图从他嘴里爬出。研究员们此时尚未注意到D级人员制服上开始出现细小的红斑。]

Hughes:控制住现场!来人抓住那老鼠!

[D-1812019的右脸向外凸起。爬出食道的第三只啮齿动物似乎堵住了第二只啮齿动物的出口。两者争着爬出口腔的同时,D-1812019的左眼球突然向内凹陷化为白色潮湿的浆状物。从眼窝中伸出一只啮齿动物的前爪并抓挠着四周。D-1812019的右眼球高速迸飞而出,从周围的研究员们中穿过。]

[D-1812019制服上的红斑变大。一只口腔内的啮齿动物将其脸颊彻底抓破。它爬出脸颊上的洞口落到地上的同时,口腔内的另一只啮齿动物从嘴里爬出。D-1812019脸部的破损使内部情况更为清晰,数只啮齿动物离开口腔后,能看到另一只正从喉咙深处往上爬。]

Hughes:啊!

[D-1812019的右手腕毫无预兆地出现一道大型撕裂伤,血液喷溅到站点主管Hughes的身上。他从椅子上径直跌落到地板上。一只浑身是血的啮齿动物刚开始从撕裂伤往外爬,另一只紧跟其后。啮齿动物持续从D-1812019的口腔爬出,此时啮齿动物的总数已达到约50只。他左眼眶的颧骨和额骨开始破裂,啮齿动物开始从破裂的空隙中出现。]

[D-1812019的制服下开始蠕动。从他右手腕涌出的啮齿动物不断增加,以至直接将手掌扯下。断掌掉落地面时,一群啮齿动物从创口奔涌而出,同时也有啮齿动物开始从耳道口向外爬出。]

Hughes:救命!快拉我起来!

[周围啮齿动物的数量已经高达三位数。一部分跑到房间角落或者钻进通风口,其他的开始蜂拥着Hughes,使他无法站稳。研究员Comtois试图接近Hughes,但随即被啮齿动物袭击,它们开始顺着他的腿往上爬。]

Comtois:我接近不了你,对不起!对不起!

[Comtois转身逃离了员工食堂,试图甩掉衣服上的啮齿动物。其他研究员迅速跟随其后。]

[D-1812019头骨的大部分结构已损失,仍有啮齿动物持续从他颈部上方瘪掉的皮肤中钻出。他的制服破裂,一滩啮齿动物倾泻到房间里。它们立即开始追赶正在逃离的研究员们。]

[Hughes主管尖叫着。]

[啮齿动物爬上了他的脸并不停地试图钻进他的嘴巴,Hughes用手捂住嘴巴阻止它们进入。遍布他腹部与全身的啮齿动物开始用脚爪和牙齿试图撕裂他的皮肤。]

[一只啮齿动物咬伤了Hughes的左手,他本能地迅速把手从脸上移开。另一只啮齿动物趁机纷纷急窜进他的嘴巴。它顺着喉咙往下爬的时候,Hughes的喉咙相应地鼓胀起来。]

[上述事件发生时,这些啮齿动物开始从各种出口离开食堂。D-1812019的尸体只剩下了员工食堂地板上的一滩血液和内脏部分。从南侧走廊离开员工食堂的啮齿动物遇到了3名团队召来的站点安保人员。他们开火后立即被数量庞大的啮齿动物压制。]

[站点主管Hughes的尸体抽搐着并被一股不可见的力量抬升到半空中。尸体停住后开始悬浮,然后开始以与D-1812019相同的方式生成啮齿动物。]

从CCTV摄像画面进行估算,从D-1812019和站点主管Hughes身上生成的啮齿动物数量在1200到1700之间。

可以听到SCP-6668-1内部物体活动和吱吱叫的声音。

当前页面非最新版本。是否更新?

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