SCP-6803


: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)); }
}
项目编号:項目編號:6803
等级等級3
收容等级:收容等級:
euclid
次要等级:次要等級:
none
扰动等级:擾動等級:
keneq
风险等级:風險等級:
notice

wobushi

一个SCP-6803-A个体。相邻间距离不成比例。


特殊收容措施:SCP-6803的所造成的影响对公众无害。 因此,目前没有必要对SCP-6803-A实体进行审查。 同样地,在可能性不大的目击事件中,除对平民目击者执行记忆删除外,SCP-6083-B无需收容措施。

然而,符合以下一项或两项标准的所有员工需每四个月接受一次接种剂OH-16。标准如下:

  • 已接受过6级或更高模因接种的个人。
  • 已接受过4级或更高认知危害接种的个人。

警告:需要生物特征扫描


>正在扫描访客是否接受过6级或更高模因接种
>状态:否
>正在扫描访客是否接受过4级或更高认真危害接种
>状态:是
>进行OH-16接种扫描
>正在扫描访客是否接受过OH-16接种剂接种
>状态:是
>计算最后一次接种时间
>123天前

描述:SCP-6803为一种存在于媒体中的认知危害,以视觉方式直观描绘了于轨道上观测到的地球。此后,该类个体被命名为SCP-6803-A。

在距地球表面10.7km处拍摄的图像和视频中,SCP-6803表现得尤为明显,在这些图像和视频中,地球表面是可见的。值得注意的是,10.7km是地球曲率刚好可见的最小高度;鉴于目击者的视角超过60°,视觉气象条件最佳。

根据记录,当SCP-6803停止造成影响时,其与地球的最大距离并无明确定义。相反,随着行星的拓扑特征变得愈加不可识别,认知危害强度也愈来愈弱。在SCP-6803-A个体中,若地球表面模糊或部分表面模糊,影响效果也会类似地减弱。若对图像进行编辑,但行星在图像上仍可识别,则该影响效果就会保持不变。

diqiushengqi

在阿波罗11号执行任务期间拍摄的SCP-6803-A个体。

通常情况下,暴露于SCP-6803的人员不会受到明显的身体影响。然而,神经扫描表示,该活动相当于暴露于一级认知危害或异常模因下。

暴露于SCP-6803-A个体所造成的影响对接种过大量模因或接受过认知危害的人来说变得难以预测。 因此,这些特定的风险等级从“待观察”升级为“危急”。暴露于SCP-6803-A个体后,对象可能会受到Columbus级事件的影响。 在上述事件中,对象被转移到距离地球表面10,000至100,000km的轨道上。 此后他们被指定为SCP-6803-B个体。 衣服和财物在其消失后仍留在原处,但内部植入物不会,植入物之后可能会靠近该个体,但并不会成为其一部分。

SCP-6803-B个体将无限期绕地球运行。此外,其身穿来源不明的宇航服,所有人都死于大面积的头部创伤,但宇航服仍完好无损。SCP-6803-B不具有实体,因而不会被雷达探测到;远程灵能扫描是唯一已知的定位它们的方法。目前已知的SCP-6803-B个体有65个,最新的个体也是最恶名昭彰的。详见附录6803.1。

与受影响对象的所有通信将在其消失的那一刻断开。然而,通过近距离观察得出,只要与其保持视觉接触,相应的SCP-6803-B个体将以心灵感应方式将单个的特定短语反复传递至观察者大脑中。示例包括:

SCP-6803-B 004:地球表面有什么问题?

SCP-6803-B 042:这一切都太糟糕了。

SCP-6803-B 063:呃,我更喜欢这样。

由于没有发现Columbus级事件发生的明确方式,所以05指挥部已批准广泛使用接种剂OH-16。关于此类事件的触发因素与针对SCP-6803模因方面的研究正在进行中。




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