: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 }
R.G.D.提示:该层级暂没有实质性信息,故该文件会与真实层级有一定冲突!
生存难度:生存難度:
等级等級 未知
- 舒适
- 艳丽
- 精神影响上帝的花朵
如何使用:
[[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]]
(此层级对■浪者及R■D■■精神■■,故不宜■■■,请■■!!!不要■■■■!)
描述:
level x 79 堪称是令 R.G.D. 损失极为惨重的层级之一。
鉴于探员们最终未能成功撤离,我们只能从已知的录音及照片中选取具有介绍性质的内容来作为本文件的描述。
level x 79 展现出的是一座风景美丽得如同精美油画般的花园,然而令人倍感遗憾和扫兴的是,这里早已被废弃,失去了往昔的生机与活力。花园本身的面积并不大,依据队员 2 的描述,其大小约为一个标准篮球场的面积。在花园的正中央,矗立着一座类似于鹅国乡下的木屋。在这座木屋里,存在着一定的概率会出现一座花坛,可有时你却会发现那里犹如网络游戏中的漏洞一般,向下镂空,深不见底。(本层级选图就取景于此地)
根据勘探员在此层级的描述画出的想象图。
该层级存在互联网(2g,信号满格。),在与探员小队实时沟通时,他们发现该层级四处散落着一个名为奥坎尼 does not match any existing user name(账号已注销)的流浪者散落的手记,小队还在花园的水池里发现了一具巨人观化的尸体,推测为奥坎尼 does not match any existing user name。
据“奥坎尼的手记”透露,该层级有切出至前室的方法。(待考证)
以下是我们整理后的手记选段:
当你看到这篇手记时,或许意味着你也陷入了这诡异的梦里。我在这里已经徘徊了许久,试图寻找逃离的方法。
我发现,这个层级中的花,是一切的关键。浅色花看似无害,甚至能在关键时刻救你一命。有一次,我受伤后用浅色花的花瓣敷在伤口上,奇迹般地,伤口开始愈合。
但千万要小心深色花,那是致命的陷阱。我的一位同伴,仅仅是轻轻触碰了一下深色花的花蕊,就立刻变得神情恍惚,口中念念有词,没过多久便失去了理智。
关于出口,我有一些模糊的线索。我曾在木屋的墙壁上看到一些奇怪的符号,似乎与某个特定的时间或者光线角度有关。但我还没来得及弄清楚,就遭遇了危险。
我还发现,当月光洒在花园的某个角落时,那里的地面会出现微微的震动,也许那就是离开的关键所在。
这里的一切都让我想起了我美丽的的谢希卡,如果她在这里,或许能给我一些不同的思路。我是如此地想念她,想念我们曾经一起度过的时光。她的温柔、善良和聪明,一直深深地印在我的心中。
我在这本手记中写道:“如果能和谢希卡一起离开这个可怕的地方,过上平静的生活,那该有多好。”但我知道,现在我必须集中精力,找到逃离的方法。
希望我的这些发现能对你有所帮助,愿你能早日逃离这个可怕的地方。我活不成了,那些东西已经发现了我,如果你能成功从这逃出去,请把这本手记带给她,告诉谢希卡:我爱她。
——奥坎尼
实体:
花
在 Level X-79 “奥坎尼之梦”中,花作为唯一的实体和有机生命,充满了两面性。
浅色的花“犹如温柔的守护者,它们静静地绽放,散发着柔和而宁静的气息。花瓣娇嫩欲滴,颜色淡雅清新,给人一种宁静祥和的感觉。”当流浪者疲惫不堪、口渴难耐时,这些浅色的花就“宛如救命的甘霖,不仅可以为他们提供滋润,还能在精神上给予安抚。”例如,一位受伤的流浪者在服用了由浅色花制成的汁液后,伤口的疼痛明显减轻,“心灵也得到了慰藉,重新燃起了生存的希望。”
然而,深色的花则"是可怕的恶魔。它们的花瓣呈现出深沉而诡异的色彩,仿佛隐藏着无尽的黑暗。"当流浪者靠近时,它们会释放出一种无形的力量,"悄然侵蚀着人们的意识"。有一名勇敢但鲁莽的探险家,仅仅是因为好奇嗅了一下深色花的香气,瞬间就陷入了疯狂的幻觉之中,开始攻击自己的队友,最终"迷失在无尽的恐惧里"。
这些花不仅仅是简单的植物,它们更像是这个层级的主宰者,决定着流浪者的命运。有的流浪者因为对花的特性不了解,误触了深色花的禁忌,永远地留在了这个层级;而有的流浪者则凭借着对浅色花的巧妙利用,幸运地找到了生存的机会。
"无论是浅色花的恩赐还是深色花的诅咒",都使得“奥坎尼之梦”中的花成为了这个层级最为独特和关键的存在。
寻花者
其外形奇异,身躯高大却扭曲,仿佛被无形的力量拉伸变形。躯体被一层如烟雾般朦胧的物质所环绕,使得其真实形态难以捉摸。头部似人类却又异化,双眼闪烁着令人胆寒的幽光,犹如来自地狱的凝视。
寻花者的四肢修长且关节扭曲,行动时如同鬼魅,无声无息却又迅猛异常。它的双手形似锋利的爪子,能够轻易地撕裂猎物。
它周身散发出一股腐朽与死亡的气息,所到之处,花朵要么瞬间枯萎,要么疯狂生长至失控。
寻花者具备一种特殊的能力,能够与花朵进行心灵沟通,从而掌控整个花园的动态。它能感知到任何对花朵的威胁,并以极其残忍的手段予以回击。
其存在的目的似乎只有一个——守护梦中的花朵,以及隐藏在这片花海背后的惊天秘密。任何试图揭开秘密或破坏花朵的人,都将成为它无情攻击的目标。
对于那些不幸遭遇寻花者的人来说,它就是死亡的化身,带来的只有无尽的恐惧和绝望。
参考如下:
(开门声)
队员 1:“这该死的地方,到处都是这些奇怪的花,我感觉我的精神都要崩溃了。”
队员 2:“冷静点,我们得继续寻找线索,也许出口就在不远处。但这鬼打墙一样的情况真是让人头疼,怎么走都好像在原地打转。”
(此时,背景中隐隐传来一阵低沉而压抑的风声,仿佛有什么在暗处呼啸)
队员 3:“我觉得那个木屋很可疑,你们还记得吗?那木屋看上去古老而神秘,外层的木板已经腐朽,仿佛历经了无数岁月的侵蚀。它矗立在花园的深处,周围的浅色花似乎对它有所避让,而深色花却在它附近肆意生长。”
(伴随着队员 3 的话语,远处传来隐隐约约的树枝折断的“咔嚓”声)
队员 1:“是的,我记得。那木屋的门上还刻着一些奇怪的符号,像是某种古老的咒语或者密码。窗户也破破烂烂的,被灰尘和蛛网所覆盖,让人无法看清里面的情况。不过那些符号咱们也别研究了,越研究越迷糊。”
(突然,一阵尖锐的类似女子惨叫的声音划过,令人毛骨悚然)
队员 2:“当我们靠近木屋时,似乎能感觉到一股寒意从里面渗透出来。而且,我总觉得有一双眼睛在暗中窥视着我们。”
(此时,一阵沉重的脚步声从木屋后方传来,每一步都仿佛踏在人的心上)
队员 3:“还有那木屋的屋顶,有些瓦片都已经缺失了,不知道是不是被什么东西给弄掉的。也许,这里面隐藏着什么危险的东西。”(突然,一阵诡异的“呜呜”声在耳边响起,时断时续)
就在这时,一个模糊的身影从花丛中一闪而过,队员 1 紧张地喊道:“那是什么?”
队员 2 颤抖着说:“好像是…其他流浪者?。”
队员 1:“该死,他怎么这么疯癫!”
队员 3:“大家小心,尽量别出声。”
队员 1:“但也有可能出口的线索就在那里面,我们不能就这么放弃。”
队员 2:“嗯,你说得对。不过大家一定要小心那些深色的花,还有这木屋里可能存在的未知危险,尤其是那个疯子。”
队员 3:“好,那我们再去搜查一遍木屋,看看能不能发现什么新的线索或者找到离开这个层级的方法。”
(一阵寂静)
队员 3:“嘘,你们听,好像有什么声音。”(此时,传来一阵仿佛指甲刮擦木板的“吱吱”声,令人脊背发凉)
(突然传来一阵尖锐的叫声)
队员 2:“快跑!”
(三人疯狂奔跑的脚步声伴随着沉重的喘息声,还有周围不断传来的阴森的风声和不明物体的移动声)
队员 1:“这叫声太可怕了,到底是什么东西!”
(此时,又传来一阵仿佛野兽咆哮的声音,震耳欲聋)
队员 2:“别管了,先拼命跑,找个安全的地方躲起来!”
队员 3:“我感觉我们一直在绕圈,根本跑不出去!”
(此时,背景中传来一阵令人心跳加速的急促鼓声)
队员 1:“难道真的是鬼打墙?这也太邪门了!”
队员 2:“先别慌,大家冷静下来想想办法。”
队员 3:“或许我们应该回到木屋看看,说不定那里有什么可以抵御危险的东西。”
队员 1:“可是木屋也充满了未知的危险啊!”
队员 2:“但这是目前我们唯一能想到的地方了,总比在这外面瞎跑强。”
队员 3:“好吧,那我们小心点往回走。”
队员 1:“大家靠拢一点,千万别走散了。”
(三人小心翼翼地往木屋的方向返回,此时周围的音效变得更加诡异,有仿佛幽灵低语的声音)
队员 2:“看,木屋就在前面。”
队员 3:“希望这次能有所发现。”
就在这时,队员 3 因为一时疏忽,不小心触摸到了一朵深色花。他的身体瞬间开始颤抖,皮肤逐渐变得灰暗,眼睛里闪烁着诡异的光芒。
队员 1 惊恐地喊道:“队员 3,你怎么了?”
队员 3 发出一阵低沉的嘶吼,声音不再是他原本的声音
队员 2:“不好,他被花控制了,快跑!”
(三人再次陷入恐慌,拼命逃离)
队员 1:“轻一点,别惊动了里面可能存在的东西。”
(三人悄悄地走进木屋,此时屋内传来一阵沉闷的撞击声)
队员 2:“这里好像比之前更阴森了。”
队员 3:“嘘,听,有动静!”
(一阵低沉的咆哮声从木屋深处传来,声音越来越大,仿佛要将人吞噬)
队员 1:“完了,这下麻烦大了!”
基地及前哨站:
因层级性质的影响,故无法建立基地以及前哨站
入口与出口:
入口:
- 根据奥坎尼在手记里的描述,在Level X-27/Level X-114的某处看到未知的手记回来到本层级
- 在Level X-90中幻想难以发生的事,会来到本层级。
出口:
- 从手记中推理可知,在花坛卡出”漏洞“时,从镂空处切出,可以来到前厅。(待考证)
- 因探索小队未成功撤离,故没有稳定、真实的出口。
欢迎访问!
流浪者,这是关于研究报告的摘录,我只能帮你到这了,不然这篇文章将会被重置,你也将永远蒙在鼓里。
2024/07/31
"…level 79并非自然形成的层级,而是一场实验的产物。R.G.D. 内部的高层曾秘密启动了一项名为“花枝觉醒”的计划,旨在探索意识与植物能量之间的关联,其主导者现已处决,该研究也永久除名,这也导致R.G.D.行动部门等并未得知此消息。那次实验失控,导致了这个层级的诞生。此文档严格保密,如被其余闲杂人等发觉,将会引起恐慌。
曾是重要测试人员之一的亚瑟,代号“奥坎尼”,在此次研究失败被困此地之时,依旧做出了极大的贡献,他所写的研究报告,也就是所谓<手记>给我们后续的层级谱写工作带来了极大的便利,故以他的代号命名此层级。
深入调查发现,深色花所释放的精神危害并非偶然,而是一种被刻意设计的能量波动,旨在影响并控制接触者的思维。而浅色花的治愈效果,实则是一种诱饵,诱导人们放松警惕。
更为惊人的是,那座神秘的木屋曾是实验的控制中心,如今虽已废弃,但内部仍留存着关键的数据存储设备。然而,设备被复杂的密码锁保护,破解密码的线索隐藏在花园中特定花朵的排列顺序之中。
同时,“寻花者”并非个体变异的结果,而是实验创造出的一种守护机制。寻花者由实验中融合了植物基因和人类意识的个体演变而来。它具有强大的力量和敏捷的身手,能够在花丛中迅速穿梭且不发出任何声响。其身体表面覆盖着一层坚韧的花瓣状护甲,不仅能够抵御攻击,还能释放出有毒的花粉,使靠近的人陷入昏迷。花粉具有感染能力,故不建议与其接触。
寻花者具有独特的感知能力,能够察觉到任何对层级秘密有威胁的存在,并迅速展开攻击。它的眼睛能够发射出诡异的光芒,使人陷入短暂的失神状态。其思维受到实验程序的控制,对层级中的花朵和实验数据有着近乎偏执的保护欲。
…因<花枝效应>,此层级的存在对X层群构成潜在威胁,R.G.D. 正全力寻找彻底关闭它的方法。但至今,所有尝试均以失败告终…"
补充:花枝效应现已列入X现象。
«Level X-78|Level X-79|Level X-80»
作者:Hebal_dan114
代发与一些帮助:triangle sandwich
