本站仅供阅览。编辑请前往源站点
Level IF-206 - “空虚之宙”
: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 }

重大发现?

User ID:error-com
发布时间:Jul 6 2025 08:14(IP:Level IF-206)


我超,这里有光???
eclipse-1492818_1280.webp

Re:重大发现

User ID:JgPz E-100
发布时间:Jul 6 2025 08:25(IP:Level IF-199)


啊???
这亮度tm是核爆罢 哥们你没事吧?
@M.E.G. IF深空探索部门 在吗?我记得你们也有人在里面

M.E.G. IF深空探索部门官方帖

User ID:M.E.G. IF深空探索部门 官方账号
发布时间:Jul 6 2025 09:11(IP:已加密)


情况属实。我们已派遣更多人员进入Level IF-1进行调查。

Re:重大发现

User ID:error-com
发布时间:Jul 6 2025 09:22(IP:Level IF-206)


没事。











M.E.G. IF深空探索部门官方公告


近日,我司接到Level IF-206内部流浪者的多个报告,证实Level IF-206内部出现了天然光源。根据我司特工的实地观测,该光源实为一颗突然出现在层级中心的发光星体。鉴于其活跃性,目前暂将其编目为Entity IF- (已编辑)

目前我司正在研究Level IF-206的切出方法。
TIPS:关于Entity IF-(已编辑)的征名活动已开始,详情可见我司的官方网站。


M.E.G. IF深空探索部门
2025年7月9日










好康的

User ID:error-com
发布时间:Jul 11 2025 07:14(IP:Level IF-206)


太空开车吗?有点意思
IMG_20250712_215727.png

Re:好康的

User ID:JgPz E-100
发布时间:Jul 11 2025 07:15(IP:Level IF-199)


Re:好康的

User ID:BanAllAD
发布时间:Jul 11 2025 07:17(IP:Level IF-206)


这不是你们的私人聊天室啊喂😡
昨天只顾着拍照忘了发回贴了

Re:好康的

User ID:Paper scraps
发布时间:Jul 11 2025 07:18(IP:Level -206)


这哪儿啊

Re:瞎聊帖

User ID:error-com
发布时间:Jul 11 2025 07:20(IP:Level IF-206)


就在那个Entity IF- (已编辑)边上。









一名Level IF-1内M.E.G.人员的日志

2025/7/12,Level IF-206
Level IF-206发生巨变之后,我们又接到上级的任务,去寻找聊天室内一名用户照片内的公路。根据这张照片,它应该是在那颗最近被命名为“埃忒尔”1的星体附近——很明显的地标,这意味着我们的任务不会太艰难。不过一想到我们要在太空中疯狂扑腾以快速移动的姿态我就想笑。

我们的位置距离它并不算远,不久我们就到了。这里我从未见过——鉴于它直接穿过了这颗恒星,这应该是Entity IF-(已编辑)的造物。奇异的是,它居然拥有引力——我们是从上方降落的,本以为我们碰到地面后会弹起来,结果我们整个小队的人都摔了下去。经过测量,它与前厅的重力竟然大差不差,在9.5N/kg上下。所幸它的引力范围只有5米上下,很容易就可以挣脱。

在道路四周有一些悬浮的房屋,我们进去看了看,有一些物资。这些屋子以后可能作为潜在的层级出口,因为由于“埃忒尔”的活动,这里每时每刻都在发生变化。并且似乎我们离它越近,温度就越高。希望它不会逐渐升高到致死水平。再勘察了一番之后我们便回去了。

这条路到底有多长?我也不知道,至少它望不到尾——头在“埃忒尔”的里面。










M.E.G. IF深空探索部门官方公告


近日,我司根据流浪者和行动小队成员的报告,证实Level IF-206内部新出现了一条横贯全层、穿过Entity IF- (已编辑)的车行公路。推测其为Entity IF- (已编辑)出现的附加产物。该星体最近活动较为剧烈,请流浪者在其半径1000km以外活动避免被该星体伤害。

部分流浪者报告称,他们通过部分漂浮门进入了其他的层级,且这些特定的漂浮门具有特定的样式,因此极易辨别。目前已经将部分门样式进行编目入库的处理,流浪者可前往我司官网查看。

雷达扫描证明在层级内可用,最大半径为500千米。实时雷达地图已在官网公布。
TIPS:关于Entity IF-(已编辑)的征名活动已结束,其官方名称现为“埃忒尔”。


