注:由于CSS,一些迭代或链接为黑色文本样式
:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }
生存难度:生存難度:
等级等級 3
- 全不安安不全
- 定不稳稳不定
- 体大实量量实大体
翻译者须知:
从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。
这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。
除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。
如何使用:
[[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: 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]]
Level11-999-XL是后室level11XL分站的介系子层级。
描述
Level11-999-XL是一座类似于level11的无限延伸的现代都市,建筑物风格均为21世纪前中期的高楼大厦。本层级主要由城市的主体部分与该层的天空盒构成,不存在除现代化都市外的任何区域。
本层主体部分为后室中常见的非线性空间,不具备完备度量空间(欧几里德空间的性质)层级的结构通常在流浪者的视线之外开始发生变化,因此,处于本层的流浪者容易迷失方向。
Level11-999-XL拥有正常的昼夜循环,遵循前厅中24小时的昼夜循环模式,且白昼与夜晚的温度始终维持在20~25℃左右。
城区
地面
层级内的地面主要为公路区域的泊油路与铺设于人行道的地砖。
本层的人行道与前厅相类似且铺设完备的地砖,特定区域的人行道装饰有色彩明艳的灯带。本层马路皆由沥青铺设,其被称为“一尘不染”的 — — 因路面上不会出现明显的垃圾或出现道路破损凹陷等情况。
层级内的马路设有与其对应的红绿灯。这些红绿灯虽并未联通任何电源,但这并不妨碍它们维持正常运作。
层级内存在功能齐全,可正常驾驶的载具,这些载具通常杂乱的停在人行道或于马路上自主行驶,目前的探索并未找到可供开起车门并启动车辆的钥匙,故本层的车辆不存在被驾驶的状态。
楼房
街道两端的建筑物与前厅相对应,包括但不限于商店,居民楼或完全空置的楼房。因本层的特殊效应,大部分表现为:悬浮在半空,部分陷入地面,相互穿插等…………仅有极少数建筑物可以进入。
层级内含有发电厂等大型建筑,这些建筑无法进入且似乎多年未工作,仅是作为一种标志存在。这类大型建筑通常难以进入或完全封锁,常分布在城市外围。
能够给流浪者提供补给的商店类建筑通常不推荐进入:因其年久失修,无法实现其中补给的安全性,且在黑暗的环境中可能藏匿有未知的实体。不过据流浪者口述,他们曾在该层商店大部分已变质或不能使用的物品中寻找到了保存完好的object-74。
WiFi
本层级设立有单独的信号塔和信号基站,但WiFi的强度却差强人意,仅可维持正常的电话通信。流浪者通常可在建筑内部找到并使用这些WiFi ,连接并使用这些WIFI不需要密码,WiFi设备的名称也十分容易辨识。
现象
本层级的重力正常,除特有的“倒流效应”外并无任何特殊效应,因此,人们简单地把本层描述为时空意义上完全相反的level11,由于我们并未完全掌握该层信息,目前对本层级的调查仍在进行当中。
倒流效应
本层的倒流效应通常会使流浪者在本层级处于与其自身完全相悖时间流动范围内,倒转效应只对时间的流动做出影响,因此不存在空间上的差异。
此外,该效应还表现为一定的模因病毒1
:本效应将导致流浪者眼中的建筑物等物体出现错位,悬浮,甚至相互穿插现象。其症状通常表现为:眼球胀红,出现眼雾,且在流浪者视线范围内物体会以难以描述的方式相互融合,脱离地面或陷入地面。
受到模困感染的流浪者会不可逆的被倒流效应同化,本效应通常会在把流浪者逆转为与层级完全相反后停止,此过程中流浪者会完全昏迷。当流浪者再次醒来时,与自身相关的所有事务将开始倒置,视线范围内的物体将完全相反,…………最后身体不可控制的飞向整个层级的天空。
在此之后,流浪者将#黜%廯廯¥$……
&·;*1/:&#蔕£;
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
蔠蔠
生存难度:生存難度:
等级等級 等待分级
- 未知实体数量
- 未知实休数重
- 未知釋戻倏㱢
翻译者须知:
从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。
这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。
除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。
如何使用:
[[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: 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]]
眼睛ۣۖิ失ۣۖิۣۖิ色彩ۣۖิۣۖิۣۖิ
描述
Level11.999-XL是一条无限向前延伸的公路,其右侧为一座高耸入云的山川,左侧设有蓝色的护栏。
本层级不存在昼夜循环,时间永远恒定在傍晚20:30左右。本层级不具备欧几里德空间的基本性质,道路的状况通常在流浪者的视线之外发生改变。
熊着倒玛?
丕対,冇车酉茌影响我汁沭
生存难度:生存難度:
等级等級 2
- 不安全
- 稳定
- 少量实体
翻译者须知:
从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。
这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。
除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。
如何使用:
[[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: 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]]

