@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }
指派站点 | 站点主任 | 研究领队 | 指派特遣队 |
Area-MC-126 | Vincent Black | Vincent Black | MTF-Redstone-06-“迫击炮“ |

处于隐身模式的夜视无人机拍摄的SCP-MC-026
特殊收容措施:在SCP-MC-026附近建立Area-MC-126,用于监视SCP-MC-026的变化,派遣MTF-Redstone-06-“迫击炮”驻扎在此,每天派遣并更换20名携带最高级附魔装备的安保人员驻守1。SCP-MC-026附近半径500米所有入口已被【BE-10基岩墙】2封锁,防止除测试人员外的任何人进入SCP-MC-026及其周边地区。
所有由SCP-MC-026生成的实体除样品实体外一经生成应立刻处决,处决工作由MTF-Redstone-6-“迫击炮”队长Sgry及10名炮手负责。所有不处于实验状态的样品实体需收容在合适尺寸的低温石质收容室内,收容室使用蓝冰进行制冷,地板上覆盖一层细雪且持续通入[MC015Ψ粒子]3,用于抑制实体活动。一旦发生收容突破事件,在站点主管的允许下可立即启动收容室自毁程序。
描述:SCP-MC-026是一座由下界砖及其衍生方块组成的塔型建筑4,位于一无名岩浆湖的中央地带,该岩浆湖距离基金会前哨站点“黑石-6”5约890米。SCP-MC-026塔高39米,底座直径11米,塔中央有宽1米的孔洞贯穿全塔,其中有类似信标光的红色光束6射出。该光束中的超能粒子被命名为[MC026Ψ粒子],其性质与[MC015Ψ粒子]相似,但是作用相反。[MC026Ψ粒子]可以抑制[MC015Ψ粒子]的活动。组成SCP-MC-026中心塔体的恒久物体都表现出极高的爆炸抗性7,TNT和末影水晶的爆炸均无法摧毁它们。
当有非下界实体(包括矿车,盔甲架,弹射物等)进入距SCP-MC-026主体半径48格的范围内,SCP-MC-026会启动紧急防御状态,在塔身周围半径5~32格范围内生成大量敌对性实体,实体生成后将立刻对在其探测范围内的实体发起攻击。在实验中,SCP-MC-026每次生成实体的数量和危险程度均不相同,目前推测与入侵实体8的数量,敌对性,类型,SCP-MC-026本身储备的[MC026Ψ粒子]数量和[数据删除]有关。根据在相关实验中得到的数据,我们推测SCP-MC-026有智能属性,从其对入侵实体的属性分析和灵活应对9可以看出。但目前尚无定论SCP-MC-026的智能属性是什么造成的,研究员主要认为是[MC026Ψ粒子]在控制着SCP-MC-026。
下列是SCP-MC-026生成的部分实体总览:
实体编号:SCP-MC-026-1
危险等级:中等
已收容个体数量:9
生命值:60
收容室规格:10*10*8低温石质收容室。
最佳[MC015Ψ粒子]通入密度:50粒/m³10
描述:“髅灵”外形类似凋灵,但是三个头颅为颜色偏灰的骷髅头颅,下肢比普通凋灵略显修长,体型比普通凋灵略大。未在攻击状态的“髅灵”移动速度十分缓慢,一旦发现半径32格内的入侵实体,“髅灵”会进入疾走状态,朝着入侵实体冲刺,速度大约为10米/秒,冲刺伤害8~11生命值。“髅灵”的远程子弹为红色的凋灵头颅,爆炸半径伤害约15生命值,可破坏地形。“髅灵”对TNT没有抗性,1~2个TNT精准命中即可将其击杀。“髅灵”在某些时候会进行繁殖,它们会将三颗头颅全部分离,头颅将在约96分钟11后长出新的下肢和头颅,成为幼年个体,并在[§f§k§a§b]后变成成年个体。
实体编号:SCP-MC-026-2
危险等级:危险
已收容个体数量:2
生命值:头部40,体节(单个)20
收容室规格:20*20*10低温黑曜石质收容室,温度为-0.7~012,且收容的实体体节不得超过9节,灵魂沙厚度在4~6米之间。
最佳[MC015Ψ粒子]通入密度:8~16粒/m³
描述:“深渊巨蛇”是一种巨大的节肢动物,身体呈分节状,颜色呈米白到深灰不等。其躯壳由骨块和其他骨质物组成,内部为下界疣,[§f§k§a§b]和[§f§k§a§b]。“深渊巨蛇”常常在岩浆湖,灵魂沙和灵魂土中活动,温度的降低会使该实体暂时丧失活动能力,“深渊巨蛇”在温度为0.2及以下时将进入休眠模式,在休眠模式中,该实体的护甲值将降至正常时的30%~45%。“深渊巨蛇”可以穿透任何爆炸抗性低于600的恒久物体。“深渊巨蛇”会自发性的守卫SCP-MC-026,该实体将会向试图靠近SCP-MC-026周围岩浆湖的入侵实体发起攻击。“深渊巨蛇”的主要攻击方式为高速冲撞,撕咬和吐出SCP-MC-026-2-A13。“深渊巨蛇”对TNT有较高抗性,一般用50粒/m³以上密度的[MC015Ψ粒子]束攻击“深渊巨蛇”,几秒后该实体的各个分节将散架,该实体即被处决。
实体编号:SCP-MC-026-4
危险等级:极危险
已收容个体数量:0
生命值:100(推测)
收容室规格:暂无收容方式
最佳[MC015Ψ粒子]通入密度:150粒/m³以上
描述:“火之恶灵”是一种极其危险的类似恼鬼的敌对生物,其正常体色为绯红色,隐身模式时体色为淡白色至不可见的透明色,体型是正常恼鬼的4~5倍。“火之恶灵”头上长有2条恶魔角,眼睛和口中有烈火冒出,手中经常携带有2级火焰附加金剑。当3只及以上数量的入侵实体进入SCP-MC-026中心塔体周围半径4米范围内时,塔内光束将使用大量“[MC026Ψ粒子]生成2~5只“火之恶灵”个体,个体将攻击半径32格内的入侵实体。“火之恶灵”的主要攻击方式为金剑劈砍,火球攻击和喷射高密度[MC026Ψ粒子]光束。“火之恶灵”的护甲值较低,2~3个TNT精准命中即可将其击杀。但该实体会通过隐藏碰撞箱的形式使TNT无法击中它们。在处决该实体时,应当使用100粒/m³以上密度的[MC015Ψ粒子]束攻击“火之恶灵”,“火之恶灵”会因隐身模式的失效而被处决。
实体编号:SCP-MC-026-6
危险等级:DATA LOST
已收容个体数量:[§f§k§a§b]
生命值:[§f§k§a§b]
收容室规格:[§f§k§a§b]
最佳[MC015Ψ粒子]通入密度:[§f§k§a§b]
访问警告 ERROR:DATA LOST —- 该文档已被永久封闭
附录:
附件MC-026-A-1:
事故MC-026-A现场监控录像
日期:2022-1-12
地点:“火龙-2”下界型探测潜艇
视频长度:11分06秒
[记录开始]
17:27:“火龙-2”进入SCP-MC-026周围岩浆湖
17:30:“火龙-2”到达预定考察地点
17:31:“火龙-2”开始下潜
17:34:“火龙-2”到达y=0
研究员Denron:基岩层呢?这湖怎么这么深?
17:35:“火龙-2”到达y=-15,舱门外开始慢慢变黑
研究员Denron:请求发射雷达。
总部:批准请求。
研究员Denron:收到。
17:37:“火龙-2”到达y=-30
研究员Denron:奇怪,雷达什么也没探测到,这湖似乎没有底。
17:38:“火龙-2”到达y=-50
雷达:“滴”
工程师George:Denron,有东西!
研究员Denron:那是什么?
George沉默了许久,Denron前来查看雷达。
工程师George:我的老天!它,它在动!
研究员Denron:什么?
雷达上的物体正在快速接近“火龙-2”,窗外传来轰隆隆的声响。
研究员Denron:快!快撤!
“火龙-2”开始快速上升。
“火龙-2”船体开始震动,有东西拍打舱门的声音。
视频开始出现雪花。
研究员Denron:*
船体出现剧烈震动。
视频完全被雪花覆盖。
[信号中断]
[记录结束]
总部时间10分钟后, “火龙-2”被发现漂浮着岩浆湖的表面,被搜救队救起。船上3人都受到了不同程度的精神伤害。总部下令禁止潜艇潜入y=0以下的岩浆湖区域,暂时停止对岩浆湖底的考察。永久封闭SCP-MC-026-6的档案。
« SCP-MC-025 | SCP-MC-026 | SCP-MC-027 »