M.E.G. IF深空探索部门
2025年7月12日










脱离苦海?

User ID:error-com
发布时间:Jul 13 2025 11:44(IP:Level IF-206)


感谢M.E.G.!!!
看看我找到了什么
IMG_20250712_215715.png

Re:脱离苦海?

User ID:JgPz E-100
发布时间:Jul 16 2025 11:45(IP:Level IF-199)


一个漂浮门。不过看样子,它貌似是在M.E.G. IF深空探索部门的名单上的🤔
最好检查一下有没有什么异样

Re:脱离苦海?

User ID:BanAllAD
发布时间:Jul 16 2025 11:46(IP:Level IF-206)


哥们儿,你在哪里,我去找你

Re:脱离苦海?

User ID:error-com
发布时间:Jul 16 2025 11:48(IP:Level IF-206)


距离原点1212km处 理论上你在雷达上看得到我的 我们的位置和名字全在上面

Re:脱离苦海?

User ID:Paper scraps
发布时间:Jul 16 2025 11:50(IP:LeveIF-206)


我在1200 带我一个啊喂

Re:脱离苦海?

User ID:error-com
发布时间:Jul 16 2025 13:14(IP:Level IF-206)


我们仨都在门边上了,今天我们就要太空三结义离开这个放音乐的死层级了
祝我们好运!
如果我们还活着,我们会发新帖的
stars-1655504_960_720.jpg
最后看一眼。真美。

Re:脱离苦海?

User ID:JgPz E-100
发布时间:Jul 16 2025 13:15(IP:Level IF-199)


兄弟保重

职员帖

User ID:qwertyuiop1000 does not match any existing user name 聊天室管理员
发布时间:Jul 16 2025 13:16(IP:Level IF-199)


本讨论帖作1小时暂时封闭处理。











(No subject)

User ID:JgPz E-100
发布时间:Jul 16 2025 20:26IP:Level IF-199)


error-com那一帮人怎么现在还没回信,总不能似了吧
提前默哀(rip)

Re:(No subject)

User ID:error-com
发布时间:Jul 16 2025 20:34(IP:Level IF-198)


我们还活着啊喂

Re:(No subject)

User ID:JgPz E-100
发布时间:Jul 16 2025 20:35(IP:Level IF-199)


可喜可贺,同时,对不起
不在线上了,我亲自去找你









生存难度:生存難度:

等级等級 群星

  • 万籁星穹
  • 虚无宇宙
  • 存世之星

Level IF-206是后室IF层群的第206层。

描述

Level IF-206表现为一处巨大的黑色空间,饰以点点万千的繁星。其内部不具有任何形式的空气,但流浪者可以自如的在层级内部呼吸,且无需配备任何辅助设备。流浪者可以使用类似于游泳的姿势在层级内运动。使用任何手持光源在50米开外的距离照射均无效,但流浪者可以通过M.E.G.在此层设置的实时雷达地图察看方圆数百里内的人员与物体。

Level 0的孤立效应被证实并不存在于该层级,因已经有大量流浪者在层级内互相接触的报告。

由于层级温度高达惊人的22K2,任何液体温度计携带入本层时均会瞬间爆炸,因此其仅能使用电子温度计测明。但流浪者在层级内部行动时,不会感受到任何寒意。

stars-1655504_960_720.jpg

Level IF-206的一张照片

有时,流浪者会在空中遇到一些漂浮门,它们大小样式不一。大部分漂浮门通往层级中的另一地点,少数特殊样式的门通往其他层级,它们将会在下文的“出口”一栏提及。由于遇见它们的概率较小,因此建议遇到特殊样式的漂浮门时将其死死抱住或是立马进入其中。

Wi-Fi信号良好且广布整个层级,这使得流浪者上网与传递层级消息至外界成为可能。目前,M.E.G. IF深空探索部门已建立了一个Level IF-206专属聊天室。后室协调时2025年6月,该聊天室面向所有用户开放。

特殊区域:公路

IMG_20250712_215727.png
公路是层级内唯一存在重力的区域,其横贯整个层级,长度不明,经过Entity IF-(已编辑)附近3,坐标系平稳的维持在(x,y,0)4。道路宽10米,厚5米,引力范围为5-30米。在道路四周的悬浮房屋内会有物资刷新。

特殊事件集合

“宇宙歌声”事件

