: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 }
/* Ethereality Theme [2023 Wikidot Theme] By Eltrac */ :root { /* 基本信息 */ --header-title: "Gardenrooms"; --header-subtitle: "卧于自然怀抱中的宁静与平和"; --logo-img: url(''); /* 设置狐步舞/sigma-9 */ --accent: 108, 125, 70; --header-txt-color: rgb(var(--accent)); --link-txt-color: rgb(var(--accent)); --page-font-size: 0.832rem; /* 排版工具组 */ --lh-white-bg: 245,245,245; --lh-dark-bg: var(--accent); --lh-highlighter: var(--accent); --lh-border-color: var(--accent); --lh-wiki-note-color: var(--accent); /* 适配部分黑标属性 */ --white-monochrome: 250,250,250; --dark-gray-monochrome: var(--accent); --black-monochrome: 60,60,60; /* 飘渺愿景自定义属性 */ --header-bg-img: url('http://koalarooms.wdfiles.com/local--files/theme%3Aethereality/369hallway_%E5%89%AF%E6%9C%AC.jpg'); --header-height: 320px; --body-bg-color: var(--white-monochrome); } @media screen and (min-width: 768px) { :root { --page-font-size: 1rem; } } /* 修改版头 */ body { background-image: none; background-color: rgb(var(--body-bg-color)) } div#header { height: var(--header-height); } #extra-div-6 { /* 版头图片 */ position: absolute; top: 0; left: 0; right: 0; background-image: var(--header-bg-img); background-repeat: no-repeat; background-size: cover; background-position: center; z-index: -1; height: calc(var(--header-height)/10*9) } #extra-div-6::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100%; background-image: linear-gradient(to bottom, transparent 20%, rgb(var(--body-bg-color))) } /* 版头文字 */ #header h2, #header h2::before { text-shadow: 0.05em 0.05em 0.01em #666; color: #eee } #header h1 a, #header h1 a::before { text-shadow: 0.05em 0.05em 0.01em rgba(var(--accent), 0.25) } #header h1 { padding-top: calc(var(--header-height)/9); padding-bottom: 1rem } /* 顶栏 */ #header #top-bar { position: absolute; top: height: calc(var(--header-height)/10*9); height: height: calc(var(--header-height)/10); display: block; left: 0 } @media not all and (max-width: 767px) { #header #top-bar { max-width: 708px } } #header #top-bar .top-bar > ul, #header #top-bar .mobile-top-bar > ul { width: 100%; display: flex; justify-content: space-between } @media screen and (max-width: 767px) { #header #top-bar .top-bar > ul, #header #top-bar .mobile-top-bar > ul { justify-content: center } } #header #top-bar ul { background: none; border-radius: 0 } #header #top-bar a { color: rgb(var(--accent)); background: transparent; font-size: 120% } #header #top-bar a:not(ul li ul li a) { padding-bottom: 1rem } #header #top-bar ul li ul { box-shadow: none; border: 1px solid #ddd; background-color: rgba(245,245,245,0.75); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } #header #top-bar ul li ul li a { line-height: 200%; transition: background 0.3s } #header #top-bar ul li ul li a:hover { color: #eee !important; line-height: 200%; text-indent: 0; background-color: rgba(var(--accent), 0.75) } #top-bar ul li.sfhover a, #top-bar ul li:hover a, #top-bar ul li a, #top-bar ul li { border: none } #header #top-bar .open-menu a { font-size: 30px!important; padding: 0.25rem; border-radius: 100%; background: rgba(var(--accent), 0.65); box-shadow: 0 0 0.1rem rgba(0,0,0,0.2); color: #eee } #header #top-bar .open-menu a:hover { box-shadow: none } #header #top-bar .mobile-top-bar { position: static; display: flex!important; justify-content: center } /* 分割线 */ #page-content hr { border-bottom: 3px dashed rgb(var(--accent)); margin: 1em 0; background: none; border-radius: 5px; height: 0 } /* 图片框 */ .scp-image-block .scp-image-caption, .scp-image-block img { margin: 0; border: none; background-color: transparent } .scp-image-block { border: 2px solid #c6c6c6; } .scp-image-block.block-right { margin-right: 0 } /* 页面标题 */ #page-title { border: none; position: relative; font-size: 220% } #page-title::after { content: ''; position: absolute; bottom: -0.5rem; left: calc(50% - 4rem); height: 5px; width: 8rem; background-color: rgba(var(--accent), 0.8); } /* DIV 元素 */ .jotting { padding: 0 1em; margin: 1em 2em } #page-content .colored-div { border-color: rgb(var(--accent)); background-color: rgba(var(--accent), 0.3) } .lightblock, .darkblock, .styled-quote, .dark-styled-quote, .candyblock, .borderblock { padding: 0 1em; margin: 0.5em 0.1em; border-radius: 5px; border: 1px solid transparent } .lightblock, .styled-quote { background-color: rgba(var(--accent), 0.1) } .darkblock, .dark-styled-quote { background-color: rgba(var(--accent), 0.75); color: #eee } .styled-quote, .dark-styled-quote { border-left: .5rem solid rgb(var(--accent)) } .candyblock { background: linear-gradient(45deg,rgba(var(--accent), 0.1) 25%,rgba(var(--accent), 0.3) 0,rgba(var(--accent), 0.3) 50%, rgba(var(--accent), 0.1) 0,rgba(var(--accent), 0.1) 75%,rgba(var(--accent), 0.3) 0); background-size: 2em 2em; } .borderblock { border: 1px solid #c6c6c6 } /* 排版工具组 */ div.wiki-note::before { color: #eee } .reportblock h1:first-child, .reportblock-dark h1:first-child { top: -1rem; left: 0 } .reportblock, .reportblock-dark { padding: 0.4rem 1.5rem; padding-top: 0 } .bettercollap .collapsible-block { border-radius: 3px } #page-content .bettercollap .collapsible-block-link:hover, #page-content .bettercollap .collapsible-block-link:hover a, #page-content .bettercollap .collapsible-block-link a:hover, #page-content .bettercollap .collapsible-block-link:hover a:hover { color: #eee; text-decoration: none } /* 插入图片 */ .styled-img img { display: block; margin: 0.5rem auto; max-width: 75%; border-radius: 5px } /* 页内标题(Headings) */ #page-content h1 { position: relative; width: fit-content } #page-content h1:not(.reportblock h1)::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0.5em; width: 100%; background-color: rgba(var(--accent), 0.5) } /* 其他页面元素 */ a.newpage { color: rgb(229,194,38) } a.newpage:hover{ background-color: rgb(229,194,38) } /* 页面选项 */ #page-options-bottom { border-top: solid 1px rgba(213, 213, 213, 0.5); margin-top: 0; } #page-options-bottom a { margin-top: 0 } /* 页脚 */ #license-area { background-image: linear-gradient(to bottom, rgb(var(--body-bg-color)), rgb(236, 238, 232)); border-top: 0; margin-top: -1rem; padding: 1rem 0 } /* 脚注 */ .hovertip { background: rgba(236,238,232, 0.75)!important; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); min-width: 8rem } .hovertip .footnote .f-footer { display: none } .hovertip .footnote .f-heading { font-size: 80% } .hovertip .footnote .f-content { font-size: 110% } div.footnotes-footer { border-top: 1px solid #c6c6c6; border-bottom: 1px solid #c6c6c6; padding: 0.5rem 1rem; padding-bottom: 1rem; margin: 1rem 0 } /* 侧边栏 */ #side-bar { background: rgba(236,238,232, 0.9) } #side-bar:target { box-shadow: 0 0 4rem rgba(0,0,0,0.15) } #side-bar .side-block { border: none; background: transparent } @media screen and (max-width: 767px) { #side-bar:target .close-menu { background: unset; } } /* 分页 */ .yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav, .yui-navset .yui-content, .yui-navset .yui-navset-top .yui-content { border-color: rgb(var(--accent)); } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { color: rgb(var(--accent)); } .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus, .yui-navset .yui-nav .selected, .yui-navset .yui-navset-top .yui-nav .selected, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:active { background-color: rgb(var(--accent)); } /* 生存难度组件 */ #page-content .sd-container { --sd-border: 80,80,80; --sd-bullets: 80,80,80; --sd-image: 80,80,80; --sd-symbol: 60,60,60; --sd-text: 240,240,240 } /* PLS */ #page-content .pls { --dark-gray-monochrome: var(--accent); --pale-gray-monochrome: 246,246,246; font-size: 0.85rem } #page-content .pls-title, #page-content .pls-list { margin: 0!important } #page-content .pls-title { font-size: 1.5rem } #page-content .pls-list { font-size: 1.1rem } /* COCS / CECS */ .wrapper { --cocs-dark: var(--accent); --cocs-light: 240,240,240; --cecs-dark: var(--accent); --cecs-light: 240,240,240; } /* IETS */ .box { margin: 0; border: none; padding: 0 0.5rem; } /* 评分模块 */ #main-content div.page-rate-widget-box, #page-content .rate-box-with-credit-button { border: none; box-shadow: none; background: transparent; padding: 0 } #main-content span.rate-points, #main-content span.btn { background: transparent!important; } #main-content .creditButtonStandalone p a { background-color: rgb(var(--accent)); font-size: 1rem; padding: 0.25rem; } /* 其他 */ #account-topbutton { border: none } #login-status { background: rgba(var(--body-bg-color),.4); padding: 0.35rem 0.5rem; border-radius: 2px; } #search-top-box-form { margin-top: 0.25rem; }
生存难度:
等级 E
- 不稳定
- 敌意环境
- 少量实体
描述
Level UX-11是后室UX层群的第12层,于2120年9月15日被发现。
该层级的面积约为100k㎡,层级外观是一个标准的10km乘以10km的一个正方形。该层级的四周被群山环绕,主要由城市与平房,工厂与小部分的农田构成,这些建筑都被雪花覆盖。该层级拥有正常的昼夜循环,每日温度在10摄氏度到-1摄氏度之间。所以大部分时间,在这里居住的流浪者一般不会出门,而是待在家中。
经调查发现,白天的温度大多时刻高于15摄氏度,而等到夜晚,我们发现层级似乎有独立的宇宙。每晚有几颗星星寥寥的挂在天空中,晚上温度骤降,大多时刻不高于5摄氏度,本层级的主要区域有以下几种:
一名流浪者在远处拍摄的Level UX-11
居民楼
居民楼是本层级最为常见的建筑物,它们的高度都在30楼或30楼以上,分布密集。一栋居民楼大约拥有三百个房间,在这些房间中,并未存在家具,有些房间是空房间,有些房间只有一些已经破损的箱子,还有一些并未上锁的柜子。在这些箱子和柜子里面,流浪者可以发现一些物资,例如杏仁水,火盐,治愈水晶,皇家口粮等等。还有流浪者在房间里发现了桌子,上面摆放着极其稀有的物资——塔罗牌,但至今只有一份报告显示有流浪者在房间中发现了塔罗牌。
目前,居民楼中一些空房间已经被红星建筑队所改造,房间拥有正常的供水和供电。同时,B.F.P.F.也在该层级中售卖家具,B.N.T.G.负责本层级的贸易工作,他们买下了一些居民楼。并作为基地,开放贸易。
停车场
停车场往往位于居民楼的负一层,可以通过居民楼里的电梯或者楼梯到达,但居民楼从来都没有-2楼,如果你发现了通往-2楼的电梯或楼梯,请不要进入并远离。在停车场,这里的车位大约有11%停着一辆颜色未知,型号未知的车辆,这些车辆缺少零件,无法启动。
地下停车场
你可以在这里发现与Level 1相同的物资箱。但除了Level 1物资箱中的物资,你还有可能发现一些药物,例如阿莫西林胶囊与米诺环素,但这些物资相中同时有可能存在腰果水,流浪者应该注意辨别。我们同时还发现了好梦罐,烧焦的木炭,小麦种子和一些书本,这些书本过于老旧,已经无法追溯它们的来源。
工厂
如果你距离层级中心4.9km,继续远离层级中心,你会发现居民楼明显减少,取而代之的是一些看似已经废弃的工厂。在4.92km处,居民楼完全消失,在这些工厂中,大部分为食品加工厂,以及少量的生产工业用品的工厂,与一家发电厂。在食品加工厂中,你可以找到一些面包,但它们已经被冻得很硬,同时你还可以发现一些罐头食品,以及一些原材料和农产品。
原先拍摄到的被废弃的食品加工厂,现已改造
在工业用品工厂中,流浪者可以发现很多金属物品,以及一些散落的螺丝钉,螺帽等。这些工厂中没有正常的供电,只有停下的传送带和准备处理的一些加工品。在发电厂中,我们发现这间发电厂主要的发电来源是风力发电与太阳能发电,并且设施完好无损,可以正常使用。M.E.G.目前已经在居民楼中修建了电缆和电线杆,该发电站至今仍然是Level UX-11唯一的电力来源。
平房
在距离层级中心4.94km处,工厂和居民楼完全消失,取而代之的是平房。这些平房的高度最多只有两层楼高,里面没有物资,但有齐全的家具,以及正常的供水供电,流浪者可以在其中正常生活。这里同样存在Wi-Fi,平房的水管中流出的水已被证实是可以饮用的水,但还是建议流浪者先将水烧开再饮用。
农田
农田往往分布在平房附近,农田里面并没有农作物,或许是受气温影响,农田中的土大多是冻土,很难进行开垦。经过M.E.G.调查后,除了上文提及的小麦种子,本层级并不存在其他的农作物。所以M.E.G.决定引进外来物种,并在该层级试验种植。
至今,已有28株植物被成功引进并种植,例如在Level 48.1-C中生长的冰息萝卜,但有些外来植物曾影响了Level UX-11的生态系统,详见2121-5-1{λ}文件。
- Wooden Rossible:我们到了。
- Richard Krimen:这里就是实验田吧。
- Wooden Rossible:把东西拿出来吧。
- (打开箱子的声音)
- Richard Krimen:这些种子可都是希望啊!
- Wooden Rossible:先开垦田地吧,这些可都是冻土,得花上一段时间了。
*(一个半小时过去了)
- Richard Krimen:差不多了,挖冻土也太累了,赶紧播种吧。
- Wooden Rossible:好。
- (两人播完种后,随即浇上了水,直到第二天)
- Richard Krimen:不好了Wooden,你快去看看!
- Wooden Rossible:怎么了?
- (两人跑到了田里发现了一颗接一颗的蓝色萝卜)
- Wooden Rossible:这是什么种子?
- Richard Krimen:Level 48.1-C运来的冰息萝卜种子。
- Wooden Rossible:我们昨天播了多少种子?
- Richard Krimen:十几个。
- Wooden Rossible:这里现在有多少萝卜?
- Richard Krimen:大概,几百了吧……
- Wooden Rossible:我们先去把他们挖出来吧,看来这个萝卜不适合在这里生长,你先去上报。
- (两小时后)
- Richard Krimen:终于全挖完了,这些萝卜的根埋的也太深了。
- Wooden Rossible:是啊,不过这些萝卜个头还挺大的。
- Richard Krimen:我记得我们好像还在另一个地方埋了这个种子,赶紧去那边看看。
- (等到两人到达的时候,他们并未发现任何萝卜,只有一个刚破土而出的嫩芽)
- Richard Krimen:我记得这个种子是和昨天那一批萝卜一起种下去的,前后虽然差了一个小时,但是那些萝卜都已经长成熟了,这还只是个嫩芽?
- Wooden Rossible:不知道,我们还是等组织的专业人员来吧。
总结
最后,经调查人员发现,冰息萝卜在Level UX-11的生长速度与土壤酸碱值有关,目前,种植这种作物的最佳土壤在PH8.1~PH8.4之间,过酸的土壤会让这种萝卜生长过快,反之则越过慢。
群山
在上文就被提及,该层级是一个四面被群山环绕的层级,如果有任何人试图爬出这些山峰,每当到了山峰的顶端,都会不可避免的切入Level 93。山峰犹如一道巍峨的屏障,峻岭绵延,守护着这片土地,带来安宁与和谐。但在崎岖的山路上,流浪者还是应该务必小心,最好是在有准备的情况下探索群山,同时,M.E.G也同样在此处发现了珍贵的矿产资源。
矿洞
矿洞是Level UX-11的金属来源,这里可以发现铜矿,铁矿,锡矿,金矿等,同时这里存在一种特殊矿石——雪晶矿。这种矿石主要成分为二氧化硅(SiO2),是一种无色透明固体。这种矿石坚硬耐磨,密度为2.65克/立方厘米。目前,这种矿石已经被用来制作城市中的钟表,玻璃等,同时还用于冶金,可以作为催化剂帮助冶炼金属。
雪晶矿
层级特殊现象
暴风雪
不同于Level 790中的暴风雪,这种暴风雪并不会淹没流浪者,但“暴风雪”现象发生时,气温会骤降至负5摄氏度,同时刮起漫天大雪。如果流浪者没有及时做好防护,很有可能造成雪盲症,严重的会导致失温,出现“反常脱衣”现象。
在2124年2月3日早晨的暴风雪过后,一名流浪者在暴风雪发生时因为未做好防护,在雪地中昏迷。在送往Level C-114进行紧急抢救后,该流浪者身上多处出现二度冻伤,四肢与脸部出现三度冻伤。
冻雨
冻雨分为两种类型:冻雨(l)型来临前,天空往往乌云密布,同时由于气温过低,雨滴在落到地面的时候,会迅速结冰。导致路面湿滑。在此中情况下,流浪者仅需注意路面,防止滑倒
冻雨后的平房
在冬雨来临时,如果层级气温骤降至-5℃以下,雨滴会在空中结冰,形成冻雨(ll)型,类似于冰雹。在这种情况下,在空旷地带的流浪者都会因为被雨滴砸中,而造成受伤。目前,M.E.G.已经在市中心的一栋居民楼中建立了天文观察站,并在层级各处建立了广播。冻雨来临前一小时,广播会响起,此时流浪者应迅速寻找室内建筑,或是在一些屋檐下躲避。经检验,市区内的每一栋居民楼都可以抵御冻雨(ll)型,请各位流浪者放心。
春雨
据M.E.G数据库记载,在2124年3月4日时,Level UX-11内的气温迅速上升至25度,并下起了一场持续1小时的大雨。大雨过后,城市不再被大雪覆盖,雪水融化,带走了冬天的气息,随即迎来了春天的春暖花开。城市内部长出了树木和花朵,贯穿整个层级的维塔河第一次现了冰面融化的现象,层级也换上了绿色的衣服。只是在16小时后,一场暴风雪把冬天的气息吹了回来,此后人们再也没有遇到过“春雨”现象。
春雨的唯一一张记录
第“十一效应”
Level UX-11同样存在第“十一效应”,它使实体的行为发生变化。但在这里,第“十一效应”的对象不再只是无面灵和猎犬,其他在层级中出现过的实体同样受到第“十一效应”影响。
实体
无面灵
受到第“十一效应”影响,该层级内的无面灵与行人无异,它们也会有住房需求,同时,这些无面灵也学会了工作和贸易。在M.E.G管理的发电站中,有5%的员工是无面灵,也同样会有无面灵在居民楼中购买房屋,并改造成商店和流浪者进行贸易。
猎犬
受第“十一效应”影响,该层级内的猎犬与正常的狗并无大致区别,它们对人很温顺,不会对人有攻击行为。
地铁
经过M.E.G.勘探,本层级存在多个地铁站,并分1号线和2号线,一号线从层级的西南方驶向东北方。2号线从层级的东南方驶向西北方。“地铁”是一个温顺的实体,内部有制热空调。“地铁”会帮助流浪者们在Level UX-11穿梭,只需进入地铁站乘坐“地铁”即可。
地铁是本层级的特有实体,本层级大约存在近50辆“地铁”,流浪者在地铁上可以得到一定的心理安慰,同时一些心理疾病也可以被治愈。“地铁”有时也会与你谈话。你可以放心回答。
蓝荷花
蓝荷花并非像荷花那样生长在水面上,也不属于荷花的一种,它的得名来源于他们蓝色的外表。蓝荷花是在春雨后为一株幸存的植物,目前已经成功培养了这种植物,你可以在路边或是河边看见它们。如果你取下十片蓝荷花瓣,将他们放在杏仁水中浸泡一夜,即可得到月光水。月光水可以帮助流浪者在转换为另一种生物的时候停止转换。曾经有一位流浪者在快要变成悲尸的时候,使用月光水停止了悲尸的转换。
一朵盛开的蓝荷花
基地、前哨和社区
M.E.G.“冬至”基地
- 由4500名人员构成。
- 对流浪者持友好态度且愿意收留流浪者。
- 永远开放。
- 他们在此处搭建了一个天文台,用于观测宇宙。
B.F.P.F驻Level UX-11基地
- 由大约200人组成。
- 对流浪者持友好态度,但与M.E.G对立。
红星建筑队前哨
- 由大约400人组成。
- 负责改造被探索过的居民楼。
- 对流浪者持友好态度。
B.N.T.G.驻Level UX-11前哨站
- 由大约550人组成。
- 开放贸易,售卖农产品与工业品,愿意与流浪者交换物资。
- 负责一部分群山地区的矿洞开采。
速切玩家协会中转站
- 由大约20人组成。
- 为速切玩家提供食物和水,同时提供休息室。
Varis大酒店
- 由大约300人组成,其中包括前台和保洁。
- 他们在该层级建立了一座大酒店,约有1万间房屋供流浪者居住。在房间居住一晚需50ml杏仁水,配备有游泳池,棋牌室,温泉,餐厅。以及单人间,双人间。
Gillian医院
- 由大约150名医生和护士组成。
- 负责Level UX-11中的医疗保障。
凛冬市第一中学
- 由大约4000名教师工作者组成。
- 负责Level UX-11中的教育工作。
- 他们提供宿舍,并反对校园霸凌。
- 同时,该中学会提供16年的义务教育。
凛冬社区
- 由大约200万名流浪者与100万名无面灵组成。
- 他们大多居住在这个层级的居民楼区域,有少部分住在距离居民楼区域较远的平房,经常参与大型活动。并且他们在该楼层都有一份收入稳定的工作。
E.P.B.“霜晶”研究会基地
- 由大约300人组成。
- 在此地进行粒子对撞和其它大型实验,对流浪者较友好。
- 饲养了很多电仔。
C.L.A.D.覆写理事会分会
入口与出口
入口
- 在Level 1~Level 10之间找到一扇蓝色的门并进入。
- 在枢纽中找到一扇门上画着雪景的门。
- 在Level 14切入一片蓝色的树叶。
- 在Level UX-16找到一颗被雪覆盖的树并切入。
- 在Level UX-4发现一朵蓝荷花并切入。
- 在后室地铁中,在并未决定所去层级前,发现列车已经停靠站台,此时流浪者会来到Level UX-11中的“地铁”。
- 在Level UX-40.1中打碎一个花瓶。
- 在Level UX-47中找到一个由砖头砌成的正方体房子并进入待满5分钟,随即房子中的流浪者和物品会一起切入至这里。
- 在Level UX-3中找到一个编号为11的通风管道。
- 在Level UX-10中闲逛会来到这里。
出口
- 在已结冰的维塔河上呆满五分钟会来到Level C-75.3。(已失效)
- 砸碎维塔河上的冰面,潜入水中30秒,会切出至Level C-75。
- 找到一扇编号为“67”的门,会去往Level C-67。
- 天空中可能会有几颗星星连成一条路线的情况,跟随星星的步伐,会来到Level 250。
- 试图翻越群山会来到Level 93。
- 跳入一个红色的窗户会来到Level 11.3。
- 在雪中被埋没十秒会来到Level C-205。
- 找到一个蓝色的沙发并坐下会来到Level UX-43。
- 在一个已经腐烂的木屋中找到一块石头并切入,会来到Level UX-60。
- 在雪中找到一些沙子会来到Level C-288。
- 同时,曾有传言说在群山附近的一个山洞中深入洞内并跳入一个水池会来到前厅,经M.E.G勘探,此信息为谣言,请各位流浪者谨慎辨别。
- 本层级很多出入口都为非UX层群的层级,因此被很多组织作为一个联络UX层群内外的大型枢纽。
以下为M.E.G.秘密文档。请出示高级管理员身份证。
——认证通过
- 2125年5月1日下午3点
- Kecty Virtual:想不到M.E.G会让我来管理这个层级,Giesrch,有什么还没有完成的任务吗?
*Hall Giesrch:队长,据一些流浪者的报告,他们在崎岖的山路边缘发现了一个山洞,这座山洞可以进入,但是很深,就位于群山的山峰上。
- Kecty Virtual:好的,那你赶快派人去探索。搞不好是个新矿洞呢。
- Hall Giesrch:是。
- 2125年5月1日下午4:25
- Hall Giesrch:不好了,队长!
- Hall Giesrch:我们的一位探索员Sierc在探索山洞时意外埋在了山洞中,目前已经派出了一些人员救援。
- Kecty Virtual:怎么回事?
- Hall Giesrch:据其他探索员所说,山洞突然坍塌。洞内掉下来的石块把Sierc困在里面,当他们撤离山洞的时候,山洞的口已经完全被石头堵住,无法进入。
Kecty Virtual:好,我知道了。你现在多派些人手。一定要把Sierc救出,我立马汇报上级。
2125年5月2日上午10点
Hall Giesrch敲了敲办公室的门
- Kecty Virtual:进。
- Kecty Virtual:怎么样?Sirec有消息了吗?
- Hall Giesrch:还没有,不过我们收到了天文台的一封邀请信,说是要您去的。
- 2125年5月2日上午10:30
- 天文台工作人员:感谢队长您在百忙之中抽出时间来这里。
- Kecty Virtual:那你们今天为什么要找我来呢?
- 天文台工作人员:这主要是因为我们发现了一颗新的星球。
- Kecty Virtual:宇宙那么多星球,发现一颗有必要通知我吗?
- 天文台工作人员:这一颗的意义不一样。
- 随即他拿出了一张照片。
- Kecty Virtual:这是什么?你们说的星球呢?
- 天文台工作人员:您有没有看到远方有一个小点?
- Kecty Virtual:确实是有一个点,不过那是什么呢?
- 天文台工作人员:您亲自看一下吧。
- 随后他把望远镜调向了那个小点,并调好了聚焦。
- Kecty Virtual将眼睛贴到了望远镜上。过了几秒后,伴随着他惊讶的表情。他的眼睛离开了望远镜,看向天文台的工作人员。
地球
- Kecty Virtual:你们是怎么发现它的?
- 天文台工作人员:我们在一次偶然的机会中看见了一个疑似银河系的星系,随即就发现了里面的八大行星与太阳,其中就包括我们的家,经过我们的探测,这颗星球就是我们的前厅,它距离我们100光年。
- Kecty Virtual:这么远?那我们有办法回去吗?
- 天文台工作人员:这个我们还没有研究出……
但我们已经可以向前厅发射无线电波求救,所以望您批准这件事。
- Kecty Virtual:好的,我知道了,我会报告上级的。
- 2125年5月4日上午12点
- Kecty Virtual:关于Sirec,为什么还是没有消息呢?
- (电话铃声响了)
- Kecty Virtual:喂,你好,这里是Kecty Virtual。
- 电话的另一边:你好,这里是Level1的α基地,我们今日遇到了一位流浪者,他自称Sirec,说是Level UX-11的一位探索员,是否有此事?
- Kecty Virtual:对,对,对,他确实是我们的一位探索员。
- 电话另一边:好的,我们一会儿会把人送到。
- (电话挂断)
- 2125年5月4日下午2点
- Kecty Virtual:太好了Sierc,你是怎么逃出那个山洞的?
- Sierc:队长,我并没有逃出,只不过接下来的话,我希望您会相信。
- Kecty Virtual:什么话?
- Sierc:其实在那一天,山洞完全坍塌之后,我就一直被困在了里面好几个小时,因为外面被堵住了,我只好向里面走。直到我发现了一个水池,我本来想进去取水,可是后面的山洞也坍塌了,石头掉了下来,我只好往水里跳,然后,我就来到了一个我曾经去过的地方—前厅。
- Kecty Virtual:你……不是在开玩笑吧?
- Sierc:队长,我说的话千真万确,那里的水我尝过了,不是杏仁味儿的。还有您看这份报纸,我也是一位失踪人员。上面寻人启事上印着的这个人就是我,然后这里还报道了我回到前厅的事。但是他们都不知道我去了哪儿,又是如何回来的。
- Sierc:我本来想回去看看我的家人和朋友。当我了解清楚我的住处回去的时候,已经晚了。那里只剩下了一座空房子。所以我就录了一段视频,然后花了好几天的力气尝试重新切入后室,就从前厅又回到了Level 0,再到Level 1。我回来就是想向您报告,这个可以去到前厅的出口。
- 随即他递上一份录像
- Kecty Virtual在查看录像之后,大为震惊,并将此事立刻上报给了M.E.G高层。在经高层审阅后,已经确定了录像并非伪造,随后M.E.G决定让Kecty Virtual进行一项保密任务,由他担任队长。这个任务被命名为—返乡计划。
- 2125年6月18日上午8点
- 由M.E.G派遣的秘密队员到达Level UX-11,对当地的山洞进行了测算,预计需要一周的时间,才能清理完山洞。
- 与此同时,M.E.G也在许多层级中发起了一项投票,投票主要内容为:如果给你一个回前厅的机会,你会回去吗?投票的人员包括Level 1,Level 4,Level 48,Level C-28,Level C-117,Level C-185等的全体居民。在经投票后,一份报告被送至Level UX-11。
- Hall Giesrch:队长,这里有一封你的信。还有投票的结果出来了。
- Kecty Virtual:队长接过了信,询问他,结果有多少人想回前厅啊?
- Hall Giesrch:百分之九……
- Kecty Virtual:接着说,百分之九十几?
- Hall Giesrch:是只有9%。
- Kecty Virtual:什么?这么低?好吧,我知道了。这里有份机密文件,你回避一下。
- 随着一声关门声,Kecty Virtual打开了信件。里面的内容为:
- 我想你已经知道了结果,不过不用担心,因为这个结果并非能代表最终结局的一切,等到真正开通了前厅的道路,绝对不止9%的人会想要回到前厅,并且,我们同意你们对前厅发送求救信号。
- Kecty virtual:还好计划没有取消,太好了。(拨电话声),喂,是天文台吗,我已经收到了明确指令,立马发送求救信号。
——M.E.G.——
为了人类更美好的明天
- 与此同时,前厅的多处信号接收器都收到了来自于100光年外的一个信号。人们知道了后室的存在,也知道了失踪的人们的去处。天文台的工作人员将他们所知道的后室的一切告诉了前厅的人员,他们希望前厅可以派出搜救队,且也告诉他们,他们即将发现出口。仍有许多流浪者时至今日仍在失踪,可能是在一些危险层级遇到了困难,也同时请求前厅可以快速派出搜救队,尽快救助后室中的流浪者。
- 下午2点,有关后室的消息登上了各国的新闻热搜。人们纷纷议论后室。有人说自己听过传言,有人则是猜测那里的环境,同时,联合国也正在进行会议,决定是否向后室派出搜救人员。
- 那一天,我们本以为盼来了希望,可,我们却向深渊更进了一步。
- 地点:Level 1
- 摘要:一群不速之客的袭击
- 近日,Level1中出现了一群不速之客,他们携带了武器,并且全身武装,我看见Level1的一位探员本来是要过去接应那位流浪者,却被他一枪给……总之,它们已经对我们展开了疯狂的袭击。很多地方都已经被抢劫一空,我们的Alpha基地也已经沦陷,请求增援。
- 一天后
- 地点:Level 3
- 那群不速之客已经来到了Level 3,我们的Gamma基地已经完全失守。那群不速之客每人都携带有一把冲锋枪,足够的弹药以及一些手榴弹,闪光弹,催泪弹。目前我们已紧急撤往了Level 4,请求组织增援。
- 又过了一天后
- 地点:Level 10
- Level 10已经沦陷,那群不速之客占领并强行垄断了这里。目前仍有流浪者受困,而他们则是像疯了一般的收割Level 10中的麦子,他们至少有5000人,每人都配备有完好武器。目前M.E.G.已经派出了救援部队,正在赶往Level 10。
2125年7月4日下午3:00
- 机密会议记录
- 层级:Level(已编辑)
- 参与人员:M.E.G.现任监督者团队
- 监督者A:今天把各位召集于此,想必原因各位已经知道了,后室正在遭遇前所未有的袭击。我们不知道他们是哪里来的,也不知道他们为何要这么做。据目前报告显示,他们不是别的实体,而是人类,我们现在最紧要的任务,就是要赶紧找出他们的来源。
- 监督者B:据我收到的一些消息称,他们在各个层级内公开抢掠,Level 1的物资箱内几乎被抢掠的空无一物,箱子里面没有东西,他们就尝试去挖墙上的石灰,还有各个层级都遭到了破坏。我们不知道他们为什么要么竭尽所能的收集资源,但这绝对不是什么好事情。
- 监督者C:各位,我想我已经知道幕后黑手是谁了,他们有如此精良的装备,想必一定是有组织在背后帮助他们进行抢掠,而由于他们的人数过多,所以这必然是一个大型组织,后室里的大型组织没有多少,而且他们极其残暴。由此可知,他们很有可能是刃岭游击队的人。
- 监督者C:这可不一定,你忘了我们之前发现的Object 99了吗?
- 监督者B:但有在Level 76的目击者亲眼看到了,那些入侵者和U.E.C发生了冲突,双方甚至发生了枪战。
- 监督者A:我知道,但是这一次,如果他们真的是U.E.C的人,现在翻脸,无疑只会让他们陷入更危险的地步,因为这样可能招惹更多的组织,而且我发现了一个共性,这些人基本都是之前从Level 1先后转入到其他层级的,他们完全没有必要这样做。
- 监督者B:各位,我还得到过一样消息,据说在Level 3,有几个入侵者组成了一支小队,他们误将箱子里的火盐当是一种金属,试图先将其碾碎,然后冶炼,最终造成爆炸,几人被炸伤。而且我们并未发现有人使用过赫尔墨斯装置或瑞撒毒气。按理来说U.E.C不会不给他们这些道具,而且他们看样子并不熟悉后室。
- 监督者C:各位,我有点事,一会儿回来。
- 监督者A:我有一个想法,他们或许是今天才来到的后室的前厅人,因为某种原因,所以才来到后室。
- 监督者C:你猜的没错。
- 监督者C:各位,这个信封里面,是阿尔戈斯之眼成员刚寄过来的,里面告诉了我们一些信息,经过查验,这些人的身份大多都是前厅的退役兵,他们之前从未进入过后室。
- 监督者B:那他们为什么要来这么危险的地方?
- 监督者C:很多报告显示这些人都有前科。有些人曾经还是恐怖分子。他们自称是自己争夺资源,所以才来到这里,但他们的弹药与武器明显不像是一个人可以弄来的。
- 监督者A:会不会是前厅的人指使他们干的,毕竟我们之前已经将后室的消息传出去了。还告诉了他们这里有出口。后室的资源很多,而人们现在知道如何进入,如何出去,这里现在无疑就是一块新的领土。而有的国家要让他们争夺这些领土。
- 监督者B:同意这个说法。
- 监督者C:据一些消息称,他们之中的一些人并不认识,甚至打了起来。如果真的是有人在后面指使他们的话,他们不是一路的人,不如等待他们先打完,他们打累了我们再打。
- 监督者A:但是有个问题,如果我们真的把后室的出口打通了,这里只会源源不断的来这样的人,或许我们等不到他们打累的那一天。
- 监督者A:而如果后室的出口关闭了,他们出不去,在前厅的人无法得到任何的利益,他们终有一日会停止赞助这些人。
- 监督者B:所以你的意思是?
- 监督者A:放弃返乡计划。
- 监督者C:这不太好吧,那可是我们日思夜想的前厅啊。这一次机会错过了,我们或许就再也没有回去的机会了。
- 监督者A:我知道,但后室现在不只是我们的家。它原来也不只是我们的家。如果有些人要为了这些土地而争夺,甚至发动战争,只会造成更糟糕的后果。
- 监督者B:可我觉得也不至于这样,后室有些层级面积还是挺大的,例如Level 101,倒不如我们分他们点土地,让他们别打了。
- 监督者A:不行,这个计划完全行不通。我不知道你们有没有听过一个故事,曾经有一个人,上帝告诉他只要你用脚的丈量土地,最后都会归属于他,最终他因为不断的丈量土地而累死了。资源就摆在那里,即使我们不看中,也总有人会很看重那一小点儿资源,为此有些人也可以付出天大的代价。
- 监督者A:人类的贪婪是无止境的。前厅的阳光或许可以照亮世界,却照不亮人心,我们无法排除前厅会有人为了自身利益,以此来做出一些不道德甚至违法的事损害他人的利益。
- 监督者B:好吧,那我们开始投票,同意取消返乡计划的请举手。
- 三只手举了起来。
- 监督者A:好,全票通过。这件事我会转告Level UX-11的Kecty Virtual,我会尽早让他停止这个计划。
*第二天
- Kecty Virtual:监督者A大人,您来了,告诉您一个好消息,返乡计划已经完成了95%,我们很快就可以回家了。
- 监督者A:那还真是太可惜了,我来是想要告诉你一个消息。返乡计划需要被彻底取消,并永远封存在档案库里。
- Kecty Virtual:为什么?我们已经可以回家了!
- 监督者A把之前发生的事都说了一遍。
- 监督者A:所以这就是我们一致同意取消返乡计划的原因,后室正在遭遇前所未有的摧残,我们必须停止计划,并且要尽快修改Level UX-11的文件,同时取消对前厅的无线电联络。
- Kecty virtual:可是那样的话,我们真的可能再也回不了家了,M.E.G建立的目的不就是为了回家吗?可如今我们就要这样放弃……
- 监督者A:你研究过古汉语吗?
- Kecty Virtual:怎么突然问起这个?
- 监督者A:你知道“家”的甲骨文怎么写吗?
- Kecty Virtual:房子里面住着一个人。
- 监督者A:回答正确,那你觉得在这个字中是房子重要还是人重要?
- Kecty virtual:当然是人。
- 监督者A:所以这就是关键。我知道你很思念前厅,我以前也很思念,但现在想想,前厅只不过是这作房子,可没有人哪来的家呢?有人的地方才有家。我们对于前厅的思念,是因为我们对这个陌生世界的恐惧。可是如今,我们已经发现了很多的宜居层级,原本被笼罩的天穹现在也已被打破。这里,为什么不能是我们的家呢?只要有人类,有光的地方,无论是哪里都可以被称为家。家永远不是一个固定的地点,也永远不是一座房子,而是生命的体现。
- Kecty Virtual:好,我知道了。
- 监督者A:你现在也认同放弃这个计划了?
- Kecty Virtual:是的。
- 监督者A:那你还想家吗?
- Kecty Virtual:当然想啊,不过我想我和整个文明,已经有了一个新家了。
- 随即他拿起电话,拨打了正在清理石头的流浪者。让他们停工了。电话的那头似乎传来了许多不满,但没多久后,电话声消失了。
生存难度:生存難度:
等级等級 死区
- 不安全且不稳定
- 未被完全勘测
- 实体横行
如何使用:
[[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 UX-11是后室UX层群的第12层。该层级的面积约为100k㎡,层级外观是一个标准的10km乘以10km的一个正方形。该层级的四周被群山环绕,主要由城市与平房,工厂与小部分的农田构成,这些建筑都被雪花覆盖。该层级拥有不正常的昼夜循环,每日温度在1000摄氏度到-100摄氏度之间,这里并不存在任何生命,只有无尽的暴风雪和无尽的冻雨,层级中的雪不会融化。
实体:
雪花
雪花覆盖了整个层级,具有腐蚀性。雪花与人体皮肤接触后会迅速化成PH值0.8的水,流浪者将会全身被腐蚀,同时,雪花也覆盖了本层级的建筑物,大多数建筑物由于腐蚀已坍塌,有雪面的地上到处铺满了碎玻璃和混凝土。
基地前哨和社区:
由于本层级的特殊性质,本层级不存在任何基地前哨和社区。
入口与出口
入口
- 已被封锁。
出口
- 无。
Level UX-11 凛冬城市
生存难度:生存難度:
等级等級 终结
- 隐藏档案
- 受保护的层级
- 并未对外开放
如何使用:
[[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 UX-11相关时间一览
- 2120年9月15日,Level UX-11首次被发现。
- 2121年1月1日,对Level UX-11的改造和开荒由M.E.G.和红星建筑队带头正式开始。
- 2124年3月4日,首次“春雨”现象出现。
- 2125年5月2日,在层级内的太空中发现地球的踪迹。
- 2125年5月4日,通往前厅的门径被一名探员发现。
- 2125年6月18日,一次在流浪者间的调查开展,调查结果显示希望回到前厅的人数仅占9%。
- 2125年7月1至3日,来自前厅的入侵者们相继占领了主要大型层级。
- 2125年7月4日,M.E.G.监督者团队举行会议,宣布“返乡计划”取消。
- 2125年7月4日后,各组织停止了返乡计划,停止了天文台对于前厅的发送的无线电。
- 2125年7月15日,来自前厅的入侵者们由于战事的变化,甚至开始内斗,互相争夺领土。
- 2125年7月27日,Level 1被成功夺回。
- 2125年8月8日,通过一位刚刚到达Level 1的流浪者的口述,前厅已无人在相信后室的存在。而之前那些所有捐赠入侵者们武器和弹药,试图占领后室的人由于长时间的精力和财力,物力的大量投入,他们已经不再为该计划投入任何资源。
- 2125年9月,主层群的层级被相继夺回。
- 2125年10月20日,M.E.G第一次没有再发现过携带武器进入后室的流浪者。
- 2125年11月5日,入侵者们几乎全部被消灭,无人支持他们,他们已经弹尽粮绝。
- 2126年1月1日,最后一位曾经参与过恐怖袭击的相关人员在Omega基地被处决。
原作者为:fumeng_level 994
改动+加上版式:LemonChen
图一:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Snow
图二:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11P
图三:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Work
图四:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Stone
图五:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11House
图六:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Spring
图七:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Subway
图八:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11BlueFlower
图九:https://backrooms-intapar-wiki-cn.wikidot.com/local--files/picturesave/Level11Earth
« Level UX-10 | Level UX-11 | Level UX-12 »

