SCP-MC-266
评分: 0+x


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

项目编号:項目編號:MC-266
等级等級5
收容等级:收容等級:
机密
次要等级:次要等級:
CHHOKMAH
扰动等级:擾動等級:
vlam
风险等级:風險等級:
critical

%E9%BE%99%E5%9F%9F%E4%BC%A0%E9%80%81%E9%97%A8

传送门,通向龙域。


负责站点 站点主管 首席研究员 指派特遣队
Site-MC-01 菲尔斯主管 多莱主管 D-wïñgs (龙翼特遣队)

%E5%8F%91%E7%8E%B0%E4%BA%8E%E4%B8%BB%E4%B8%96%E7%95%8C%E7%9A%84%E7%81%AB%E9%BE%99%E5%B7%A2

主世界中的火龙巢穴,其中的火龙正在睡眠。

特殊收容措施(旧版):任何进入龙域的尝试都是不被允许的,严禁一切人影响龙母的唤醒仪式,除此之外,为防止对于生命宝珠收集造成影响,悚域一样不可进入。

龙母唤醒仪式已完成,旧版收容措施废除。

特殊收容措施(最新版): 为保证一切有关SCP MC-266的存在对主世界造成影响,目前已全面封锁龙域传送门,断绝有关SCP MC-266的存在进入主世界,若要前往龙域须持有6/mc-266权限凭证。龙域传送门整体是可被移动的,其已被转移至Site-MC-01中,被存放于8*8*8的完全密闭式空间。在并不持有许可的情况下尝试破坏龙域传送门者,或被基金会职位下调、或成为D级人员。

鉴于项目的极高不稳定性,基金会已派遣人员在龙域中将主世界传送门一并转移至安全区块并以同样的方式全面封锁主世界传送门。

SCP%20MC-266-1-1%E4%B8%AA%E4%BD%93

龙域中的一只SCP MC-266-1-1个体

描述: SCP-MC-266泛指龙域(SCP MC-266-α)中的一切事物及拥有与龙族极大关联的事物,可粗略分为SCP MC-266-1(龙族)、SCP MC-266-2(悚怖)与SCP MC-266-3(其它)

SCP-MC-266-1表现为一种具有自主意识的生物种族,部分拥有高强度智慧1SCP MC-266-1类似于西方龙(Dragon),拥有着极为庞大的身躯。目前收集到的信息显示,SCP-MC-266可能存在有上百万年历史之久。

SCP-MC-266-1被细分类为13类,其中包括火龙、冰龙、雷龙、光龙、暗龙五类正常亚种,有龙母、诅咒黑龙两只极为特殊的个体,及霆耀龙、炽霜龙、炼狱龙、悚怖龙等特殊变种,其中,悚怖龙为冰龙变种,其余为正常亚种杂交,此外,有骨龙幽灵龙作为不正常亚种。

%E5%8F%91%E7%8E%B0%E4%BA%8E%E9%BE%99%E5%9F%9F%E4%B8%AD%E7%9A%84SCP%20MC-266-1%E5%B7%A2%E7%A9%B4

龙域中的SCP-MC-266-1-1个体巢穴。

SCP-MC-266-1的鳞片与血液具有军事用途,其鳞片可锻造极其坚硬的盔甲,血液与铁将会在高/低温状态下产生反应,从而锻造出龙钢。

SCP-MC-266-1-1被称为火龙,其具有耐高温与喷射火焰龙息的能力,其所喷射的龙息具有极高的温度,常保持于300℃~1200℃不等,部分基金会成员认为可将其作商业用途,如尸体焚化。其的鳞片与血液所锻造的龙钢同样具有耐高温的特性,所锻造的武器具有极高温度。

SCP%20MC-266-1-2%E5%B7%A2%E7%A9%B4

SCP MC-266-1-2的巢穴,中央存在一颗SCP MC-266-1-2个体所产下的卵

SCP-MC-266-1-2被称为冰龙,其具有耐高温与喷射冰霜龙息的能力,其所喷射的龙息具有极低的温度,被检测出含液氮,龙息结晶后会形成冰刺,极为锋利,通常被用于防盗。常保持于0℃~-150℃不等,其的鳞片与血液所锻造的龙钢同样具有耐低温的特性,所锻造的武器具有极低温度。

