SCP-6360


: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)); }
}
项目编号:項目編號:6360
等级等級4
收容等级:收容等級:
keter
次要等级:次要等級:
esoteric
扰动等级:擾動等級:
keneq
风险等级:風險等級:
danger

特殊收容措施:
基金会以保护濒危动植物的名义,将喀尔巴阡山脉的荒原地带划定为自然公园,员工将以研究野生动物的科学工作者或自然保护者的身份在此地开展工作。

将在喀尔巴阡山脉和乌克兰的几个洞穴入口周围设置围墙,以防有人闯入。对该地区以严格自然保护区或军事基地的名义加以掩盖。

沿该区域战略地点安设雷达单元及地对空导弹(SAM)发射台,该导弹装有光电-激光制导系统。前者用于追踪,后者仅在SCP-6360意图离开山脉范围时使用。与此同时,卫星同样将以0.1秒的延时提供监控图像。

至少一队战斗机在喀尔巴阡附近的空军基地待命,以空中优势型和/或拦截机型为最佳。这些战机由AWACS1与地面防空系统进行协助,并配有光电-激光架束防空导弹(AAMs)。

离开工作站执行任务的人员需全天佩戴SCRAMBLEv2目镜。如遇目镜故障,人员需立即设法返回基地。一支MTF将驻扎于山脉附近,以开展救援。远端摄像仪将对SCP-6360进行监控。按规定,收容区域的任何实时监控同样需0.1秒的延时反馈。

描述:
SCP-6360为一类大型嵌合生物,平均身长7.6米,同时具备爬虫类与鸟类特征。高约2.5米,前肢呈翼状,翼展达9.1米;后肢呈爬行动物状,尾部长而发达,覆有可折叠的舵羽。2SCP-6360的头部近似于非异常的胡秃鹫(Gypaetus barbatus),但具备成排沟牙及两颗泌毒尖牙。

SCP-6360毒性强烈,其毒液同时含有神经毒素与细胞毒素。任何被其直接噬咬,或间接接触/沾染其毒液的生物均会在两分钟内死亡。其毒液对人体的影响包括:协调性丧失,精神错乱,加速溶解,瘫痪,窒息,最终导致死亡,受害者尸体呈现萎缩状态,且带有大面积内部损伤。

SCP-6360的眼部类似眼镜王蛇(Ophiophagus hannah)。其视线与人员接触可致该人员立即死亡。解剖显示,这些尸体受到的伤害与影响与接触过SCP-6360毒液的尸体如出一撤。SCP-6360也对所有已知毒素免疫。

SCP-6360能够发出旧大陆秃鹫与蛇混合的叫声。

附录1:发现

整个二十世纪,欧洲各地均有目击报告发生,主要集中在喀尔巴阡山及其周边地区。据疑,之所以SCP-6360的目击范围如此广泛,是因为该生物具备快速、高海拔的飞行能力;且能够在洞穴系统与茂密林区内隐蔽爬行。目击停止后一段时间,两名士兵于切尔诺贝利隔离区拍下了这张照片,此时距核灾事故已有两天。14

事故-6360-1发生后,SCP-6360被基金会列为高优先级对象。2007年7月14日,一大规模“枯萎事件”发生后,基金会与乌克兰政府代表进行了联系。MTF Beta-7“疯帽商”被部署到乌克兰,由于SCP-6360行踪趋于不定,邻近国家的基金会相关资源将保持高度戒备状态。

按照失踪的乌克兰CBRN部队发出的无线电信号,Beta-7在普里皮亚季的波利斯亚酒店发现了SCP-6360。对该建筑进行彻底搜查后,特遣队找到了其中四名失踪人员的尸体,均被部分烧毁。进一步调查后,特遣队发现了一个似乎通往该酒店地下管道系统的洞穴。据GRU15,该隧道系统建造用于在袭击或灾难中从地下安全转移及疏散。

SCP-6360目前位于喀尔巴阡山脉,该地已建立起大规模收容措施。当地哈兹尔兹人因其与SCP-6360的和睦关系而被允许留在隔离区。

附录2.1:
对“枯萎事件”的调查中,其中一名受害者的摄像机被寻获。看过录像的D级人员称看到蛇怪正注视着摄像机。然而,该D级人员没有出现不良反应。

慢速回放显示,SCP-6360具有一套完全透明的瞬膜,在视觉攻击时将会打开。一旦瞬膜打开,该生物的瞳孔将转变为四周微红的金黄色,并发出冷光,同时发出类似眼镜王蛇的咆哮声。一旦目标被杀死,其第三眼睑将会闭合,瞳孔也随之恢复正常。

附录2.2:
尽管SCP-6360的普通注视并不致命,但它仍被视作主要认知危害,故防范措施必不可少。由于其注视在视频录制中被无效化,一套使用SCRAMBLE目镜的特制自动护目镜将以0.1秒的延迟提供视频反馈。

附录3:收容观察
尽管该生物体型庞大,其行动却异常敏捷,能够在陆上移动,攀爬垂直地形,并飞行自如。该生物主要以四足行走,其翼部折起时形成类似普通吸血蝠的爪状前肢,不同的是,它也能以双足快速穿过平坦地面,缩短与猎物间的距离。

SCP-6360具有出色的视力,能够在弱光环境中看清事物。位于其喙部的感热凹点使其能够感知热源。此外,该实体同样具备敏锐的嗅觉。

观察到SCP-6360还具备两条伸出体表的类人手臂,以执行灵活性更强的任务。尚未知晓该手臂是如何隐藏其体内的。

羽毛样本检测显示,其表面覆有微小鳞片,形成了一个坚硬而轻便的保护罩。这些细鳞及SCP-6360体表的较大鳞片均有极高耐度,可免除近身类武器与30毫米口径枪支的伤害。SCP-6360的鳞片还具备吸收雷达的特性,使其雷达横截面(RCS)与其真实尺寸不成比例。

这些发现表明,SCP-6360或已适于攻击飞行装置。

据推测,爆破冲击可使该生物昏厥,而大型爆炸可能造成危险性伤害,或令其撤退以疗伤。

附录3.1:与当地人的关系
观察到该山区当地人长期以食物供奉该生物。祭品包括牲畜、布林扎19及其他油性食品。

在进一步研究中,就此种关系对当地人进行了访谈。尽管他们表现得不愿合作,但还是警告不要深入森林,因为这种生物具有高度的领地意识。基金会使用抛物面传声仪对一组当地人间的对话进行了监听,注意到谈话中常提到“灭绝”一词,但无法据此得知全部信息。

附录3.2:通知
越来越多的报道称,驻喀尔巴阡山脉的研究人员间发生争吵,抱怨和误解已成为普遍现象。基金会已经开始对这些人员实施心理筛查。

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