Lanying的报告

: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 }
评分: +44+x

我又一次跌倒。

从地面上爬起,我向前望了过去。

眼前的这座山属于阿帕拉契山脉,我对此很熟悉,

因为这里是我切入后室之前,所处的地方。

我愣了一下。

阅览过无数层级文档的我,并不记得有一个这样的层级。


这时,地上的一个东西吸引了我的注意,那是一个覆满灰尘的望远镜。

它看起来十分熟悉,但我又说不上我在那里见过它。

我把它拿了起来,这时我猛的想起,

那是十五年前,我在山上摔倒,切入后室的那个瞬间,

跌落到地上的望远镜。


我,好像回到前厅了。

我呆滞在那里。

刹那间,喜悦与激动充斥了我的大脑,我差点晕了过去。

但是回头看去,眼前的景象让我再一次惊讶:

后方不是记忆中的山路,而是无限的、相同的、聚集在一起的山峰。

——David Lester的日记




5hsx3.svg

— 数据库载入中… —


[00:00:00] Loading…
[00:00:03] Applicating to the Database…
[00:00:06] Entering Password: WE ARE SURVIVING ARDENTLY…

[00:00:15] Current Progress: 24.97%…
[00:00:17] Setting Up Data Interfaces…
[00:00:22] Resisting Ghœliþication…
[00:00:28] Current Progress: 45.72%……

[00:00:33] Burning Up the Rooms Wide Web…
[00:00:37] Accumulating Energy…
[00:00:40] Filling the Artillery of Alkaid…
[00:00:43] Current Progress: 74.29%……

[00:00:47] Activating Data Stream…

Organizations Allowed…
The Major Explorer Group…
The Backrooms Nonaligned Trade Group…
The SpeedNoclippers…
The Backrooms Furniture Producing Factory…
The Électron Positif Particle Tech Co.,Ltd. of Backrooms…

32 More…

[00:01:04] Current Progress: 99.86%……

[00:01:05] Successfully Linked…

[00:01:20] All Emergency Procedures Activated…

[00:01:23] Everything is Ready. Start to Access.


对于 Level C-1 的初步勘察

时间:BTC 2025年9月28日
勘察人员:David Lester

生存难度:生存難度:

等级等級 0

  • {$one}
  • {$two}
  • 实体绝迹

如何使用:

[[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]]

Level C-1 是后室C层群的第一层。此为 Level C-1 之叠加层之一。

描述

AM

Level C-1 的一张照片,由 M.E.G.勘测员 David Lester 拍摄,图中木屋可能通向 Level C-100

Level C-1 是一片连绵且无限的群山,其外观与前厅阿帕拉契山脉极为相似。层级内气温处于4~18℃之间,气压恒定至于101kPa,湿度适宜,存在12小时交替的昼夜变化和Wi-Fi信号。

群山表面无不被繁茂的针叶林覆盖。构成针叶林的树木大多为松科或杉科乔木,平均高度约为5m。山地道土壤处于半冻结状态,即内部含冰但仍具有一定的柔性,这使得土壤上难有草本植物存活。

层级内无法观察到其他天体,因此以大幅度光照强度变化为界限的,所谓“昼夜交替”之形成原因仍在探寻。层级内空气质量优,可见度中等,一些区域内存在少许雾气,可能会影响观察者的视野。

山体表面存在一个木屋。木屋的门已被上锁,并且此门与 Level C-100 的层级密钥碎块产生了微弱的共振,推测此为通向 Level C-100 的入口。

一位M.E.G.勘察员初入层级内时,发现了层级内的一个物品。经证实,物品正是该干员切出前厅时不慎掉落于前厅的望远镜,目前尚未得知发生此现象的原因。

入口与出口

入口

  • 使用 Level C-1 的层级密钥开启 Level 1 的一扇门可能来到本层级。
  • 更多入口尚待补充。

出口

  • 在层级内失去意识可能回到 Level 1
  • 更多出口尚待补充。

通告

已发现 Level C-1 的层级文档有误,现紧急修改中。请各位流浪者紧密关注该层级文档,以立即获取最新信息。

Meglogo

M.E.G.——为了人类的明天





对于 Level C-1 的再一次勘探之简要概述

时间:BTC 2025年9月30日
勘察人员:Iwaie Asuit & Quano Rui
报告撰写人员:M.E.G. 现象研究部研究员 NPCenter

