: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 }
/* Myrand */ :root{ --white-monochrome: 60, 60, 60; /* ALTERED */ --pale-gray-monochrome: 20, 20, 20; /* BG*/ --light-pale-gray-monochrome: 50, 50, 50; --very-light-gray-monochrome: 60, 60, 60; --light-gray-monochrome: 165, 160, 155; --gray-monochrome: 35, 35, 35; /* sub header */ --dark-gray-monochrome: 15, 15, 15; --black-monochrome: 0, 0, 0; --border-monochrome: 40, 150, 150; --visited-link: 40, 155, 155; --pale-accent: 40, 255, 255; /* links that do exist */ --bright-accent: 40, 133, 133; /* button hover, text hover, sidemenu collapsible, submenu hover */ --medium-accent: 30, 30, 30; /* header */ --dark-accent: 80, 80, 80; /* 1st footer, header menu bg */ --alt-accent: 255, 20, 20; /* links that do not exist */ --text-monochrome: 255, 255, 255; --visited-link-color: var(--visited-link); --swatch-border-color: var(--border-monochrome); --swatch-menubg-color: var(--gray-monochrome); --swatch-menubg-light-color: var(--pale-gray-monochrome); --swatch-menubg-medium-color: var(--light-gray-monochrome); --swatch-menubg-medium-dark-color: var(--gray-monochrome); --swatch-menubg-dark-color: var(--dark-gray-monochrome); --swatch-menubg-black-color: var(--black-monochrome); --swatch-menubg-hover-color: var(--black-monochrome); --swatch-menutxt-dark-color: var(--text-monochrome); --swatch-menutxt-light-color: var(--text-monochrome); --swatch-menutxt-general-color: var(--swatch-menutxt-dark-color); --ui-button-bg: var(--light-pale-gray-monochrome); --ui-button-txt: var(--text-monochrome); --ui-button-hover-bg: var(--gray-monochrome); --ui-button-hover-txt: var(--text-monochrome); --ui-button-hover-outline: var(--pale-accent); /* codeblock */ --swatch-code-text-comment: 100 255 255; --swatch-code-text-quotes: 178 255 255; --swatch-code-text-string: 222 255 255; --swatch-code-text-identifier: 16 255 255; --swatch-code-text-reserved: 90 255 255; /* footnotes hover */ --hoverblock-bg: var(--pale-gray-monochrome); --hoverblock-txt: var(--text-monochrome); --hoverblock-header-bg: var(--swatch-primary-darker); --hoverblock-header-txt: var(--text-monochrome); --hoverblock-footer-bg: var(--swatch-tertiary-color); --hoverblock-footer-txt: var(--text-monochrome); --swatch-text-dark: var(--text-monochrome); --swatch-text-light: var(--text-monochrome); } #main-content { --ui-icon-color: var(--ui-button-bg); --ui-icon-bg: var(--ui-button-bg); --ui-icon-hover-color: var(--ui-button-hover-bg); --ui-icon-hover-bg: var(--ui-button-hover-bg); /* Editor Buttons */ --editor-icon-color: var(--text-monochrome); --editor-icon-hover-color: var(--black-monochrome); --editor-icon-hover-bg: var(--text-monochrome); --editor-icon-submenu-bg: var(--black-monochrome); /* footnotes */ --footnotes-footer-bg-color: var(--gray-monochrome); --footnotes-footer-colorbar-color: var(--very-light-gray-monochrome); --footnotes-footer-title-bg-color: var(--very-light-gray-monochrome); --footnotes-footer-title-text-color: var(--swatch-text-secondary-color); --footnotes-footer-num-color: var(--pale-accent); --footnotes-footer-num-hover-color: var(--bright-accent); --footnotes-footer-text-color: var(--swatch-text-general); } #main-content { --ui-icon-color: var(--swatch-text-secondary-color); } #side-bar { --sidebar-bg-color: var(--swatch-secondary-color); } #main-content::after { height: 13rem; border-radius: 0 0.6rem 0.6rem 0; background-color: rgb(var(--gray-monochrome)); top: calc(50vh - 6.5rem); background-image: url("http://nuliminal-test.wikidot.com/local--files/component:theme/sidebar-arrows.svg"); } .lightstyled-quote { background-color:rgb(var(--bright-accent)); color:rgb(var(--text-monochrome)); border-left: 0.5rem solid rgba(var(--dark-gray-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .darkstyled-quote { background-color:rgb(var(--dark-gray-monochrome)); border-left: 0.5rem solid rgba(var(--bright-accent)); color:rgb(var(--text-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .darkstyled-quote a{ color: rgb(var(--swatch-menubg-medium-color)); } .lightblock { background-color:rgb(var(--bright-accent)); color:rgb(var(--text-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .darkblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(var(--text-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .dark-borderblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(255, 255, 255); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--bright-accent)); } .light-borderblock { background-color:rgb(var(--bright-accent)); color:rgb(var(--text-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--dark-gray-monochrome)); } .border-logoblock{ padding: 0.01rem 1rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color:rgb(255, 255, 255); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--dark-gray-monochrome)); border: solid 0.3rem rgb(var(--bright-accent)); } .border-logoblock::after{ content: ""; float: center; border: solid 2px #0000; background: url(http://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg) center/25% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } .logoblock{ padding: 0.01rem 1rem; color:rgb(255, 255, 255); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--dark-gray-monochrome)); } .logoblock::after{ content: ""; float: center; border: solid 2px #0000; background: url(http://backrooms-wiki.wikidot.com/local--files/component:theme/logo.svg) center/25% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } .titleblock { background-color: rgb(var(--dark-gray-monochrome)); color:rgb(var(--text-monochrome)); padding: 0.5rem 1rem 0.10rem; margin: 1.5rem 0rem 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); border: solid rgb(var(--bright-accent)) 2px; } .titlebox{ color: rgb(var(--text-monochrome)); position: relative; top: -1.6rem; background-color: rgb(var(--bright-accent)); padding: 0.25rem 1rem; line-height: 0.1rem; } .borderblock { background-color:rgb(var(--dark-gray-monochrome)); color:rgb(255, 255, 255); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--bright-accent)); } .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); }
提示,档案受限!
生存难度:生存難度:
等级等級 S1
- 安全性未定
- 不稳定
- 无实体及生命体
level X-200是后室X层群的第201层
描述
level X-200外观看起来像一座室内的废弃游乐场。“游乐场”的高度约为150米,宽度约为200米。“游乐场”内有着类似游乐设施的建筑,包括但不限于小型跳楼机,旋转木马,小型过山车。在设施周围有一些类似售卖饮料的商铺,商铺内部货架上会刷新杏仁水,能量棒等补给物资。层级被分为3部分,机动游戏区,儿童区还有商铺区,每个区域都会刷新一些能量补给等物资。层级的顶端由许多块玻璃组成,有一些玻璃已经产生破裂。
身处层级中心区域时,能够看到顶端散射下来的“阳光”。在中心区域,能听见顶端隐隐约约有一些风声,现推测层级存在着天气变化。
层级内存在WI-FI,WI-FI为4G速度。探测过后FIC发现有一个用户名为“FuaE_QAQ”的社交网络用户的IP地址在此处活动。但该用户目前并未发布任何的动态。
FIC的勘探进行了1周,并没有发现任何实体,虽然层级空气比较潮湿,但也不存在任何的微生物或真菌等生物体。但初次勘探时,FIC侦测到了生命迹象。迹象表现为人形生物,FIC初步判断此生命迹象为流浪者,但连着1周的勘探却都没有发现该名流浪者的痕迹,并且生命迹象在第二天时就消失了。FIC判断该流浪者卡出层级了。
任何尝试在层级拍摄的流浪者手中的拍摄设备都会失灵。当流浪者尝试将层级画下来时画作将会全部消失,文件则会表现为一片空白,因此层级不存在照片或画作。
特殊现象
- FIC发现,当流浪者尝试离开层级以外的空间时,将会被传送到儿童游乐区域或商铺区。
- 该层级貌似存在着一种特殊的隔离属性,进入层级的流浪者貌似无法遇见其他的流浪者。但如果两名流浪者进入的时间间隔不超过10分钟即可遇见彼此。因这一特性FIC并未在该层级建立基地,前哨以及社区。
- 流浪者貌似无法进入层级的废弃娱乐设施,当流浪者尝试靠近时将会被传送到设施的反面。现暂无法确定发生该现象的原因是什么。
基地,前哨及社区
- 因层级的特殊效应,FIC无法在层级建立基地,前哨及社区。
入口与出口
入口
- 数据受限
出口
- 在层级的“儿童游乐区”找到一个怀表,触摸它有概率进入levelX-47
- 数据受限
身份确认完成,点击查看受限文件
FuaE_QAQ
10月4日 3:04 PM
家人们,说句好笑的,我走着走着卡进后室了。这里看上去像个游乐场,但都废了,还一堆灰尘。都看我如何在1天之内回到前室好吧。
被预览10次
“FuaE_QAQ”在2020年10月4日下午3:04进入层级,FIC开始跟踪“FuaE_QAQ”的动态,并获取查看私密动态的权限。
随后连续1周,FIC都没有发现社交用户“FuaE_QAQ”有动态更新。
10月14日,FIC发现层级出现了不稳定的现象。在层级的FIC成员发现,在层级的三个区域都出现了一扇用画笔画成的门。
我们发现,卡入这些门可以进入同样有这些门的层级,并拥有一些特征。
- 机动游戏区的门上,貌似画着一个在空中漂浮着的房子。
- 在儿童区域的门上,貌似画着一个老旧的笔记本。
- 在商铺区域的门上,貌似画着一个波浪。
10月16日,“FuaE_QAQ”发布了新动态,FIC有理由怀疑层级存在一种实体之类的生命体。
FuaE_QAQ
10月16日 8:23 AM
我貌似回不去了。昨天,那个人已经找到了我,他没有把我怎么样,但是那个人貌似一头扎进了我的身体,然后我就发现他不见了。这怎么可能啊,也许只是我在这太孤独了产生幻觉了。今天,我感觉我头有一点晕晕的,我怎么感觉看到了我在游乐园里面玩的场景。看看我都出现幻觉了,我得尽快找到出口。
被预览12次
在这篇动态中,“FuaE_QAQ”提到有一个与他相同样貌的人貌似扎进了“FuaE_QAQ”的身体里面,FIC判断这个人也许是层级的特殊实体。
10月17日,“FuaE_QAQ”发布了一则新的动态。
FuaE_QAQ
10月17日 1:45 PM
我精神越来越差了,可能是那个人害的。我昨天晚上睡觉的时候还梦见了我的父母,搞到今天一天的心情都不好了。我感觉啥都提不起兴趣,不想继续找出口了,要不干脆死在这里算了。
被预览15次
根据上面动态来看,FIC判断待在层级的时间要是过长的话会感到一些负面的心理情绪,包括但不限于抑郁,焦躁和不安。也或许这些负面情绪的由来是“FuaE_QAQ”描述的那个特殊实体。
10月18日,“FuaE_QAQ”发布了一则新的动态。
FuaE_QAQ
10月18日 11:45 AM
第12天了,我懒得找出口了。慢慢发现,我感觉这里像我小时候经常去的游乐场。我想起了一些不太好的回忆。
大概是20年前吧,父母带我去游乐场玩,玩这玩那的,开心极了。我晚到很晚,发现父母失去了踪影。我在游乐场找了好久,感觉像人间蒸发一样消失了。我当时哭的可大声了,豆大的泪珠从我脸上滑落。随后,我被一户人家给收养了。
这父母一找就是10几年,一点信息没有,我甚至怀疑他们到底存不存在,他们到底为什么要抛弃我,我始终搞不明白…
我也许会永远留在这,我会一直尝试寻找出口..
被预览1次
在这篇动态发布的10分钟后,动态便被删除。FIC推测是层级的特殊实体导致的。特殊实体将“FuaE_QAQ”的负面情绪放大。实体貌似是通过将一些流浪者感到伤心的事情通过“梦”的形式进行回忆以让流浪者产生负面情绪。
10月19日,“FuaE_QAQ”发布了一篇私密动态。
FuaE_QAQ
10月19日 8:00 AM
我做了一个梦。
梦到我回到了前厅。
我知道那是假的。
可是我还要寻找我的父母…
我哽咽着。
我抽泣着。
你们还爱我吗?我问着。
他们笑着点头。
可是梦突然醒了。
我还是在这里。
我是该寻找曙光,还是离开这个世界?
我决定离开这个世界…
私密动态
上述动态描述,貌似“FuaE_QAQ”决定自杀。FIC判断层级存在着一个特殊实体,实体貌似可以扰乱流浪者的心智,将流浪者的负面情绪进行放大,从而引导流浪者自杀。因此FIC决定隐藏层级的入口。
FIC
建立过去,塑造明天
« Level X-199 | Level X-200 | Level X-201 »
