: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 }
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap'); @import url('https://fonts.googleapis.com/css2family=Roboto+Slab:wght@400;500&display=swap'); @import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap'); :root { /* S-CSS-P Integration */ /* If you're making a new CSS theme, please include the following three variables at minimum. */ --theme-base: "black-highlighter"; /* must be either "black-highlighter" or "sigma9" */ --theme-id: "kalag-theme"; /* set this to the URL of your theme's page - eg for "component:ar-theme", set it to "ar-theme" */ --theme-name: "Kalag Institute Theme"; /* set this to your theme's full name */ --logo-image: url("http://backrooms-wiki.wdfiles.com/local--files/theme%3Akalag/kalaglogo.png"); --header-title: "卡拉格灵协会"; --header-subtitle: "永世存续之档案馆"; --body-font: 'Open Sans'; --header-font: 'ZCOOL XiaoWei'; --title-font: 'ZCOOL XiaoWei'; --mono-font: 'Courier', monospace; --white-monochrome: 215, 219, 204; --pale-gray-monochrome: 190, 196, 167; --light-gray-monochrome: 63, 66, 50; --gray-monochrome: 92, 97, 74; --black-monochrome: 63, 66, 50; --bright-accent: 92, 97, 74; --medium-accent: 63, 66, 50; --dark-accent: 92, 97, 74; --pale-accent: 63, 66, 50; --swatch-topmenu-border-color: var(--medium-accent); --swatch-menubg-dark-color: var(--light-gray-monochrome); --link-color: 92, 97, 74; --hover-link-color: 92, 97, 74; --background-gradient-distance: 0rem; --gradient-header: linear-gradient(to top, rgba(var(--medium-accent)) 0%, rgba(var(--medium-accent), 0.90) 100% ); --diagonal-stripes: linear-gradient(transparent 0); } #skrollr-body { background-image: none } #side-bar .side-block div a img { filter: grayscale(100%); } #container { background-image: none } div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; -moz-border-radius: 0em; border: none; } div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; } #header, #top-bar { background-attachment: scroll; } #header { background-image: none; } #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0.1rem; top: 0; background-image: var(--logo-image); background-size: auto 19rem; background-position: center; background-repeat: no-repeat; opacity: 0.4; } #header h1, #header h1 a { position: absolute; top: 1rem; margin: 0; width: 100%; display: flex; justify-content: center; z-index: 0; } #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 2rem; margin: 0; width: 100%; display: flex; justify-content: center; } #header h1 a::before, #header h2 span::before { text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; } span.printuser { color: rgb(var(--pale-gray-monochrome)) } .code { border: 2px dashed rgb(var(--pale-gray-monochrome)); } blockquote { padding:0.1rem 0.7rem; margin:1rem 0; background:rgb(var(--pale-gray-monochrome)); border-radius:0.6rem; box-shadow: 0px 0px 3px; border: 1.75px solid rgb(var(--white-monochrome)); box-sizing:border-box; } /* sd banner colours */ .sd-container { --sd-symbol:var(--sd-text); } .block-quote { padding:0.1rem 0.7rem; margin:1rem 0; background:rgb(var(--pale-gray-monochrome)); border-radius:0.6rem; box-shadow: 0px 0px 3px; border: 1.75px solid rgb(var(--white-monochrome)); box-sizing:border-box; } .styled-quote { font-family:Times New Roman; padding:0.1rem 0.7rem; margin:1rem 0; background:rgb(var(--pale-gray-monochrome)); box-shadow: 0px 0px 3px; border: 1.75px solid rgb(var(--white-monochrome)); box-sizing:border-box; }
生存难度:生存難度:
等级等級 2
- 孤单
- 寂寞
- 不安
如何使用:
[[include :backroom-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]
在 lang 处选择语言,cn 表示简体中文,tr 表示繁体中文。
class 处的可用参数包括以下内容,支持简繁体及英文输入。
- 0
- 1
- 2
- 3
- 4
- 5
- unknown
- 未知
- 未知
- habitable
- 宜居
- 宜居
- deadzone
- 死区
- 死區
- pending
- 等待分级
- 等待分級
- n/a
- 不适用
- 不適用
- amended
- 修正
- 运变
- 運變
- omega
- 终结
- 終結
自定义等级
[[include :backroom-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]]
迎春花已开 灼灼映青苔
不见君行至 徒留香盈怀
迎春花已谢 零落委尘埃
吾不见君踪 空阶覆苍苔
迎春花又开 岁岁复皑皑
Level Dr-106 里所摄下的第一幅照片。
描述:
Level Dr-106 呈现为一片无限延伸的、地势略有起伏的草原。草原上散布着无数低矮、形态各异的坟丘,坟丘大多由简单的土石堆砌,少有墓碑,偶有刻着模糊不清字迹或图案的木牌、石块。草色呈现出一种不自然的的墨绿。天空始终是阴沉的铅灰色,光线昏暗但足以视物,没有明显的昼夜更替,时间感在此变得模糊不清。
该层级最显著的特征是无处不在的迎春花。它们顽强地从坟丘的缝隙、土堆的边缘、甚至直接在草地上成簇地生长出来,开出异常鲜艳且刺眼的明黄色小花。这些花朵似乎不受层级整体灰暗氛围的影响,散发着微弱但温暖的光晕。空气中弥漫着泥土、陈腐草木和一丝不易察觉的属于迎春花的淡雅冷香。
当流浪者长时间凝视一个特定的、无标识的坟丘(超过5分钟),并对其产生“这下面埋的是谁?”或“他/她来自哪里?”等念头时,该坟丘附近的迎春花会突然异常明亮地闪烁数次。
随后,流浪者会感到一阵强烈的精神恍惚和空间错位。眨眼后,流浪者将发现自己正身处一个短暂的、第一人称的临终记忆片段中。这段记忆通常属于一个客死异乡者,内容极其碎片化且充满悲伤、孤独和强烈的思乡之情。记忆场景总是阴冷、灰暗(如简陋的病房、破旧的出租屋、陌生的荒野),但必然包含一个清晰的、关于其家乡春天(尤其是迎春花盛开景象)的温暖闪回。这段闪回异常鲜明,与临终环境的阴郁形成强烈对比。记忆片段通常以死亡降临的冰冷黑暗或一句充满遗憾的遗言(如“回不去了…”、“好想再看一次老家的迎春…”)结束。结束后,流浪者会瞬间回到坟丘前,感到短暂的悲伤和眩晕。
随着在层级停留时间的延长,流浪者会发现自己原本的衣物逐渐褪色、变薄,并最终转化为粗糙的、蓝白条纹或灰白色的麻布衣服。这种转换是渐进且不可逆的。
伴随衣物转换,流浪者会开始感到体温缓慢但持续地下降,即使活动也无法完全驱散寒意。同时会出现轻微的肢体僵硬感和一种深沉的、难以言喻的倦怠感,仿佛生命活力正在被这片土地缓慢抽离。
当停留在此层级过久时,流浪者会被强烈的思乡情绪笼罩,并发现自己穿行于一片异常茂密的迎春花丛中时,周围的景象会开始扭曲。 花丛深处,会逐渐显现出一条由迎春花瓣铺就的、散发着柔和金光的小径。踏上这条小径,流浪者会感到周遭的坟丘草原迅速虚化、褪色。小径的尽头,会出现一个极其逼真、细节丰富的家乡幻境。这个幻境完美复刻了流浪者记忆中家乡春天(尤其是迎春花开时节)的某个特定场景,常使人感到熟悉、安宁与感伤。
幻境极度真实且具有强大的精神抚慰力。在幻境中停留超过1小时,流浪者的实体存在将开始不稳定。如果选择在幻境中“睡去”或产生“留在这里”的强烈意愿,流浪者将永远融入幻境,其肉身会在Level Dr-106的现实中原位置化作一个新的、无标识的坟丘,坟头迅速长出茂盛的迎春花。离开幻境的唯一方法是在1小时内,强忍不舍,找到幻境中一处与记忆不符的微小“瑕疵”(如一朵永不凋谢的假花、一面无法映出倒影的窗户、一个永远走不到的门),凝视它并集中精神“拒绝”幻境。成功后,小径会再次出现引导返回。
物品:
Level Dr-106中存在一些藏匿在花丛中或者坟洞中的物品,我们发现了以下具有该层级特有效应的物品,目前尝试拿取这些物品的行为皆无功而返。
- “未寄出的家书”: 偶尔会在某些坟丘旁的迎春花根下发现。通常是泛黄的、字迹被泪水或雨水晕染的信纸碎片,内容多为对家乡和亲人的思念、无法归乡的遗憾。阅读会引发强烈的共鸣和悲伤。
- “停滞的怀表”: 个别坟丘上可能摆放着生锈的旧式怀表。表盘永远停在某个随机时刻,秒针纹丝不动。打开表盖,内盖有时会有一张模糊的、家乡风景的小照片(常包含迎春花)。
- “故园之土”:在坟丘附近,有时能挖到一小包用油纸包裹的、颜色与周围不同的土壤。据信来源于记忆片段中死者的家乡。触碰会引发短暂的家乡气息幻觉(泥土味、炊烟味、特定花香)。
- “灯芯”:极其稀有。在最为璀璨的迎春花丛中心,偶尔能找到一根散发着微弱金光的、形似干枯花蕊的细丝。它本身不发光,但靠近任何光源(如火把、手电)时,能使光源散发出带有迎春花香气的、温暖的金黄色光芒,有效驱散层级带来的寒意和精神压抑感。
特有实体:
“我的终结即是新生”
极其稀有的非敌对实体。表现为半透明、模糊不清的人形轮廓,通常出现在较新的坟丘附近或在迎春花丛中无目的地缓慢游荡。它对流浪者无反应,似乎沉浸在自己的世界里,偶尔会重复一些简单的动作(如低头看花、抚摸不存在的墓碑)。接触它时会引发强烈的悲伤情绪和短暂的寒冷,但无实质性伤害。它们被认为是层级异常现象的副产品或残留意识。
碑,无名。
枯草低伏,捧出倔强的明黄。
那是异乡客未冷的眺望,在墨绿坟丘上灼灼生长。
衣,渐冷。
粗糙的麻布裹紧未寒的余温。
蓝白条纹在灰败中蔓延,体温随故土的幻影一寸寸沉沦。
路,金光。
小径铺满碎金的花瓣,延伸向暖阳。
熟悉的街巷在尽头铺展,鸟鸣花香——是故乡,亦是温柔的坟场。
灯,微芒。
若寻得花芯一点,或可暂御蚀骨的寒凉。
但那光晕诱人沉溺,是归途的指引,也是永眠的序章。
莫问归期,
莫信眼底的春阳。
那绚烂的幻境深处,
埋骨即是归乡。
异乡埋骨处,故土在睫上生根。
愿葬于异乡的你,终可见家乡迎春。
迎春花就在我们身边。
基地/前哨站:
由于层级的精神影响、实体转化的风险以及“资源”收集的危险性,Level Dr-106 内没有已知的永久性基地或前哨。偶尔会有流浪者短暂停留,在迎春花的微光下建立临时营地,但通常不会久留。
入口与出口:
入口:
- 在Level Dr-65的某些被遗忘的角落找到一丛开得异常灿烂的迎春花,凝视其中心后可能切入。
- 在 Level Dr-14的浓雾中,如果听到清晰的、用陌生语言哼唱的思乡小调,并循声走去,可能到达此处。
- 极少数情况下,在其他层级经历濒死体验时,有小概率直接切入,并发现自己躺在一个新出现的无标识坟丘旁。
出口:
- 成功从“迎春之径”的故乡幻境中“拒绝”并返回小径尽头,小径会引导流浪者回到进入幻境的位置。
- 找到一个插着半块残破木牌的坟丘。在坟前静坐。当周围的迎春花突然无风自动,光芒稍暗时,闭眼。便可进入“约定之地”
- 在层级中陷入绝望或完全放弃抵抗,体温降至极低点并昏厥,有小概率在某个其他层级的墓地(比如Level Dr-22)或医院(比如战地医院)环境中醒来(状态极差)。