在不定时间内,层级内会播放歌曲,它们大部分与梦核主题相关。它们的音量通常较小,但足以让流浪者们清晰的听见。有部分报告称层级内部出现了以极大的音量播放音乐的情况。以下将出现过的歌曲进行列表展示。
曲目 被记录出现的频次
《It's just a burning memory》The Caretaker 55
《Libet's Delay》The Caretaker 48
《Hi》TEMPOREX 23
《Are You Lost》Park Bird 23
《Nice Boy》TEMPOREX 22
《Take A Chance》Myuu 21
《Among Us》Myuu 21
《Six Forty Seven》Instupendo 20
《Comfort Chain》Instupendo 19
《Never Gonna Give You Up》Rick Astley 19
《Erika》Major Han Freiss 1
《British Grenadiers,Fife and Drums》 1
《前苏联国歌-牢不可破的联盟》 1

“大爆炸”事件

该事件发生于后室协调时2025年7月6日。层级内部突然爆出极大的足以使人短暂失明的强光,随后Entity IF-(已编辑)进入层级,且层级背景变为星辰。Level IF-206自此有了天然光源。

eclipse-1492818_1280.webp

“大爆炸事件”发生时的摄影。

实体

Entity IF-(已编辑)“埃忒尔”(Αἰθήρ)

该星体于“大爆炸事件”时进入层级,并凭借剧烈的活动改变了层级的环境。该实体已拥有专门的介绍页面,本页不再赘述。

基地、前哨与社区

M.E.G. IF深空探索部门前哨站

建立在公路区域的一座较大的悬浮房屋内部,坐标大约在(1214,53,0)。房屋外部已树立起明显的标识。

入口和出口

入口

  • Level 78切出有概率进入该层级。
  • Level IF-99触碰一艘宇宙飞船的模型会被传送至此。

出口

目前唯一离开该层级的方式是进入特殊样式的漂浮门。

  • 进入一扇镓材质的门会进入Level IF-3
  • 进入一扇114*514cm大小的花岗岩材质门会来到Level IF-11
  • 进入一扇古典风格的青铜门会来到Level IF-198
评分: +7+x

生存难度:生存難度:

等级等級 pending

  • {$one}
  • 稳定性待定
  • {$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 IF-206是后室IF层群的第206层。

描述

Level IF-206表现为一个极为巨大的黑色空间,内部不存在任何自然光源,且疑似具类似于Level 6对光线的影响,这导致流浪者身处其中时会产生极大的恐惧、迷失感和不适感。一般时,层级内极为寂静,这亦加剧了上述的效果。

Level 0内的孤立效应在这里未被证实确定存在。诚然,该层级一般情况下寂静的特性使得流浪者之间可以互相喊话并听见对方的回应,但该空间具有不明原因的制造回声能力,使得流浪者极难判断是否有另一生命体位于附近。

层级内不存在任何的氧气,但流浪者可以使用一种未知的方式进行安全的呼吸。流浪者可以使用类似于游泳的姿势,在层级内部来回移动。

有时,流浪者会迎头撞上一些漂浮的门。它们大小样式均不定,但均通往Level IF-1的另一区域5

层级内部具有稳定的Wi-Fi,使得流浪者位于其中时可以上网,并将层级内的信息传递至外界。目前,在M.E.G. IF深空探索部门的帮助下,建立了一个Level IF-206的专属聊天室

事件

在不定时间内,层级内会播放歌曲,它们大部分与梦核主题相关。它们的音量通常较小,但足以让流浪者们清晰的听见。有部分报告称层级内部出现了以极大的音量播放音乐的情况。以下将出现过的歌曲进行列表展示。6

曲目 被记录出现的频次
《It's just a burning memory》The Caretaker 16
《Libet's Delay》The Caretaker 14
《Hi》TEMPOREX 13
《Are You Lost》Park Bird 13
《Nice Boy》TEMPOREX 12
《Take A Chance》Myuu 11
《Among Us》Myuu 11
《Six Forty Seven》Instupendo 10
《Comfort Chain》Instupendo 9
《Never Gonna Give You Up》Rick Astley 9
《Erika》Major Han Freiss 1
《British Grenadiers,Fife and Drums》 1

基地、前哨与社区

由于层级属性,目前暂无任何的基地、前哨或社区被成功建立。

入口与出口

入口
  • 触碰Level IF-99中的一艘宇宙飞船模型会被传送至此。
  • Level 78尝试切出有概率来到该层级。
出口
  • 暂未发现稳定性强且可用的出口。

附录

关于Level IF-206及其探索的归档记录(分类:文档集)

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