@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; }


去往SCP-2932的道路。
项目编号:SCP-2932
项目等级:Thaumiel
特殊收容措施:SCP-2932当前收容于发现地。机动特遣队Xi-9“看守人”被指派进行收容,包括防止附近村庄及城镇居民发现SCP-2932,并对与其发生接触的人员施以记忆删除。在SCP-2932周围已建立隔离带,标出内为自然保护区的警示。隔离带将有守卫定期巡逻。
MTF Ξ-9被指令与SCP-2932-A一同工作,收容从SCP-2932中逃脱的个体。从SCP-2932-A处收集到了一些来自SCP-2932的潜在Euclid及Keter级实体相关信息,列于文章最后。MTF Ξ-9人员和其他分配到SCP-2932的基金会人员要熟知这些信息。
正在尝试修复SCP-2932-2,但因其复杂性和结构的性质,人员必须小心完成任务,不能令其本已脆弱的状态进一步恶化。对SCP-2932-2功能接受过培训的基金会医学博士将以每6小时为一班轮换,确保随时有博士可应对紧急事态。从SCP-2932-A处收集到的该项目相关情报列于文件中。若SCP-2932-2出现严重崩溃,实验性供能系统将启动来尝试维系SCP-2932当前功能。若这些供应被确认无效,MTF Ξ-9和其他安保人员必须准备应对一次大规模收容突破情形。
备注:提醒人员不要试图从任何基因相符生物处获得授权,这时常导致守卫生物的反击。
描述:SCP-2932是一巨大的有机质建筑,位于秘鲁中东部的“艾尔西拉公共保护区”内。外观上SCP-2932是由树木、藤蔓和其他植物组成的巨型穹顶建筑。SCP-2932外部的光源是由从其内部长出的生物冷光球茎组成。该物种和SCP-2932内的多种植物均为在发现SCP-2932前未知的新物种。穹顶建筑本身无法破坏,对其进行破坏将遭到守卫SCP-2932的敌意攻击性植物反击。SCP-2932的主门位于其南侧,除非SCP-2932内的实体同意、或是有着与入口附近生物相同的基因,否则无法打开。
SCP-2932内部为拱形走廊和巨大房间,和外部一样为有机质并长有同类发光植物。对这些区域的调查发现其曾经是管理SCP-2932下部区域的办公室,在一些更大的区域内有曾被居住的痕迹。在这部分区域收集到了关于SCP-2932-1个体的信息,已归从入SCP-2932-A收集的信息中。
SCP-2932的下部楼层位于地下,主要是一个巨大的开放房间,有无数步行道结构通往遍及各处的平台。大部分可抵达的墙空间上都覆盖着茧状的荚形物体,由极度坚韧的植物物质构成,越低处体积越大。这些荚状物的用途似乎是收容SCP-2932-1个体。每个荚的右侧是以多种植物物质构成的仪器,其上有以透明硅石制成的触摸屏,用作旁边荚的操作面板。荚内收容的SCP-2932-1实体信息列于其上,此外还能操作荚的开闭,但这一选项不对没有正确基因配型的人员开放。虽然绝大多数荚都完好且列为进行中,至少有██个荚已经破损。
SCP-2932-A是一老年I类近人形实体,住在SCP-2932内作为其管理者。SCP-2932-A长有六个主要肢体,以后下方两个肢体直立行走。SCP-2932-A的躯干有两个主要部分,全部覆盖着细长的毛发。SCP-2932-A的头部大致为椭圆形,有两对眼睛,一对是复眼和一对为脊椎动物类。其头部前方有一类人的嘴,还有一适于抓取的长鼻结构。SCP-2932-A的头顶有一些小的脊柱状结构,但大部分覆盖着灰色的细毛。在其背部SCP-2932-A长有四只昆虫翅膀,但表现出受损且没有愈合。
SCP-2932-2是一悬在SCP-2932主房间中央的巨型有血管器官,作为SCP-2932的主要能量源。SCP-2932-2以约8bpm的速度搏动,但在紧急情况下可能会减慢到3bpm。依据SCP-2932-A所言,SCP-2932-2是女神缇坦妮雅的心脏,她用自己的身体建造了这座监狱,并用自己的心脏来维持它。
根据SCP-2932-A处收集到的信息,推测SCP-2932曾经和当前都是一座用于收容大批生物和其他实体的监禁系统。在一次影响到SCP-2932原主人(参见文件Alpha-1596-1000)的灾难事件后,该地点陷入关闭,收容的职责交给了SCP-2932人员中的骨干成员,SCP-2932-A是其中的守卫。随时间流逝,这些人员全部死亡、叛逃、失踪,设施开始陷入失修状态。这些情况连同设施主动力源SCP-2932-2的突发衰弱,造成部分收容荚出现故障,其内容物被释放。
采访2932-A:下列采访是在对SCP-2932的早期探索中、基金会人员被SCP-2932-A允许进入建筑后进行。与SCP-2932-A的交流一开始遭遇语言障碍,对方只会使用其母语和盖丘亚语。在可以利用翻译后采访才得以进行。
日期:08/14/85
采访者:Z. Johnson博士
受访者:SCP-2932-A
翻译者:F. Amaru博士[开始记录]
Johnson博士:谢谢你愿意见面,SCP-2932-A。我有许多问题要问,如果没问题的话。
SCP-2932-A:没事,请吧。
Johnson博士:谁建了这地方?
SCP-2932-A:我的人民,Hudaru(原文如此),是缇坦妮雅监牢的建造者。夜之子孙找到我们,知道我们是善工匠的一族,委托我们修建这座建筑。
Johnson博士:为何它们要修这座监狱?
SCP-2932-A:时代是不一样的。夜之子很强大,对,很有势力,非常有,但在它们统治的世界里也有集群的敌人,比现在存在的更强大更恐怖。夜之子孙向伟大的缇坦妮雅祈祷,她把心脏交给他们,Hudaru再用来修造她的监狱。
Johnson博士:是什么让SCP-2932变成我们现在看到的失修状态?
SCP-2932-A:(激动的咔哒)不要装傻,太阳之子。你们心里很清楚到底怎么回事。你们不可能这么健忘。
Johnson博士:我知道了。SCP-2932-A,SCP-2932里的某些荚受损了。你对里面关着的实体知道什么?
SCP-2932-A:它们什么都不是,风暴前的雨点而已。心脏开始衰弱时,必须要把能量分到夜之子孙的真正大敌上。有些不那么重要的就跑掉了。那些我能应付的,我就消灭了。其他的被缇坦妮雅的护卫们做掉了。有一小部分跑了。
Johnson博士:真正的大敌?
SCP-2932-A:是的。(笑)如我所说,有些生物甚至让夜之子困扰,他们中最强大的,那些杀不死的,就被带到这里了。女神非常仁慈,也没有让它们自由。但一旦心脏衰弱了……(咔哒声)你们太阳子孙很强,对,但你们不是夜之子孙。你们对它们,连海潮面前的沙粒都不如。
[记录结束]
附录2932-1:下面的记录收集自终端,内容是关于可能的危险SCP-2932-1实体,大部分当前在收容中。从SCP-2932-A处收集的备注列于此,SCP-2932-A已经对所有内容进行了完整翻译。
囚犯名称:Ephelia
监禁:进行中
监禁日期:4533转9月17环
刑罚:无尽转SCP-2932-A备注:确实,Ephelia是个危险分子。她住在林间,在夜晚猎杀子孙们。她…和你们不一样,也不像子孙们。我不知道她来自何方,但那是一个憎恶快乐的地方。她恶心又美丽,谋害了夜之主的末子,把他的尸体变为傀儡后又引诱领主的妻子没入黑暗中。以伟大的缇坦妮雅之名,她要烂在牢里直至星辰熄灭。
囚犯名称:Yon-Kamur
监禁:进行中
监禁日期:4620转1月20环
刑罚:无尽转SCP-2932-A备注:Kamur是天国的生物,从天上落下。子孙们本来以为他是他们的暗神之一,但很快发现这只不过是头野兽,还是头饥饿的野兽。在被制服前他吞噬了数千,带到这来的时候还要威胁吞掉我们。他们叫Yon-Kamur是“极饿者”;我有时想知道他已经有多饿了。
囚犯名称:Mal-Va-Gar-Ta-Mor
监禁:未进行
监禁日期:2711转1月19环
刑罚:无尽转SCP-2932-A备注:某些带来缇坦妮雅之牢的生物是被称颂的,抓住他们的猎手也受赞美,但Mal-Va-Gar-Ta-Mor是被秘密带到。我甚至是在它被囚禁完成后才知道,但子孙们向我保证,我最好是不要知道。但我记得Mal-Va-Gar-Ta-Mor逃脱之时,子孙们确实没对我说谎。有时候最好就是别知道。
囚犯名称:Adam El Asem
监禁:进行中
监禁日期:4301转7月3环
刑罚:无尽转SCP-2932-A备注:这一个是太阳子孙,但太阳子孙和夜之子孙一样憎恶他。Adam El Asem1一瞥就能凭空唤物,一触就能移山枯河。他的心里住着强大而恐怖的东西,子孙们毫无犹豫把他打进了石头里送到缇坦妮雅这来。还有些像他一样的,在东方的危险太阳子孙,但他们不在此处。有一个牢房给那步伐留下坏灭的备用,还有一个是留给另一位。我不希望填满它们。
囚犯名称:妖精
监禁:进行中
监禁日期:10转1月1日
刑罚:无尽转SCP-2932-A备注:你们真觉得太阳子孙是第一个推翻前人的吗?
请按如下方式引用此页:
“SCP-2932”,作者 djkaktus,来自 SCP 维基。原文链接:https://www.scpwiki.com/scp-2932。译者 ashausesall,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/scp-2932。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
文件名:forest2.jpg
图像名:Temple & jungle. (3746632042).jpg
图像作者:Greg Willis
授权协议:CC BY-SA 2.0
来源链接:Wikimedia
更多维基文档信息,请见版权信息总览。