Level C-1 内推测存在孤立效应(未证实),其环境据 David,Iwaie 和 Quano 所述,皆不相同。David 称 Level C-1 为一片山岭,Iwaie 与 Quano 则分别称层级为“寒冷的冰原”和“阳光强烈的峡谷”。此外,三者均提到他们在层级内观察到了一座木屋,其中携带 Level C-100 层级密钥碎块的 David 与 Quano 皆定密钥碎块与木屋发生共振。

由此,我们推出不同环境下 Level C-1 内均会生成一座上锁的木屋,并极大概率与 Level C-100 相连。M.E.G.现已派出精英特遣队员携带 Level C-100 之层级密钥前往 Level C-1 进行二次探测。更多信息皆会在此页面更新。



对于 Level C-1 的再一次勘探之补充信息-01

时间:2025年10月1日
勘察人员:Drannin
报告撰写人员:M.E.G. 现象研究部研究员 NPCenter

M.E.G.特遣队员 Drannin 已于BTC 2025年10月1日抵达 Level C-1 并发现木屋,待其使用层级密钥开启木屋之门并进入木屋后,其立刻切入到了 Level C-100,这与 Level C-100 之层级文档中的描述不相吻合。据 Drannin 于 Level C-100 发送回的消息称,Level C-1 为一片海洋,自身在切入时已浸入海水中,待发现远处存在一座漂浮于水上的木屋后,便立即游到木屋所在位置并切入 Level C-100

特遣队员 Drannin 现已回归位于 Level 1 的M.E.G.基地。我们仍会对 Level C-1 进行更深层的调查,关于其的更多信息仍会在此页面更新。



对于 Level C-1 的再一次勘探之补充信息-02

时间:2025年10月2日
勘察人员:Drannin
报告撰写人员:M.E.G. 现象研究部研究员 NPCenter

M.E.G.勘察员 David Lester 于其今日前往 Level C-1 后再次成功切入了 Level C-100,这一消息已传播于后室各地并引起剧烈轰动。据此,我们有望重构 Level C-100 层级文档内描述的“破门计划”,即寻找多次出入 Level C-100 方式的项目。如果这一项目成功实施,后室的宜居性将会大大提高,整个后室也会迈向一个新的时代。

目前,M.E.G.仍在持续对 Level C-1 有关各类现象进行研究。这项研究的工作周期将会很长,但请各位流浪者务必持续关注有关消息。


通告:意外情况

BTC 2025年10月3日,切入其余现已记录的 Level C-1 叠加层之方法皆已失效。层级内的人员皆已切出至 Level 1 。现推测为常见的层级本身紊乱所致,请各位流浪者切勿惊慌,该现象预计将会在一周内停止。

Meglogo

M.E.G.——为了人类的明天




5hsx3.svg

Level C-1 的层级报告(已更新)以及层级有关理论

撰写时间:BTC 2025年10月7日

对于 Level C-1 有关现象目前只能用猜想解释。其中我们认为研究员 EnderstrayKPC 的假说最为准确。以下报告皆为 EnderstrayKPC 对于 Level C-1 的理解及其延伸理论,若之后发现与其冲突的现象发生,皆以时间靠后的理论为主。

生存难度:生存難度:

等级等級 不适用

  • {$one}
  • {$two}
  • {$three}

如何使用:

[[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]]

Level C-1 是后室C层群的第一层。在此之前发现的所有所谓“叠加层”均为本层级本身的特性所致。

描述

Level C-1 被猜想为前厅错误映像的一个集合,层级本身兼具多个类前厅的环境。人员切入层级后,会来到这些环境中的其中之一。

我们认为后室本就是前厅的某个画面,或是某个有限的三维空间进行错误的扩展,并进行无限延伸而形成的。前厅之中,有限的三维空间数量为无穷大,因此后室的层级数量也为无穷大。层级本身存在需要能量支持,维持层级存在的能量被称为“层级能”,我们猜测,“层级能”耗尽的层级将会发生紊乱或进行自我毁灭。

在这其中存在一些与外界联通的层级,例如绝大部分已记录档案的层级,这些层级通常存在一个或多个可以稳定出入的方式。也会有一些无法与外界联通的层级,我们无法用常规手段观测到其。

层级与层级之间的联系类似一种网状结构。有时这种联系是单向的,例如单向的切入/切出。有时是双向的,例如层级波动导致的自然现象。这种联系或许是大量相同物品或实体出现在不同层级的原因。

