(竞赛投稿)Level LH-0 “起源-万界集域”
评分: +8+x
: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 }

假如你从错误的地方从现实切出,你只能沐浴在虚空中无边的黑暗之中,倘若你可以睁眼瞧一瞧这片空间,请庆幸你在偶然中发现了这片枢纽。

当我们发现这片领域时……

本组件前端部分(即由难度0终结)为层级生存难度作者YellowISlol 不匹配任何一个现有的用户名所做,除此以外的生存难度,由starry_Milky Waystarry_Milky Way从各层级文档中寻找并写完代码后所得

评分: +8+x

生存难度:生存難度:

等级等級 0

  • 安全
  • 稳定
  • 实体绝迹

如何使用:

[[include :backrooms-wiki-cn:component:sdse
|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 终结 終結
简体中文 繁體中文
Ψ Ψ
E E
1E 1E
2E 2E
3E 3E
4E 4E
5E 5E
变化 變化
A A
א א
积分/不可或缺/整体 積分/不可或缺/整體

该组件支持简繁切换,如下方代码所示:

[[include :backrooms-wiki-cn:component:sdse
|lang=cn/tr
|class=等级
]]


lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

自定义等级

[[include :backrooms-wiki-cn:component:sdse
|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-symbol: var(--sd-border) !important; /* 标志 */

/* 文本 */
--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;
--class-spirit: 185,135,212;
--class-E: 229,223,27;
--class-1E: 245,156,0;
--class-2E: 234,148,0;
--class-3E: 245,89,0;
--class-4E: var(--class-4);
--class-5E: 255,41,0;
--class-ch: 0,0,0;
--class-A: 208,133,185;
--class-j: 205,238,255;
--class-l: 255,255,255;
}
[[/module]]

旧版颜色:

如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]

描述

Level LH-400是后室LH层群的第401层,我们也称它为“起源-万界集域”

对于这个空间,我们所知甚少,甚至是一无所知。这是一个时间几乎静止的空间,目之所及除了一扇扇光门,便只剩无边无际的黑暗。置身其间,仿佛身处宇宙沐浴星光。这里连通着后室的神秘又陌生的层级,以及前厅。每一个从前厅误入后室的人,都可能会先到达这里,然后从某一个光门坠入,只是因为时间流速极其缓慢,人脑并未记住这一过程,因此我们总是无法发现Level LH-400的存在,从而导致我们对它了解的少之又少。

图像的Alt文本描述
这是Level LH-400的第一张照片。

切入到此地的每个人都陷入了被动时间静止支配的无法感知,他们不会记得这里的一切,也不会记得自己是在哪里降生,在哪里离开,我们称作“感知固化”,他们将会被Level LH-400亲手抛弃,它像一颗孤独又陌生的星,不想让他人发现它的存在,也不想自己被他人记载。但在流浪者身处于Level LH-400的时间递增,“感知固化”会逐渐减退,若流浪者在“感知固化”期间不接触光门的出口,则可亲眼看看Level LH-400的景色。

有人猜测,这片空间有可能是后室与前厅相遇时,两个不属于同一维度的空间碰撞所创造出的真空地带。也有人猜测是创造后室的二十四柱,为了方便调度从前厅进入后室的人而创造出的最初的枢纽。但具体这片空间因何存在,或者到底是否存在,仍无确切的信息。一切关于此层级的了解的展开,都来源于某位流浪者在后室探索中发现并带回的一本日记

在此附上那本日记的内容

(由于这本日记的字迹特别潦草,于是在重译过后选择不以原稿呈现)

我是一个普普通通的上班族,过着朝九晚五的生活。但不知为何,眨眼之间,我便出现在了这里。

我不知道这是哪里,也感受不到任何东西,目之所及是一片黑暗,我似乎感觉我在不断下坠,又好像漂浮在半空。我以为这是梦,因为太不真实。我极力的转动身体,终于发现在远处,有一束光,就好似在一片漆黑的夜空中,闪耀着一颗最亮的星。我控制着身体向那里飘去,起初并不容易,因为我难以控制着自己的身体,四肢找不到任何着力点。在经历不断尝试之后,我终于找到了控制的方法。我发现,那并不是一个光点,而是数不清的散发着光的立方体。那一个个立方体,就像是一面面墙,挡住我的去路。我尝试站立在上面,我成功了,我有了一个落脚点,脚踏实地的感觉减轻了一分我的恐惧。我几乎可以肯定,我进入了一个我无法理解的地方,但这里是哪,为什么偏偏选中我进入,我对此仍是一无所知。这里很像是宇宙,因为我能自由漂浮在这里。但是我没有因没有空气而憋死,这或许也是不幸中的万幸。我全身上下只有一根笔,一个无法开机的手机,以及随身携带的记事本。没有食物,我认为我撑不了多久。

我虽然失去了对时间的感知,但在经历了很长时间之后,我并没有感觉到饿,而且我惊恐的发现,我无法感受到我的心跳。我不知道现在的我是否只是一个亡灵,这里难道就是死后的世界吗?那我的妻女呢,她们又该怎么办。我陷入了绝望与自责之中。

转机出现了,不知道过了多长时间,我终于见到了另一个人。他和我一样,也漂浮在这个空间中,只是我无法叫醒他。我尝试将他拉到一个平台上,可是当他身体接触到平台的一瞬间,就被吸入进去,消失的无影无踪。直到这时我才发现,原来对于我来说落脚的平台,对其他人来说可能是通往其他地区的门。而我,只是一个误入此地,并且被所有空间拒绝的倒霉蛋。这个人的到来给了我希望,我觉得一定有一扇门是属于我,并且可以接纳我的。为了我的妻女,我一定要逃出这个鬼地方。

在接下来的时间中,我游荡在光门之间,试图找到能够接纳我的一扇门,祝我脱离此地。我也遇到了许多和我一样进入此地的人,可他们无一例外都被光门接纳。我也尝试拉住他们的手一起穿过,但全都失败了。只要一接触到我,光门立马变得像石头一样坚硬,将我挡在外面。

我早已失去了对时间的概念,在很长一段时间里,我所做的便是将游荡在此空间,将没有进入门的人带入到某一扇门中,也试图将求救信放在他们身上,试图向外界求援。我甚至搞起了恶趣味,将找到的人按顺序投入到不同的门中,这也成了我消磨时间的唯一乐趣。我不知道还要在这里待多久,而且我感觉自己身体也出现了一些异样。

我终于发现了这个异样是什么,我开始感觉到饥饿。这种感觉产生的很缓慢,可是却一点点的在加深。我开始从其他人身上搜寻食物吃,来缓解我的饥饿。我不能死,她们还在等着我回去。


……
(日记被撕掉了几页)
……

为什么,为什么,已经过去多久了,我不知道,没有门接纳我 ,我被这个世界抛弃了吗,我还想…


(后面的一半被撕掉了)
……
(中间页全部被撕掉)

为什么上天要如此惩罚我,我只是想好好的过日子,好好的陪我的家人孩子,怎么会这样…

今天,我在一个人的身上拿到了一把刀,或许我应该用它结束这一切,我不想再承受这种痛苦了。

没有意义了,没有任何出路,或许死掉对于我来说,是一种解脱吧。


……
(日记被撕到只剩最后一页)

无论你们是谁,当你们看到这个日记的时候,我已经不在这世间了。我有一个女儿,叫,我已经记不清住址了,她是一个美丽,可爱的女孩。如果有人能找到这本日记,希望你能帮我好好照顾她。


以上便是日记的全部内容。

我们推测该日记主人遭遇了一种从未被记载过的现象,该现象第一次作用在日记主人的身上,使得他的感知停留在Level LH-400,躯体自主能力却放在了类似Level 1等可以自主移动的普通层级,该现象第一次发生过后便频繁在现象记录中登场,因而我们将它归类为LH层群现象之一,以下是我们对该现象的了解,我们称它为:“多域叠影”。

“多域叠影”现象


现象影响Lv.3


  • 持续时间长
  • 发生频率不确定性
  • 影响难消除

属性突变














该现象作用在特定流浪者身上,表现为流浪者的感知停留在本层级内,而自主行动能力剥离出本层级,被其他层级所接纳,因该现象的表现形式,若在普通层级内发生,则不会有明显现象,因而在Level LH-400表现显著,该现象持续时间较长,目前并没有明显干预办法,它将伴随着对流浪者的精神影响,在感知停留在本层级,例如保持静止时,可能会逐步消退这种感知,例如感知停留在寒冷的层级内部,该现象作用在特定流浪者身上,寒冷感会慢慢消退,直到精神影响导致流浪者死亡,自杀,进入悲尸循环Wretches.jpg“悲尸循环”会持续几周至几个月,包括三个阶段,如下:
第一阶段:最初,症状表现为有类似毒藤疹的瘙痒和刺激感;随着时间的推移,微妙的心理症状将开始出现,最终将导致反复无常的攻击性行为和人格特征的完全改变。这些影响可以通过正常的身体维持和前文所示的所有可能的治疗方法来消除。
第二阶段:在悲尸循环的第二阶段,皮肤和肌肉组织将开始以非自然的方式溶解,通常会出现孔洞和脓疱。外部皮肤将开始变红和剥落,眼睛充血并伴有刺激感,并开始脱发。这一阶段的幸存者常称这一阶段的瘙痒是“无法忍受的”,甚至描述说为了阻止瘙痒而抓掉了几层皮肤。言语仍可以理解,但只包括对水、食物和帮助的请求。杏仁水和现实清新剂似乎是悲尸循环在此阶段唯一可能的治疗方法。
第三阶段:在此阶段,所有恢复正常的希望都已丧失。指甲和牙齿从它们的自然位置脱落,且经常以不自然的数量和大小在其他地方重新生长。眼睑、嘴唇和软骨溶解,迫使其眼睛不断睁开,在眼眶中疯狂滚动。在这个阶段,原来的受害者的意识是否还在不得而知。处于第三阶段的悲尸不断地从嘴里和其他孔洞中渗出一种棕色的淤泥状物质。这种液体目前 未命名,被认为是无害的 参见 M.E.G. 15号实体事故报告 了解更多信息。
方可停止。

Level LH-400被公开前,帮助过流浪者了解Level LH-400的日记主人遭遇了此现象,导致它可在Level LH-400自由行动,感知却被Level LH-400时间静止所支配,不会感受到例如心跳,呼吸,内脏,饥饿和渴觉等的存在,随着日记主人在Level LH-400中的时间变长,“感知固化”开始消退,并且在经历该现象的精神影响下,日记主人选择自刎导致悲剧。

基地,前哨及社区

由于Level LH-400特殊的性质,没有可站立和生存必备的地面和引力,该层级无法建立基地,前哨和社区。

入口

若在前厅试图切入废弃楼房的门,可能会带你来到Level LH-400。

Level LH-2300152c8280bba80a.jpg它的外观是一张泛黄,又陈旧腐朽的纸张,上方静静的躺着一根水性签字笔,流浪者在纸上写字可以到达不同的层级,或是得到相应的物品,如同神笔马良一般,但却不能够得到有些物品,或到达有些特定的层级,在经研究调查发现,在纸张上写下的63个层级中,有20个层级不能够到达,而在纸张上写下的109个小型物品中,有高达72个不能被得到。床头的纸上写下“万界”二字可能会带你来到Level 400

Level LH-20Image_1771570515519_481.jpgLevel LH-20是一个无限延伸的地下停车场,该层级的环境布局与前厅的地下停车场高度相似。
Level LH-20的地面由深灰色沥青混凝土构成,地面平整而又并非完全洁净,可见多处不规则的深色污渍与磨损痕迹,部分区域存在细微的裂纹与凹陷。大量白色油漆线把地面分割为规整的矩形停车位,线条宽度约为5厘米,间距保持在2.4米至 2.6米之间,符合标准停车场的车位设计规范。每个车位的尺寸约为2.5米 × 5.3米。
该层级中分布着大量承重柱,这些承重柱的方形截面边长约为0.8米,高为3.2米。都有统一的三段式设计,底部为高0.3米的深灰色底座,中部为高1.2米的亮橙色涂装,上部则为白色。在橙色涂装的中部有着阿拉伯数字,如“737”,“738”,“739”等。字体为无衬线体,高25厘米。经观察,该种编号似乎在50米以外都能被直接肉眼看到,性质尚未查明。
墙体同样采用三段式涂装,与承重柱保持一致:底部为深灰色底座,中部有着亮橙色涂装,上部为白色墙面。橙色涂装带上印有与承重柱编号风格一致的车位编号,如“708”,“709”,“710”等,间距为4.5米,与地面车位线对应。墙面整体较为平整,无明显的破碎或涂鸦痕迹,但在部分区域可见轻微的水渍与霉斑,尤其在靠近墙角的位置更为明显。墙面上分布着窗户,窗户尺寸约1.2 米×0.6 米,窗框为白色,玻璃呈半透明白色状,通过玻璃无法看见外部景象。虽未有报告说明这些窗户为实体窗户,但还是建议流浪者尽量避免靠近。
尝试切出承重柱,可能会带你来到Level LH-400。

……

出口

各个光门皆是生路

……


……


……


……


……

看到那些门了吗?里面有不同的人生,有不同的选择,进去吧,看看万千层级


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