SCP-CN-2682


: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)); }
}
评分: +5+x
项目编号:SCP-CN-2682 3/CN-2682
项目等级:Euclid 扰动等级:[已编辑]

%E5%90%91%E6%97%A5%E8%91%B5.jpg

SCP-CN-2682


特殊收容措施:SCP-CN-2682应被至少三层 由复合材料制成、可通电的密闭性栅栏包围,并设临时收容设施S-c2682加以评估。不少于两名守卫将时刻确保收容措施的稳定,并及时上报可能发生的收容突破情形。全体设施及其周遭的土地已以“农学院经济作物开发区”为由封闭,禁止平民及无关人员的访问,且建立了相应的标识-警告-驱逐系统。项目的增殖速度也为检测数据的一项,发现任何异常情况时允许使用站点内配置的器械(主要由高腐蚀抗性的自主切割机器人与站基火焰喷射器组成)遏制;情况危急不可测时,允许将SCP-CN-2682尽可能清除,因为其再生性、适应性与威胁已被数次证明。任何新变动和清理都应被立即上报,归档处理。

所有负责监视及清理工作的人员需要每2小时换班一次,并进行身体与精神状态评估。每周停班两天。体表有任何创口、在生理周期内、年龄小于等于30周岁、有精神疾病史或在标准精神稳定性量表中得分显著偏低的人员不应进入设施。需注意SCP-CN-2682区域内不应存在向日葵外的植物与不符合标准的其他生物体,携带其进入设施内将造成严重损失。

SCP-CN-2682上空为禁飞区。项目所在位置地底已被清空,改用强力金属-玻璃骨架支撑,定期检查也应包括设施的这一地下部分。需注意该区域内应每日进行数次例行高温焚烧,具体规模视当前的收容情况而定。

更新:监控与收容SCP-CN-2682-B已被证明是不现实的。


描述:SCP-CN-2682是一片位于[已编辑]地区,面积不小于4平方公里的向日葵花田。项目内环境温度、湿度及其他数值均维系在正常值,但有强电磁干扰,不存在任何原生非向日葵的生物。经确认,除向日葵外的植物、小型动物、微生物和少数机械造物进入项目区域内后将迅速嬗变为一种强腐蚀性物质,定义为SCP-CN-2682-A,其化学构成与质地难以描述,不可燃,有强烈的葵花气味。项目内的向日葵一旦脱离项目环境即与正常个体无差,但不受SCP-CN-2682-A的腐蚀;相反,后者能以相当快的速度催发前者生长,而完全不影响其机能。

SCP-CN-2682正以约每日20至400平方米的速度扩张,推测该现象是因其内部过量SCP-CN-2682-A导致的。

当某人员,或某具有知性的人形实体靠近项目边界时,将感受到一种无理由的恐慌,并暂时性的失去色觉。该效应的程度随时间而增长,且对年龄小/精神状态不稳定/身体机能有损的人员有不同程度的附加影响,包括但不限于对随机特定事物的恐惧(可能加剧原有的而产生病理性恐惧症)、方向感严重紊乱、厌食症、永久色弱和频繁的过敏现象。

若人员进入SCP-CN-2682(即与生长于项目上向日葵发生物理接触),该效应将呈指数增长,并最终导致人员完全丧失方向感(另论视觉),朝某个随机的方向以最高速度逃离。在大多数情景下,这将导致人员深入项目内部并失联,但在极少数情况下该人员偶然冲出项目区域。此类人员可能产生人格分裂或崩溃现象,多患上了无确切病因的睡行症、梦语频繁、或睡眠瘫痪,甚至陷入永久性昏迷。此外,该效应对处于SCP-CN-2682上方的对象也能生效,具体的范围延伸距离不明,但不小于20公里;在项目下方则未观测到效应发生。

SCP-CN-2682-A几乎不挥发,但在少数报告中显示其能以异常方式沿特定物质的表面移动,无规律可循。风力较强时,SCP-CN-2682-A可能被卷起而扩散至空气中,暂未确认此潜在威胁是否存在,是否可解。

SCP-CN-2682的中心区有一处无向日葵生长的地形结构,推测为SCP-CN-2682-A构成的湖泊,但其确切构成不详,面积不详,情报来源不详。值得注意的是,已有多名人员报告称项目[已编辑]。


更新:[已编辑]日晚,S-c2682的监控设备发出报警,有一名不明实体进入了SCP-CN-2682。出于综合考虑,一切追踪及联络该实体的尝试均被否决,因为通讯信号在项目内部的严重衰减。一段时间后,实体通过某种手段在项目中心生火并引起了SCP-CN-2682的持续缩减。

项目内的火势不减退,逐渐与其内部向日葵的生长速度平衡;外沿的扩张速度不变,但表现出了高温抗性的显著提升,应尽快制定更新的收容方案。不明实体多次被观察到出现在SCP-CN-2682中,定义为SCP-CN-2682-B。

更新:SCP-CN-2682[已编辑]。

SCP-CN-2682的扩张停止,设施任务重定向为清理地下结构中的SCP-CN-2682-A。项目被重分级为Euclid。

更新:SCP-CN-2682-B现身于SCP-CN-2682区域中心。S-c2682的地下部分结构坍塌,推定为损失。



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