SCP-MC-266-1-3被称为雷龙,其具有雷电无法对其造成影响的特性与喷射雷电龙息的能力,其所喷射的龙息具有极高的电压。其的鳞片与血液所锻造的龙钢同样具雷电无法造成影响的特性,所锻造的武器具有攻击时召唤一道闪雷的能力。

SCP-MC-266-1-4被称为光龙,其具有自愈、超高空飞行与喷射光耀龙息的能力,其所喷射的龙息亮度极高,被检测出含一种无毒荧光剂,被龙息所涉及的物体将会被这种无毒荧光剂所覆盖,这种物质通常被用于制作手电等。其的鳞片与血液所锻造的龙钢同样具有照明与自愈的特性,所锻造的武器具有克制冰龙与暗龙的特性。

SCP-MC-266-1/2-52被称为暗龙,虽然是龙,但其只会在悚域筑巢。即使在龙域出现,也只会在玄武岩峡谷中以极低的概率出现。其具有喷射黑暗龙息的能力,龙息被检测出含一种剧毒吸光物质,被龙息所涉及的物体将会被这种剧毒吸光物质所覆盖。其的鳞片与血液所锻造的龙钢具有吸与反甲的特性,所锻造的武器具有克制雷龙与火龙的特性。

SCP-MC-266-1/2-2为冰龙变种,被称作悚怖龙,其特性与冰龙极为类似,但在外观上有所不同(肤色发暗、部分溃烂、眼冒蓝光)。

特殊个体档案

SCP-MC-266-1-α - 龙母


额外分级修改:

收容等级:
THAUMIEL
次要等级:
ARCHON
{$class-category-3}
{$class-text-3}
{$class-category-4}
{$class-text-4}
%E6%8F%90%E4%BA%9A%E9%A9%AC%E7%89%B9%E6%9C%AC%E9%BE%99

龙母

特殊收容措施(旧): 龙母 - 提亚马特的石像极为脆弱,一切对其破坏的尝试都是不被允许的,不得任何人尝试破坏对于龙母的唤醒仪式。

龙母唤醒仪式已完成,旧版收容措施废除。

特殊收容措施: 基金会永久不对龙母做出任何收容措施。

描述: 龙母是龙族中最早出现的龙,一切龙的亚种均为龙母的子嗣。可以尝试对龙母做出交易,龙母只会将生命宝珠与悚怖之印当做货币,以下为所售卖的物体(价格不定,货币定性):

%E6%8F%90%E4%BA%9A%E9%A9%AC%E7%89%B9%E7%9A%84%E5%88%86%E8%BA%AB

提亚马特的分身

  • 提亚马特的分身 - 悚怖之印兑换。
  • 提亚马特的徽记 - 悚怖之印兑换。
  • 龙母之血 - 悚怖之印兑换。
  • 诅咒黑龙监牢钥匙 - 悚怖之印兑换。
  • 交融精华 - 生命宝珠兑换。
  • 进化之泪 - 生命宝珠兑换。

其他不予公开。


若某人持有提亚马特的分身,其可用念力将提亚马特分身召唤,所召唤的分身性质类似于被驯服的龙,并不会反抗且供人骑行。

当某人获得了提亚马特的徽记,便会被提亚马特所庇护,在被庇护的情况下,使用热成像仪观看该人,该人的周围将有一圈极高温度的防护罩。

特殊个体档案

SCP-MC-266-1-β - 诅咒黑龙


特殊收容措施: 该异常个亚种个体已被消灭。

%E8%AF%85%E5%92%92%E9%BB%91%E9%BE%99

未开启的诅咒黑龙监牢

描述: 诅咒黑龙属于独立亚种,似乎受诅咒所染,其表现出极强的攻击力,即使持有提亚马特的徽记也无济于事,似乎该个体并不受限/惧怕于龙母。

该个体所喷出的龙息具有极强的毒性,受龙息所染方块将转变为诅咒方块,当身体某一部位触碰于诅咒方块时,江河道挖掘疲劳、中毒、诅咒等一系列负面效果。


%E6%82%9A%E9%99%B5

悚陵。

悚怖生物与大部分SCP-MC-266-1亚种敌对。

CC BY-SA 3.0 License