通常,Level C-1 于蓝色通道观测的结果为不同画面叠加在同一位置,但有时也只会观测到“叠加层”其一。我们推测,所谓“叠加层”本身与诸多层级类似,为前厅映像之一。而 Level C-1 内同时存在众多前厅映像,这势必导致其中大量映像无法分配到足够的层级能,进而无法长期存在。

然而其中仍然有许多映像已经长期存在,例如Kanie ja的报告I。这样的映像应是得到了大量的“层级能”以供层级本身的运作。这样能量充足的映像势必拥有更高的稳定性,因此这些映像通常具有若干稳定的出入口,而这些出入口直接与各个层级相连。这使得在较早的研究中,我们误以为这些映像与其余层级为并列关系。实际上,使用“映像”来称呼构成 Level C-1 的各部分比现有名词“叠加层”更为准确。

前厅发生的现象可以影响到后室,例如最近发生的层级失火,前厅发生的火灾传递到后室,使得对应的层级整体发生自燃。同样的,掉落于前厅的望远镜也被传递到了 Level C-1

Level C-1 整体与 Level C-100 之间本身存在一个双向的、稳定的通道,即在 Level C-1内存在通向 Level C-100 的木屋。这一联系被传递到各个映像中,其中“层级能”丰富的映像使环境内这一通道持续存在,而大多“层级能”匮乏的映像则没有使这个通道持续存在,或是表现为我们熟知的“单次切入”(即人员只能出入Level C-100一次,这一现象如今已被David Lester打破)。时至今日,我们仍在寻找一个稳定且安全的通道。

入口与出口

入口

  • 使用 Level C-1 的层级密钥开启 Level 1 的一扇门可能来到本层级。
  • 使用特定的方式可以来到 Level C-1 的映像其一。

出口

  • Level C-1 的不同叠加层皆有不同的切出方式。但可通过进入层级木屋的方式以来到 Level C-100
  • 使用特定的方式可以从 Level C-1 的映像切出。

关于 Level C-1 的相关猜想已报告完毕,

以上。





5hsx3.svg

用户Null0上传的“破门计划”候选映像报告(已修改)

上传时间:BTC 2025年11月3日

该映像原为 David Lester 最初发现,后经 Null0 领导速切玩家团体成员共同进行了一次完整、充足的勘探。速切玩家团体共同认为该映像可以作为“破门计划”中进入 Level C-100 的理想入口,遂上报此文档之M.E.G.数据库。M.E.G.团队立即派遣人员对文件所指映像进行控制,并修改了该文档。

生存难度:生存難度:

等级等級 0

  • {$one}
  • {$two}
  • {$three}

如何使用:

[[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]]

描述

AM

已归档档案的照片,由 David Lester 拍摄。该映像存在反复出入 Level C-100 的通道。

该映像与前厅阿帕拉契山脉极为相似,环境适宜人类生存,强烈的Wi-fi信号使层级可与外界随时联系。映像内不存在孤立效应,但因层级能并不极其丰裕,该映像同时最多容纳的人数存在上限。经测验,这一数字通常在36左右。若映像内人数远超估测的上限,该映像稳定性可能会大大减弱。

同样的,一段连续时间内映像承载过的总人数也有上限。我们估计,一月内映像能承载的总人数约为150人,这导致目前人员无法大量进出该映像。

山地坡度较陡,人员于映像内行走略显吃力。映像内常为阴天,存在昼夜交替,无任何实体。树木极为高大,间距适中,树皮上鲜有细雪覆盖。山地土壤较硬,适宜临时庇护所搭建。

初版文档中的木屋现已被保护,其门锁已被 Level C-100 的层级密钥打开。

基地、前哨和社区

限于映像内人数限制,映像内并无大型基地。不过,M.E.G.在此搭建了一个临时前哨站,有6位专员驻扎于此。每隔两周,有一次对此临时前哨的物资配送。

该前哨的主要任务为控制该映像并保护木屋,为破门计划的发展作下基础。前哨内拥有一些 Level C-100 的层级密钥和一定武器,其中包括一些火器和冷兵器。

入口与出口

入口

  • Level 1 使用 Level C-1 的层级密钥开启一扇门可能来到该映像。
  • 保密,但可确认该映像不止单个入口,且这些入口皆已被M.E.G.控制。

出口

  • 直接进入木屋即可切入 Level C-100
  • 初版报告中所写的失去意识切出现已失效。

通告

“破门计划”已取得重大发展,将大量人员迁入 Level C-100 的工作正在进行。有愿参与试验的流浪者可以立即联系M.E.G.

Meglogo

M.E.G.——为了人类的明天

评分: +44+x


除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License