睛ۣۖิ睛失ۣۖิۣۖิ失彩ۣۖิۣۖิۣۖิ
描述
Level11.999-XL主体为一座造型前卫的红色大楼,不存在昼夜循环且时间似乎永远停滞在12:30左右,原因不明。本层级的气温较高,约为30至36度。虽然如此,但层级建筑物的内部设有空调,其大大减少了气温对流浪者的危害。
述足丕対
?????????????????
这里一直在变化
le༽༾༿༼༽༾༿༼v༽༾༿༼༽༾༿༼༽༾༿༼el4༽༾༿༼༽༾༿༼༽༾༿༼45༽༾༿༼༽༾༿༼༽༾༿༼le༽༾༿༼༽༾༿༼༽༾༿l༼༽༾༿༼༽༾༿༼9༽༾༿༼༽༾༿ev༼༽༾༿༼༽༾༿༼༽༾༿2༼
………………
…………
………………
生存难度:生存難度:
等级等級 amended
- 不安全且不稳定
- 未知实体数量
- 文件被篡改
翻译者须知:
从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。
这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。
除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。
如何使用:
[[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: 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]]
描述
Le[£*;&£愕+*&£䜙#鯔
level666.11-XL的应镜效子子效镜应将导致容真内正文的正数库据据库数正文内容不能出现在
分该部层文级正的级正的文部分任何对数据库的致修导改将都改将修导致文档损进破一步步一破进损
任何有关该层空间或时间意义上的记录都会盖被掩一片片一模糊糊模掩盖通过语言传输则表现为清被不动齿的口口的齿动不被清
本层个仅一有有一仅个实体,身这本个级层层级个本这身
关于该层的正文被简响影应镜效子子效镜应影响并锁定,尝试回复文档均以失败告终。
应镜效子子效镜应
应镜效子子效镜应是本层除倒转效应外特有的特殊效应。
由于
崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺崿㲄羲䚞㩗𣘺,数据库中所保存的文本均为告两报篇其早早期篇报两告。
锟斤拷2锟斤拷!!!锟斤拷!!!锟!!!斤拷锟!!!斤拷锟斤!!!拷锟斤!!!拷锟!斤!拷锟!斤!拷锟斤!拷!锟斤!拷!锟!斤拷!锟!斤拷!!锟!斤拷!锟!斤拷!锟!斤拷!锟斤拷!锟!斤!拷!锟斤拷!烫༽༾༿༼༽༾༿༼烫烫༽༾༿༼烫烫༽༾༿༼༽༾༿༼烫烫烫烫烫烫烫ﻬ°烫烫烫༽༾༿༼烫烫烫༽༾༿༼烫烫༽༾༿༼烫烫༽༾༿༼༽༾༿༼烫烫ۣۖิ烫ﻬ°ﻬ°ﻬ°烫烫ﻬ°烫烫烫༽༾༿༼༽༾༿༼烫烫ﻬ°ﻬ°烫烫ۣۖิ烫烫烫ۣۖิۣۖิۣۖิ烫烫༽༾༿༼烫
蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠蔠
实体
居民
描述:居民为本层的原生实体,其外观表现为正常的人类实体,
与前厅中的人类基本一致:
它们拥有与人类相同的行为习惯,常常于大街上游荡,正常的进食与工作…………
受到本层特殊效应的影响,居民与Entity-1的时间相反,流浪者通常可以在本层看到居民朝它相反的方向行走或是在餐厅中完整吐出他们所食用的食物。
注意:由于本层级的倒流效应,流浪者应避免直接出现在居民的视野范围内一一完全相反的时间流动可能导致流浪者在被实体发现的瞬间被杀死。由于不可近距离观察的特性,我们对居民特征知之甚少,若流浪者无意间进入该层级,请尽量保持自己所在的位置隐蔽。
基地,前哨与社区
本层级无任何基地前哨与社区。
出口和入口
入口:
在level11注视一座倒立的建筑物便可来到此层级。
出口:
一些建筑不会通往Level 0、Level 1、Level 2、Level 3、Level 4与Level 196。
再次找到一栋倒置的建筑不会带你回到level 11。
进入下水道的排放口将不会带你去到Level 34。
其他出口正不在探索中
探索记录2025/06/17.
探员A-06: 呼,呼叫总部,我已成功进入该层级。
???: 很好,你清楚自己应当去哪,对吧?
探员A-06: 明白。
(三分钟后)
探员A-06: 呼叫总部,我已成功发现一只落单的居民实体。
???: 能尝试将其捕杀吗?
探员A-06: 我尽量。
探员A-06: 任务顺利完成,现在已到达返回的出口。
???: 我们派了人在入口处接应你,祝你好运。
探员A-06: 那人有什么明显的身份特征吗?
???: 那人胸前有一枚铜制的勋章。
探员A-06:[看向实体的尸体] 勋章?
???: 喂?
探员A-06: 嗯,听着呢。
???: 不知何原因,前来接应你的特工已失联,祝好运。
探员A-06:[“居民”的对讲机发出刺耳的噪声]
通话结束
公告
我们的特工观测到Level11出现少量居民实体,若各位level11的公民观察到本实体,请向最近的M.E.G工作人员汇报,我们会尽可能清除该实体。感谢大家的配合M.E.G.
镜子效应
镜子效应为本层特有的效应,其危险性本应引起高度重视。但由于此效应的影响,数据库文本内容无法正常的形式呈现在流浪者面前。任何尝试修改数据库正文的行为都将导致该层级正文的文本变得更加混乱。
该效应将导致进入层级的流浪者自身的视网膜逐渐遭到破坏,直至彻底失明。
流浪者进入层级时,会进入潜意识投射的虚拟空间,也就是正文中记述的的“11.999-XL”,这里称为“666.11-A”。
进入层级后,流浪者身体各部的感官将被屏蔽,大脑不会对眼部的报错产生反应。此过程中流浪者的潜意识在“666.11-A”中的生理感受均为层级所模拟。待流浪者的双眼被层级所吞噬,该层将以一种名为“新眼睛”的物质代替流浪者原本的双眼。此时,“666.11-A”中流浪者的潜意识将被拉回,并切出至Level11。
实体
流浪者切出该层后,统一称为“居民”。在“居民”切入level 11后,视野范围内的一切将与正常状态下流浪者的所见完全相反。此时处于居民视野中的流浪者将在之后的未知时间不可避免的走入一栋倒置的建筑,最后进入该层级。
孽你罪的的罪你孽改再悔无无悔再改会的机机的会。
䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚
䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢
邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚䥚邑缢篅篅缢邑䥚,你的罪孽再无悔改的机会。
此外,构成本层级的部分将会根据流浪者的视力或精神状况发生改变,如:有过单眼疾病史的流浪者将被传送到该层级的另一个形态,一条盘山的公路。并最终将其导向level445。拥有高度近视或其他视力问题的流浪者则会被传送至一座阈限的红色复式公寓,并最终将流浪者导向level92。
+ 错误,网址未返回任何信息刷新页面
« Level 11 | Level 11.999-LX | Level 11.667 »




