Level YT-100

: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 }

我,真的?逃出了那个无尽的监狱了吗。

我席地而坐,望着天空,不禁感叹:我之前过的是什么日子?我开始回忆起来:当初,我在家中最初踏入那个监狱之中就被牢牢的关在上锁牢房之中,毫无水资源与食物可言,五天后,本以为我将饿死,但是,我竟踏入了这般美好之地。

我在那个监狱曾将希望寄托于忽隐忽现的马桶,我曾在牢房内的手机上听闻切出一词之谈,我欣喜若狂,但命运给我来了一头重击,我进行切出后只是在不同的牢房间传送而已:一样的上锁房间,一样的没有物资。就这样,我的最后一点希望也灭了。

我曾看见我的狱友在一张纸上涂涂画画,等到他走到一边,我走进了张纸,拿起看,明面看不出什么,但我把它放在那个监狱里唯一的光源下后我看见了一串串字:这个地方,永不可逃。随后,我的最后一点信念也随之破裂。

整件事荒诞至极,电视台预测可能在未来的50年发生世界末日,随后我的朋友说要送我去避难,推了我一把,然后我就到那个监狱了,多么可笑!因为一个虚假的猜测我就为此差点付出了性命!

回忆结束,我竟无意识地哭了:现在,回家不可能了,我看了看天空,我现在觉得能见到天空就是最大的幸运了。

这地方和那个监狱完全相反,是个开阔的花海,看似宜居,但愿如此,祝我好运。

Level YT-100 - “欲花海”

生存难度:生存難度:

等级等級 2

  • 环境探索完毕
  • 不安全但稳定
  • {$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: 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 YT-100 请注意,你目前已知的通往此层级的入口便是通过极其危险的Level YT-99所进入,进入此层后请立即阅读以下的行为准则,违反者自负结果。

行为准则

应当

  • 立即缓解紧张、不安的情绪。
  • 对花粉过敏的流浪者立即切出Level YT-100。
  • 寻找物资。
  • 寻找最近的前哨站1并寻求帮助。

不应

  • 长时间注视天空。2
  • 自杀。
  • 恐慌与焦虑。

流浪者阅读完毕行为准则后应立即确认你是身处之地确实为Level YT-100,确认完毕后方可阅读下文。

本文会详细说明Level YT-100的资料,当你对此层级有新报告应对最近的M.E.G.前哨站报告。

若你是从现实世界进入Level YT-99后再次切入本层级且对后室没有充分的了解,请阅读此篇文章获得有关后室的基本资料。

想必你已经通过一些笔记/手机了解到了有关切出的信息,切出后你将位于Level YT-100Level YT-100被这片异次元土地3的人们称为“欲花海”,其是后室YT层群的第2层。

当然,你有一定可能遇见非人类生物,在此层级中全部实体均为无害实体,但若你真的遇到了敌对实体,请查询此列表

在适当的时候可以寻找以下团体寻求帮助:

由于可供寻求帮助的团体过多,此处不再赘述。

我究竟有多久没看过其他人了呢?

5天?上次见到狱友的时候?我不知道。我现在只感觉到一阵花香,我感觉这些花都是人种的,这个地方也是人造的,但它却透露着绝非人间气息的感觉。

我开始觉得这个地方开始乱我心智了。

环境那么开阔,空气那么充足,阳光的明媚,但为何花海中透露着一股浓郁的腐臭味?刚刚感觉到的花香一瞬间被冲灭,我现在只想闻到花香,只想。

描述

iamge-huahai

欲花海 的典型外观。

欲花海 整体表现为一片面积大约为550平方千米的花海,内部主要由雏菊以及玫瑰所构成,请注意,对花粉过敏的流浪者应当立即切出此层。

此层内部大多数区域Wi-Fi信号极其微弱;此层内部不存在昼夜交替时间永久停留在上午9:30,温度大约在27~32摄氏度。强烈不建议流浪者在此层内部长时间注视天空,否则将导致永久且不可逆的视网膜脱落,双耳失聪。

欲花海 的深处与入口处有着一定的差异,具体差异可见来查看。

欲花海 的环境时常发生变化,在变化的时候环境将不知不觉4地发生变化。其发生变化后,环境将完全重组,随后层级内部将会出现大量由氢气,氧气,氮气以及未知气体构成的气体。

已经在这片花海过了将近两三天了,我还是没有发现救命稻草般的水,我已经极度脱水了,刚进入这所谓的“后室”时带的水早已消耗殆尽,我也没有在这片土地上发现任何水,或许,我已经死了。

弥留之际,恍惚间,我看到一瓶水出现在我面前,我忙不迭地拿起来,喝下一口,一股浓浓的香蕉味在嘴中炸裂开来,过了越久,这股香蕉味逐渐变得苦涩起来,虽说不大好喝,但是至少让我活过这段时间了。

我看向这瓶水的标签,它的标签上写着四个大字:“幸运豆奶”!呵,我能活到现在也是一种幸运了。

房屋

2.00

有关房屋的特写照片。

欲花海的花海中时常能够找到一些房屋,其通常是用木材、砖块所建成,房屋内部有着类似于Level YT-46的景象,房屋内部可找到一定数量的物资,目前建议流浪者搜刮完物资后离开房屋。

房屋内部的甲醛指数严重超标,达到了4.5mg/m3,极有可能导致甲醛中毒,强烈不建议在房屋内长期居住,否则将导致眼睛、气管将受到强烈刺激,出现打喷嚏、咳嗽等症状或是呼吸困难,引发肺炎等危重疾病,甚至导致死亡。因此,M.E.G.正在讨论是否上升欲花海的生存难度。

我现在头晕眼花,不知道是不是那所谓的幸运豆奶导致的,但愿我好好活着,我不知道这后室里有没有医疗团队什么的。

或许我将要被这幸运豆奶弄死了。

我定睛一看,才发现那个幸运豆奶上面有着一个使用说明:

请注意,幸运豆奶分为多种口味:

1. 原味
2. 草莓味
3. 巧克力味
4. 抹茶味
5. 香蕉味
6. 运气味
请注意,运气味极度危险,所有运气味(黄色外包装)的幸运豆奶应当加热到至少70摄氏度才可饮用。


那我这是?将死了吗?我或许在经历一个完整的悲伤五阶段5

导航


欲花海 的线性空间在一般情况下会发生巨大的变化,这通常会导致以下情况:
  • GPS导航完全失灵。
  • 跋涉数百里,却发现自己还停留在原地。
  • 感觉在原地踏步,却发现已经走了将近数百里。
  • 难以辨别方向。
  • 向后走,却发现与来时路完全不同。

以上情况均无法完全应对,建议使用一些物品标记你走过的路,这是一种好的辨别方向方法。

当你开始逐渐适应欲花海的特殊环境时,你对辨别方向的物品的依赖感将消退。但这并不意味着,你可以盲目自信地仓促行动!对于新来的流浪者,过度自信总是头号死因。你观察到的距离永远会是虚假的,所以别觉得你只是呆了几个小时,就能掌握探索非欧几何环境的方法!

我好了,接下来我就说说环境吧:
我感觉我走了500多米了,却发现我其实纹丝未动。我歇了一会儿,却发现我走了数十里。

我疑惑不解,这到底是什么情况?花香散去,浓烈的恶臭味扑鼻而来,闻着好似尸体,突然,我发现我为了辨别方向所扔下的两块泥土突然汇聚到了同一地点,我感到怪怪的。我现在唯一的愿望就是把这片地方改成一个迷宫,这样我至少能用靠墙走法,可惜,这片花海除了房屋的墙壁就没有墙了。

emmm….. 后室有什么意义呢?毫无。我应该,永久都离不开这里了。

我何尝不是死了呢?

段落


由于此层级的深处与入口处存在差异,并且环境与实体也各不相同,尽管可能这些差异是细微的,但我们仍然记录并开启了此栏。

段落结构

1

入口段Level YT-100内部极为著名的一个区域,内部建立了许多基地。此处看似并非花海,而是由大量植物所建立起来的一个区域,其植物多数都对身体有益,建议流浪者在此定居。

大多数流浪者通常是通过黑色监狱所进入了该区域,因为多数流浪者并不了解后室,因此The F.N.C.为了帮助这些流浪者所建立了"Ming"基地。

我清楚的知道我必将死亡,我已对花香上瘾,但可笑的是,我对花粉过敏。多么可笑!

我看向一旁的 Lambda Core 和 Hlagom,他们扶额苦笑,异口同声地说:“我 无 能 为 力。”花香弥漫,多么好的场景啊,可惜,我是看不完了。我看向我第一次来到这里的地方,回忆起我的过往:

想当初,我第一次踏入这片花海之时,我无忧无虑,可惜,现在……

实体


该层级拥有许多实体,这些实体一般栖息在香味段的房屋内部,又因房屋极度危险,故不建议进入房屋,为了防止出现意外,我们给出了以下建议:

应当:

  • 不惜一切代价避免与实体战斗。
  • 遇到危险实体立即寻找他人帮助。
  • 尽量结伴而行。

不应:

  • 发现实体接近时,切勿奔跑!走廊的非欧几里得结构可能通过空间扭曲效应拉近你与实体的距离,并加速吸引实体注意。
  • 切忌远距离开火攻击!即便可能击毙目标,但枪声只会招惹更多实体。
  • 切勿与实体展开近身缠斗。再次警告:蛮干是新流浪者最常见的死因。
  • 若遭遇不确定身份的人形目标,则切忌靠近接触。谨记,真正的幸存者往往结伴而行。

我相信,我的故事一定不会就此结束,请静待我吧。

——Jam John

基地、前哨和社区


在如此广袤之地有探险者是正常的,但请你们提防人类,有时人性的险恶比实体更加恐怖,我们整理出了一些可供信任的基地名单,可寻找如下基地的人们寻求帮助。

F.N.C. Ming 基地

建立者:Sam Kams


Ming基地隶属于F.N.C.,会对流浪者进行帮助,该基地共计有500人,目前欲花海的绝大多数地区都由此基地管理,该基地的物资储备量达到了1吨左右,此基地位于入口段的中心处,在饥饿/饥渴的情况下可寻找此基地帮助。

当然,如果你热爱探索或是冒险,可以寻找此基地的管理员并加入此基地进行对此层级的探索工作。

如果你真的需要了解更多有关此基地的历史与架构,请查阅Ming基地一文。

入口与出口


迄今为止,你目前唯一已知的此层级入口便是Level YT-99,但我们仍然发现了诸多通往此层级的入口。

入口

进入此层级的方法多种多样,我们目前将这些进入方法归类(即下)。
  • Level YT-50.1-AC - “永恒列车”墙壁上的一些门;
  • Level YT-2 - “暗无天日”的地板上的一些活板门;
  • Level C-3 - “此生彷徨于乏味仿本之间” 的某些特定门;
  • Level C-116 - “舒适时刻”的某些门以及窗户;
  • Level 7 - “深海恐惧症”房屋内部的地板上的活板门;
  • Level YT-90 - “画卷界城”的某些形状怪异的门。

出口

如你需要离开此层级,请查阅下文。
  • 玻璃门通往 Level YT-288 - “极乐攀岩场”
  • 有时房屋的门会变成黑色重金属门,进入将来到Level 2 - “废弃公共带”
  • 少数情况下,地面将出现活板门,进入将来到Level YT-50 - “地铁隧道”

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