Level AC-26
: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

  • 安全
  • 长期聚居地
  • 精神增益

如何使用:

[[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 AC-26是后室AC层群的第27层,其因宜居性与独有的梦幻性景观而名声远扬。

描述


Level AC-26,由一面积广袤而清澈的浅碧色水域及其上分布的群屿组成,各岛屿具体面积于23km²-1.3km²上下,其中多数分布有山坡、瀑布、丘陵等地形,地表覆盖着密集程度不定的植物群;各岛屿之间相隔约1.4公里,其之间由多条窄小的木板桥相连。该层级的气温长期保持于25摄氏度,空气清新程度与前厅海岸边日出时段所呈现出的感受相仿,并时刻弥漫着多种花圃的香气,其气味多类似于流浪者于前厅时所喜爱的品种;故M.E.G.推测该层级可知晓流浪者的心理及爱好情况。

由于此处面积过于广大,流浪者在切入该层级时往往会置身于不同的岛屿之上,且指南针在该层级中所指向的方位将完全混乱,且岛屿外围并不存在稳定的WIFI信号;故在该层级内汇集人员的行为极为艰难。但M.E.G.仍因此层级的宜居性及特殊性而在Level AC-26的中心处大型岛屿建立了长期据点,并将目前所勘探的层级部分划分为多个区块,以方便对于岛屿的定位,用以帮助有意图长期居住的流浪者。

114514

艺术家绘制的一张Level AC-26内部环境具象

Level AC-26内的岛屿均布置有各式建筑,其房屋种类包括独栋别墅,居民楼,大厦等,其内具有来源未知的水力、电力供应与WIFI信号与完善的家电设施;其建筑风格从古至今皆有涉及,但相隔岛屿的建筑可能呈现出迥然不同的风格;但它们均围绕多条贯穿岛屿并与桥梁连接的木板路排列。值得注意的是,若流浪者越发向层级边缘勘探,则会发现其岛屿上所呈现的建筑风格将逐渐变为一致的现代风,且其内的WIFI信号也将越发强烈。近期一网名为“yanhuaxiu”的流浪者声称Level AC-26的水域并非无限延伸,因其在勘探到一定距离1后所记录的图像中表明其边界水域中不存在任何岛屿与建筑,水面波动幅度相较层级内部明显更大,而对岸则呈现出一现代化城市景象。尽管该流浪者提供了真实的录像与音频记录,但该言论仍不具有可信性。

Image_1751130691423.jpg

一张被声称为“层级边界”的图片。

该层级内的水域表面于大多情况下呈现出类似镜面的外观及反光效果,平均深度约3~5米,其温度随区域的光照程度及层级的地热资源而不断变化。流浪者往往可观测得水域内栖息有大量不同种类的水生动物及藻类植物,均可安全食用,并具有浓厚的杏仁香气;尚未得知这些动植物何以长期存活于杏仁水中,推断其均已适应该层级水域特有的环境。对该水域的进一步研究表明任何有害物质均无法成功污染水源,且污染者均会于2-4小时内失踪,尚未知其具体去向。

Level AC-26显著的特点之一即植被种类的丰富程度,来自于世界各处的植物均于此处被探明,其内甚至包含一些濒危品种与早已在前厅灭绝的珍稀植物,且均可无视气候条件保持一种极佳的生长状态,具体营养来源未知。已知桃花是层级中分布最为广泛的植物,其并不会呈现出凋谢或枯萎的迹象,散发出的气味相比前厅中的同种类植物将更为浓烈,且并不会让对花粉过敏的流浪者出现过敏症状,推测这些花粉内含有某种未知成分;目前所记录在案的桃花树最大年龄约300岁。该层级内的花粉对流浪者的精神状态具有一定益处,但也相应会造成一定量的威胁,具体表现为:

  • 感到一种幸福、愉悦感。
  • 在某种欲望方面得到满足,如食欲,购买欲等。
  • 会逐渐淡忘不愉快的事情,并最终释然。
  • 若长期2受到该种类花粉影响,则将失去对于生理需求的感知能力,并无法察觉到各种疼痛与不良情绪,同时视觉、听力等感官将被弱化;这极为危险,所幸仅需100-150ml的杏仁水即可完全摆脱该精神威胁的影响。
  • 过久(约4-5天)的吸入花粉而不引用杏仁水则将对其产生依赖,同样可使用杏仁水摆脱影响。

Level AC-26内天空永呈日暮多云形态,尚未观测到任何形式的天气变化;其可能随着流浪者的想象而随之出现多种天气及天空形态,但这并不会对于周边景物与流浪者造成任何影响,且仅有进行想象的流浪者可感受到其变化,因而被认定为是层级对于流浪者在感官上所施加的精神影响。该层级内的云层形式多变,其将于流浪者直视时根据其所脑海中想的内容而改变自身外观;若流浪者脑海中所想的事物为对其精神不具备正面增益,则云层将持续保持同一形态,直至离开其视野后再次进行变化。有驻扎与中心处较远处的流浪者报告称在部分时间段内可见少量烟花出现于层级上空,同时察觉到一种来源未知的烟花爆燃声,推测该层级很可能存在某种未知实体或特殊性质,但具体情况仍不明。

流浪者偶尔可以在岛屿边沿寻找到一些木制船只,其仅可利用船桨来在水面上移动。这些船只的外观均表现为崭新的样貌,且任何已知的工具均无法于船只表面留下印记;当流浪者尝试驾驶船只时,其会以一种未知的方式得知驾驶船只的经验与技术,并于流浪者离开船只后被遗忘。

Level AC-26的多数岛屿周围始终被一层薄雾所弥漫,这将使得其周边景物在视野中变得朦胧;同时由于薄雾自身带有的精神影响,身处于其中的流浪者会出现一种身处云端的错觉,并出现一种清凉感与浮空感,据多数流浪者报告这种迷雾会减轻流浪者于心理上的伤痛(如流浪者过去的负面回忆与生活上的重大遗憾等)并向流浪者灌输正面的,积极向上的情感;若长时间处于这种雾气中则极有可能将整个层级及自己的经历误认为梦境,并会试图向他人分享自身感受;而这一效应在他们离开层级后仍然奏效。

据多位流浪者所述,该层级具有自我意识。若该当流浪者因近期发生的某事件而感到不适或心情不畅时,其便会在流浪者的脑海中发出一种极为轻柔的的语言来安抚流浪者;受其影响的流浪者其心情均会在一段时间后归于平静。若流浪者近期受到重大打击,则一陌生的实体将出现于其梦境当中,具体外观尚不明确,因在不同的流浪者看来其外观往往不同,但均将其描述为梦幻的、具有神力的;已知其会利用言语及肢体交互的行为来安抚流浪者,并在6-7小时后离去,届时流浪者将从梦中惊醒。在流浪者与该实体接触后,其对于各事件的心态将发生极大的改观;尚未得知该影响是否为永久性;这位实体的真实身份也不得而知,目前流浪者常其认作层级意识的化身,但有待证实。

房车

“房车”是对于Level AC-26内出现的一类车辆的总称,其通常出现于岛屿的较内部。这些车辆的外观通常表现为一种崭新的大型房车,且具有完善的家具配套与太阳能供电及来源未知的供水。但其本质上完全无法使用,任何强行启动这些车辆的行为都未能成功。这些车内通常整齐的摆放着各种物资,并在拿取后会在一段时间内在原处重新出现,同时房车内部的WIFI信号相对而言更为强烈;已有多位流浪者尝试将这些车辆作自己的长期居住处。


实体情况


受到11效应的无面灵通常会成群的在这一层级内游荡,其通常具有类似于人类的外观及穿着,但不存在面部特征。这些无面灵们对于流浪者友善,但在一般情况下并不会主动与流浪者进行言语交谈,除非流浪者对这些实体做出肢体交互行为才会做出举止。在少见的情况下,这些无面灵可能聚集成一团,其周边可见各式野营用具,呈现出类似于外出野餐的形式;但在这些无面灵的旁边通常并不存在任何食品,故这一举措的原因未知。


基地,社区和前哨站

M.E.G.花海基地

  • 约450人,友善,开放贸易。
  • 观察并探索整个层级的生态系统。

出口和入口


入口

  • 平躺于Level AC-6内的花丛中会使你到达本层级,但由于Level AC-6面积过广,故通过这一入口的切入概率极小。
  • Level AC-17Level AC-3内连续吃下多于5片花的花瓣
  • Level AC-2内找到一根带有花的植物枝干。

出口


附录


自卡入后室以来,我已将各个层级内的那些混乱无章视作平常,这绝非我个人所愿,因我个人意识并不认为应当将这些本不该出现的东西刻入自身观念中,无论何时。可为了在这片混乱不堪的地狱之中得以生存,我只能习以为常,麻醉、欺骗自己的意识,竭力避免自己成天活在浑浑噩噩当中。

自从来到这个鬼层群,我便一直听闻这里有着什么极度荒缪的“lost”充斥着异常效应的数学展览馆充斥奇怪气体的城市等等危险层级;但也有些许可供我们片刻喘息之处,如那座17号城市如梦似幻等等,可那些层级大多要经历一段无比困难、甚至付出生命代价的旅程后才有可能抵达,而我的探索欲早已泯灭于那片绝望的汪洋与无比炎热的草原当中;我只想在这座孤岛之城上安度一生。我最为感兴趣的是传言中的那篇花海与群岛,因其具有的宁静与无与伦比的景色,更何况我喜欢花…可那段传言所描述的层级似乎早已不复存在……即便如此,我还是摆脱不了对那里的向往,即使于梦境之中也常幻想自身漫游于那处群岛间。

我记不得我是怎样又一次切入那篇绝望汪洋的了,只记得自己打开了一扇刻着海洋图标的气闸门,紧接而来的便是一阵无法抵御的吸力;随后我便独自一人出现在那条古怪的小船之上了。我至今也想不通自己是如何在那片曾杀害无数人的血红海啸手中侥幸逃过一劫的,只记得整艘船只彻底倾入水中时的心里的那股绝望与无力感。


不知道过了多久,我在一处陌生的地方醒来了,手里握着一根带着花的枝条……睁开双眼,几缕日光挤入双眼,一幅全然未曾见过的繁花群岛景观呈现于眼前。这莫非是那片被认定为不复存在的群岛吗?

心中的喜悦难以言表,因我终于遇见了自己梦中的天堂。

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