/* 基础设置 */ @charset "UTF-8"; /* 声明字符编码为UTF-8 */ /* 引入第三方CSS文件 */ @import url("https://backrooms-to-dv.wikidot.com/local--files/theme:fixed-test/CSS.css"); /* 基础样式文件 */ @import url("https://fastly.jsdelivr.net/gh/Etinjat/CSS@Backrooms/003v_THEME-liminal_new-BHL.css"); /* Backrooms主题扩展样式 */ /* 引入Google字体 */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap'); /* 主字体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文衬线体 */ /* 根变量定义 */ :root { --logo-image: url("https://imgurl.diadi.cn/imgs/2025/07/5ec45654084495de.png"); --header-title: "锚点公会"; --header-subtitle: "互助,共进"; /* 字体栈定义 */ --body-font: Inter, Noto Sans SC, Arimo, Verdana, Geneva, sans-serif; /* 正文字体 */ --header-font: Inter, Noto Sans SC, Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic, Arial, sans-serif; /* 标题字体 */ --title-font: var(--header-font); /* 同标题字体 */ --mono-font: Recursive, 幼圆, Noto Serif SC, Consolas, monaco, monospace; /* 等宽字体 */ /* 颜色变量定义(RGB格式) */ --white-monochrome: 250, 250, 255; --pale-gray-monochrome: 240, 255, 255; --light-gray-monochrome: 100, 100, 230; --gray-monochrome: 100, 100, 230; --black-monochrome: 0, 0, 5; --bright-accent: 90, 80, 230; --medium-accent: 90, 80, 230; --dark-accent: 90, 80, 230; --pale-accent: 120, 200, 255; --swatch-menubg-dark-color: var(--white-monochrome); --thing: 100, 110, 200; /* 渐变效果 */ --gradient-header: linear-gradient(to top, rgba(var(--pale-gray-monochrome)) 0%, rgba(var(--pale-gray-monochrome), 0.20) 100% ); /* 顶部渐变 */ /* 组件颜色变量 */ --swatch-headerh1-color: var(--white-monochrome); /* 主标题颜色 */ --swatch-headerh2-color: var(--white-monochrome); /* 副标题颜色 */ --swatch-topmenu-border-color: var(--pale-gray-monochrome); /* 顶部菜单边框色 */ --swatch-topmenu-bg-color: var(--pale-gray-monochrome); /* 顶部菜单背景色 */ /* 链接颜色 */ --link-color: 120, 80, 230; --hover-link-color: 120, 200, 230; --visited-link-color: 50, 0, 100; /* 背景渐变距离 */ --background-gradient-distance: 0rem; /* 无渐变距离 */ /* 斜条纹效果(当前未使用) */ --diagonal-stripes: linear-gradient(transparent 0); } /* 页面主体背景样式 */ #skrollr-body { background-image: url("https://imgurl.diadi.cn/imgs/2025/07/7c7cef1bf97ff72d.png"); background-repeat: repeat-x; background-size: inherit; width: 100%; height: 7.5rem; } /* 主容器样式删除 */ #container { background-image: radial-gradient(circle, rgb(var(--pale-gray-monochrome), 0.40) 0%, transparent 0); /* 透明点阵 */ background-size: 0.25em 0.25em; /* 点阵大小 */ background-repeat: repeat; /* 重复平铺 */ background-attachment: fixed; /* 固定背景 */ } /* 侧边栏图片样式 */ #side-bar .side-block div a img { filter: invert(1) brightness(0.8); /* 图片灰度化 */ } /* 页面底部按钮样式 */ div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; /* 无圆角 */ -moz-border-radius: 0em; /* Firefox兼容 */ border: none; /* 无边框 */ } /* 底部按钮交互状态 */ div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; /* 保持无边框 */ } /* 顶部区域设置 */ #header, #top-bar { background-attachment: scroll; /* 背景不固定 */ } /* 头部区域样式 */ #header { background-image: none; /* 无背景图 */ } /* 头部伪元素(用于显示Logo) */ #header::before { content: ""; /* 必须内容 */ position: absolute; /* 绝对定位 */ height: 100%; /* 全高 */ width: 100%; /* 全宽 */ left: 0; /* 左对齐 */ top: 0; /* 顶部对齐 */ background-image: var(--logo-image); /* 使用Logo变量 */ background-size: auto 8rem; /* 自动宽度,高度16rem */ background-position: center; /* 居中显示 */ background-repeat: no-repeat; /* 不重复 */ opacity: 0.6; /* 60%透明度 */ } /* 主标题样式 */ #header h1, #header h1 a { position: absolute; /* 绝对定位 */ top: 1rem; /* 距顶部1rem */ margin: 0; /* 无外边距 */ width: 100%; /* 全宽 */ display: flex; /* 弹性布局 */ justify-content: center; /* 内容居中 */ z-index: 0; /* 底层 */ } /* 副标题样式 */ #header h2, #header h2 span, #header h2 span::before { position: absolute; /* 绝对定位 */ top: 2rem; /* 距顶部2rem */ margin: 0; /* 无外边距 */ width: 100%; /* 全宽 */ display: flex; /* 弹性布局 */ justify-content: center; /* 内容居中 */ } /* 标题文字阴影 */ #header h1 a::before, #header h2 span::before { text-shadow: .063rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5); /* 黑色阴影 */ } #page-title { border-color: rgb(var(--light-gray-monochrome)); color: rgb(var(--dark-accent))!important; font-size: 2.5rem; } h1 { font-size: 2rem; color:rgb(var(--dark-accent)); line-height: 1 } h2 { font-size: 1.8rem; color:rgb(var(--dark-accent)); line-height: 1 } h3 { font-size: 1.6rem; color:rgb(var(--dark-accent)); line-height: 1 } h4 { font-size: 1.4rem; color:rgb(var(--dark-accent)); line-height: 1 } h5 { font-size: 1.2rem; color:rgb(var(--dark-accent)); line-height: 1 } h6 { font-size: 1rem; color:rgb(var(--dark-accent)); line-height: 1 } /* 页脚样式 */ #footer{ color: rgb(var(--pale-gray-monochrome)); /* 浅灰色文字 */ } /* 新建页面链接样式 */ a.newpage { background: transparent; /* 透明背景 */ text-decoration: none /* 无下划线 */ } a.newpage { color: rgb(var(--newpage-color)) /* 使用变量颜色 */ } /* 搜索框悬停状态 */ #search-top-box-input:hover, #search-top-box-input:focus { background: rgba(var(--medium-accent), 0.25); /* 半透明背景 */ } /* 顶部导航菜单链接样式 */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(var(--black-monochrome)); /* 黑色文字 */ } /* 顶部导航菜单悬停状态 */ #top-bar div.mobile-top-bar>ul>li:hover a, #top-bar div.top-bar>ul>li:hover a { color: rgb(var(--gray-monochrome)); } /* 登录状态文字样式 */ #login-status { color: rgb(var(--pale-gray-monochrome)); /* 白色文字 */ } #login-status a { color: rgb(var(--pale-gray-monochrome)); /* 白色链接 */ } #login-status ul a { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色链接 */ } /* 账户按钮样式 */ #account-topbutton { color: rgb(var(--pale-gray-monochrome)); /* 白色文字 */ } /* 维基内容表格样式 */ table.wiki-content-table th { background-color: rgba(100, 110, 200, 0.5) !important; /* 淡紫色背景 */ color: rgb(var(--black-monochrome)); /* 黑色文字 */ border-color: rgb(var(--black-monochrome)); /* 黑色边框 */ } /* SCP图片块样式 */ .scp-image-block { box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ } /* 引用块样式 - 添加20%透明度的紫色背景 */ blockquote, div.blockquote { background-color: rgba(90, 80, 230, 0.2); /* 20%透明度的紫色背景 */ color: inherit; /* 继承文字颜色 */ padding: 1rem; /* 适当的内边距 */ margin: 1rem 0; /* 外边距 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 保留原有阴影效果 */ border-color: rgb(90, 80, 230) !important; /* 蓝色边框 */ } /* 风格化引用块 - 修改左侧边框为蓝色 */ .styled-quote { background-color: rgb(var(--pale-gray-monochrome)); /* 浅灰背景 */ border-left: 0.5rem solid rgb(90, 80, 230); /* 左侧蓝色边框 */ padding: 0.1rem 1rem; /* 内边距 */ margin: 0.5rem 0 0.5rem 0.25rem; /* 外边距 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ } /* 暗色风格引用块 - 修改背景为蓝色 */ .dark-styled-quote { background-color: rgb(20, 10, 50); /* 深蓝色背景 */ border-left: 0.5rem solid rgb(70, 60, 200); /* 稍深的蓝色边框保持层次 */ color: rgb(250, 250, 255); /* 白色文字提高对比度 */ padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .dark-styled-quote a{ color: rgb(var(--swatch-menubg-medium-color)); /* 链接颜色 */ } /* 暗色内容块 */ .darkblock { background-color:rgb(70,60,200); /* 深灰背景 */ padding: 0.01rem 1rem; /* 内边距 */ margin: 0.5rem 0 0.5rem 0.25rem; /* 外边距 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ color: rgb(var(--white-monochrome)); /* 白色文字 */ } /* 亮色内容块 */ .lightblock { background-color: rgb(240, 255, 255); /* 蓝色背景 */ color: rgb(0, 0, 0); /* 黑色文字提高可读性 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); /* 链接颜色 */ } /* 侧边栏图片反转效果 */ #side-bar .side-block div a img { filter: invert(calc(230/255)); /* 图片颜色反转(程度约90%) */ } /* 新建页面链接(不存在链接)样式 */ a.newpage { background: transparent; /* 透明背景 */ text-decoration: none; /* 无下划线 */ color: rgb(120, 200, 230) !important; /* 红色文字,使用!important确保覆盖其他样式 */ } /* 新建页面链接悬停状态 */ a.newpage:hover { color: rgb(120, 200, 230) !important; /* 保持橙色 */ background-color: rgba(255, 0, 0, 0.1); /* 添加淡黄绿色背景提高可识别性 */ } /* 深色边框块样式 - 深灰背景+亮色边框 */ .dark-borderblock { background-color: rgba(70,60,200, 0.8); /* 深灰色背景 */ color: rgb(255, 255, 255); /* 白色文字确保可读性 */ padding: 0.01rem 1rem; /* 紧凑的内边距 */ margin: 0.5rem 0 0.5rem 0.25rem; /* 外边距设置,左侧稍大 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 轻微阴影增加层次感 */ border: solid 0.3rem rgb(90, 80, 230); /* 亮色粗边框突出显示 */ } /* 亮色边框块样式 - 亮色背景+深色边框 */ .light-borderblock { background-color: rgba(120, 200, 255, 0.3); /* 亮色背景 */ color: rgb(0, 0, 0); /* 黑色文字形成对比 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(70,60,200); /* 深色边框 */ } /* 带边框的Logo块样式 */ .border-logoblock { padding: 0.01rem 1rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ color: rgb(255, 255, 255); /* 白色文字 */ margin: 0.5rem 0 0.5rem 0.25rem; display: block; /* 块级显示 */ position: relative; /* 相对定位为伪元素定位做准备 */ background-color: rgba(70,60,200,0.8); /* 蓝色背景 */ border: solid 0.3rem rgb(90,80,230); /* 亮色边框 */ } /* Logo块的背景水印效果 - 放大2倍 */ .border-logoblock::after { content: ""; /* 伪元素必需属性 */ float: center; /* 居中浮动 */ border: solid 2px #0000; /* 透明边框 */ background: url(https://imgurl.diadi.cn/imgs/2025/07/699e1752ab03a1e0.png) center/50% no-repeat; /* Logo水印放大2倍 */ opacity: 0.25; /* 半透明效果 */ top: 0; /* 覆盖整个父元素 */ left: 0; bottom: 0; right: 0; position: absolute; /* 绝对定位 */ z-index: 1; /* 置于内容下层 */ } /* 基础Logo块样式(无边框版) */ .logoblock { padding: 0.01rem 1rem; color: rgb(250, 250, 255); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgba(70,60,200,0.8); /* 深灰背景 */ } /* 基础Logo块的水印效果 */ .logoblock::after { content: ""; float: center; border: solid 2px #0000; background: url(https://imgurl.diadi.cn/imgs/2025/07/699e1752ab03a1e0.png) center/50% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } /* 标题块样式 - 用于章节标题 */ .titleblock { background-color: rgba(70,60,200,0.8); /* 深灰背景 */ color: rgb(255,255,255); /* 白色文字 */ padding: 0.5rem 1rem 0.10rem; /* 上右下左内边距 */ margin: 1.5rem 0rem 0.5rem 0rem; /* 较大的上外边距 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); /* 较深的阴影 */ border: solid rgb(90,80,230) 2px; /* 亮色细边框 */ } /* 标题框样式 - 配合titleblock使用 */ .titlebox { color: rgb(0,0,0); /* 深灰文字 */ position: relative; /* 相对定位 */ top: -1.6rem; /* 上移与titleblock重叠 */ background-color: rgba(120,200,255,0.8); /* 亮色背景 */ padding: 0.25rem 1rem; /* 内边距 */ line-height: 0.1rem; /* 紧凑的行高 */ } /* 存在链接的悬停效果 */ a:not(.newpage):hover { background-color: rgba(120, 200, 230, 0.1) !important; /* 10%透明度的青蓝色背景 */ transition: background-color 0.2s ease; /* 添加平滑过渡效果 */ } /* 确保侧边栏链接也有相同效果 */ #side-bar a:not(.newpage):hover { background-color: rgba(120, 200, 230, 0.1) !important; } /* 顶部菜单链接悬停效果 */ #top-bar a:hover, #top-bar div.mobile-top-bar a:hover { background-color: rgba(120, 200, 230, 0.1) !important; } /* 顶栏链接默认状态(未悬停) */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(90, 80, 230) !important; /* 深灰色文字 */ transition: color 0.2s ease; /* 添加颜色过渡效果 */ } /* 顶栏链接悬停状态(保持原有悬停效果) */ #top-bar div.top-bar > ul > li > a:hover, #top-bar div.mobile-top-bar > ul > li > a:hover { color: rgb(var(--pale-gray-monochrome)) !important; /* 悬停时变为浅灰色 */ background-color: rgba(90, 80, 230, 0.1) !important; /* 保持青蓝色背景悬停效果 */ } /* 分页顶部(tabview)样式 - 修改选中分页为蓝色 */ .yui-navset .yui-nav .selected { background-color: rgb(250, 250, 255) !important; /* 选中分页蓝色背景 */ border-color: rgb(90, 80, 230) !important; /* 蓝色边框 */ } /* 选中分页的文字颜色 */ .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover { color: rgb(255, 255, 255) !important; /* 白色文字提高可读性 */ background-color: transparent !important; /* 透明背景 */ } /* 分页内容区域 */ .yui-navset .yui-content { background-color: rgba(90, 80, 230, 0.1) !important; /* 淡蓝色背景 */ border-color: rgb(90, 80, 230) !important; /* 蓝色边框 */ } /* 未选中分页悬停效果 */ .yui-navset .yui-nav a:hover { background-color: rgba(90, 80, 230, 0.2) !important; /* 淡蓝色悬停背景 */ } /* 安全/危险等级容器样式 */ .sd-container { --sd-text:var(--white-monochrome); /* 文字颜色 */ --sd-bullets:var(--dark-accent); }
生存难度:生存難度:
等级等級 1
- 安全且稳定
- 极少量实体
- 友好的团体
如何使用:
[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]
class 处的可用参数包括以下内容,支持简繁体及英文输入。
| English | 简体中文 | 繁體中文 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 |
| unknown | 未知 | 未知 | |||||||||||||||
| habitable | 宜居 | 宜居 | |||||||||||||||
| deadzone | 死区 | 死區 | |||||||||||||||
| pending | 等待分级 | 等待分級 | |||||||||||||||
| n/a | 不适用 | 不適用 | |||||||||||||||
| amended | 修正 | 修正 | |||||||||||||||
| omega | 终结 | 終結 | |||||||||||||||
该组件支持简繁切换,如下方代码所示:
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]
在 lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。
自定义等级
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]
使用 CSS 进行自定义:
你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:
[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;
/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */
/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */
/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */
/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]
旧版颜色:
如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:
[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]
文件属性:Crest
Level M6C-9是后室M6C层群的第10层。
描述
该层级表现为一片连绵起伏的丘陵与山地地区,其面积大小固定,约与一座小型城市面积相当,其边缘处存在肉眼不可见的屏障1,屏障外全部是天空的颜色,推测其为虚空,可能在远处与其他层级相连。该层级的昼夜循环与前厅基本无异。
山区
山坡的景色。
该层级的自然环境主要包括没有进行 (深度) 开发的山区,它们在层级中占有相当大的面积,也是该层级引人入胜的一个重要组成部分。山区覆盖茂密的温带落叶植被,但因该层级不存在季节更替,因此不同区域树木的生长周期并不完全统一。山间的河流由山顶的细石间发源,流至山脚后会穿过屏障自然下落,最终去向未知。
受人为管理的区域一般铺设了稀疏的木制步道、铁索、石砖等帮助流浪者进行徒步,并建立了高强度的拦网防止山体滑坡。在更外围的区域基本上没有人涉足,这些地方一般草木丛生、地形复杂,穿行十分不便,同时可能遇到实体或自然灾害2,因此执行必要勘探时需配备手电筒、防护用具、猎刀等装备,除此之外不建议进入。
在该层级没有人类涉足的地方,偶尔会有实体出没,种类繁杂但数量稀少,几乎无法对结伴而行的流浪者构成实际威胁。躲开敌对实体的最好办法就是不贸然进入人烟稀少的山区。
建筑区
锚点工会建立在该层级内的中央控制楼,位于广场附近。
在该层级中央海拔较高的地区,存在一处经人工改造的地区。其中心是一座开阔的广场,广场周围是发电站及商业街、小型住宅区等建筑群,同时该区域也是流浪者聚集的地方。进入该层级的流浪者可以根据路标来到广场。流浪者可以在公共场所自由活动,商业街的所有门店也全部面向流浪者开放。在这些流浪者聚集的地方,同时也生活着一些友善的无面灵,并保持着与人类相似的生活方式,因此流浪者大可将他们当作普通居民看待。
矿井
在一处偏远的山体背风坡,有一处被发现的废弃矿井,其相关信息尚未公布。
基地、前哨和社区
锚点工会中央信号基站
基地中的一座小型雷达。
- 锚点工会参与建立了该层级的大部分人工设施,并在其中建立了「中央信号基站」基地。信号基站会通过无线连接的方式实现与其他信号较弱的层级互相联通,保证在不同层级内都可以安全稳定地接入公会的网络。
- 基站内的发射塔与雷达可以连接到广度极大的范围,其甚至包含了不同层群的层级。公会通过这种方式实现与不同层级内的公会前哨保持实时互通,使会员可以随时与公会联系。这些装置可能会在将来投入更广泛的应用范围。
- 目前,基站已投入运营。所有其他关于基站内部的详细资料属于A级及以上属性文件。
- 该基地同时包含商业街的部分门店3,公会欢迎流浪者前来交易、娱乐。
M.I.C.锚点基站前哨(已撤离)
- M.I.C.的该前哨参与了该层级的勘探与建设工作,并建立了自己的前哨站。目前该前哨站已完全撤离。
- 曾负责基站部分技术问题的指导及辅助运营,并管理该层级的流浪者社区。目前所有项目已由锚点公会接管。
入口和出口
入口
- 从锚点工会的任意基地可以直接通往该层级的商业街。
- Level M6C-7的山坡切出有概率来到该层级。流浪者可以以相同的方式回去。
出口
- 从商业街中最大的文创店可以直接通往锚点工会的任意基地。
- 从屏障意外切出,流浪者将在下坠时昏迷,并于Level M6C-0中醒来。
作者:Mimura Foxium
屏幕之外,文中图片由作者在前厅拍摄。
« Level M6C-8 | Level M6C-9 | Level M6C-10 »

