: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://fontlibrary.org/face/fantasque-sans-mono'); @import url(http://scpsandboxcn.wikidot.com/local--files/typeface/Typeface-Ziticqtezhanti.css); @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC&display=swap'); :root { --theme-base: "black-highlighter"; --theme-id: "liminal"; --theme-name: "Liminal Theme"; --logo-image: url("http://sensenca-picture.wikidot.com/local--files/main/ONSLAUGHT_STATION_LOGO_NO_W.png"); --header-title: ""; --header-subtitle: ""; --body-font: 'Noto Serif SC', cursive; --header-font: 'ziticqtezhanti', cursive; --title-font: 'ziticqtezhanti', cursive; --mono-font: 'Noto Serif SC', cursive; --white-monochrome: 38, 1, 13; --pale-gray-monochrome: 87, 63, 58; --light-gray-monochrome: 247, 27, 104; --gray-monochrome:219, 0, 33; --black-monochrome: 255, 179, 46; --bright-accent: 255, 0, 0; --medium-accent: 214, 2, 9; --dark-accent: 239, 245, 191; --pale-accent: 255, 217, 112; --swatch-menubg-dark-color: var(--pale-gray-monochrome); --thing: 239, 245, 191; --swatch-topmenu-border-color: var(--medium-accent); --rating-module-button-plus-color: var(--light-gray-monochrome); --rating-module-button-negative-color: var(--light-gray-monochrome); --rating-module-button-cancel-color: var(--light-gray-monochrome); --rating-module-button-credit-color: var(--light-gray-monochrome); --link-color: 252, 236, 56; --hover-link-color: 255, 153, 20; --visited-link-color: 240, 0, 84; --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 { width: 100%; position: absolute; top: 0; left: 0; background-image: url("http://sensenca-picture.wikidot.com/local--files/main/ONSLAUGHT_STATION_BANNER-WORKS-PLEASE-GOD.png"); background-repeat: repeat-x; background-size: inherit; } } #container { background-image: url("http://sensenca-picture.wikidot.com/local--files/main/OS_BG_4.png"); background-size: auto 100rem; background-position: center; background-repeat: no-repeat; opacity: 1; margin:1.5rem 0; } 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; color: rgb(var(--dark-accent)); } #page-title { border-color: rgb(var(--light-gray-monochrome)); color: rgb(var(--dark-accent))!important; font-size: 2.5rem; } #header::before { content: ""; position: absolute; height: 90%; width: 100%; left: 0; top: 0; background-image: var(--logo-image); background-size: auto 8.5rem; background-position: center; background-repeat: no-repeat; opacity: 0.8; } #header h1, #header h1 a { font-size: 2.5rem; position: absolute; top: 0.05rem; margin: 0; width: 100%; display: flex; justify-content: center; z-index: 0; } #header h2, #header h2 span, #header h2 span::before { font-size: 1.3rem; position: absolute; top: 1.9rem; 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; color: white; line-height: 1 } h1 { font-size: 2rem; color:rgb(var(--dark-accent)); line-height: 1 } h2 { font-size: 1.8rem; color:rgb(var(--dark-accent)); line-height: 1 } h3 { font-size: 1.6rem; color:rgb(var(--dark-accent)); line-height: 1 } h4 { font-size: 1.4rem; color:rgb(var(--dark-accent)); line-height: 1 } h5 { font-size: 1.2rem; color:rgb(var(--dark-accent)); line-height: 1 } h6 { font-size: 1rem; color:rgb(var(--dark-accent)); line-height: 1 } 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 .owindow .button-bar a:hover, a.button:hover, button:hover, div.buttons input:hover, file:hover, input.button:hover { color: rgb(var(--swatch-tertiary-color)); } #side-bar .heading p, #side-bar .side-block>.collapsible-block .collapsible-block-link { color: rgb(var(--gray-monochrome)); text-shadow: none; } #top-bar>ul>li a:hover { color: rgb(var(--gray-monochrome)); } a.newpage { background: transparent; text-decoration: none } a.newpage { color: rgb(var(--newpage-color)) } blockquote { box-shadow: 0.2rem 0.4rem 1.2rem rgba(0,0,0,.25); } .styled-quote { background-color:rgb(var(--pale-gray-monochrome)); border-left: 0.5rem solid rgba(var(--gray-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.2rem 0.4rem 1.2rem rgba(0,0,0,.25); } .dark-styled-quote { )); border-left: 0.5rem solid rgba(var(--pale-gray-monochrome)); color:rgb(var(--white-monochrome)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.2rem 0.4rem 1.2rem rgba(0,0,0,.25); } .dark-styled-quote a{ color: rgb(var(--swatch-menubg-medium-color)); } .lightblock { background-color:rgb(var(--pale-gray-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.8rem 1.2rem rgba(0,0,0,.25); } .darkblock { background-color:rgb(var(--gray-monochrome)); color:rgb(var(--white-monochrome)); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.8rem 1.2rem rgba(0,0,0,.25); } .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); } .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover { background-color: rgb(var(--thing)); } #login-status a { color: rgb(var(--swatch-tertiary-color)); } #login-status ul a { color: rgb(var(--white-monochrome)); } #search-top-box input.empty:hover { color: rgb(var(--swatch-text-secondary-color)) } .customFont { font-family: 'Noto Serif SC', cursive; } .main-font{ font-family: 'ziticqtezhanti', cursive; }
生存难度:
等级4
- 不安全
- 不稳定
- 极少数实体
Level AS-410是后室AS层群的第411层。
环境描述
Level AS—410是后室AS层群中的第411层,昼夜与前厅一致。其绝大部分空间都极其平坦。
该层的土地尤为特殊。其上的裂纹随处可见,并将土地分为无数块状的区域。大多数土地都被骇人的猩红色浸染,只有部分土地呈现温暖的金黄色。
土地之上,只有几顶不同颜色的帐篷,其为流浪者进入该层级时所在地。以帐篷为中心,天空布满铅红,几乎无法见到云层。越远离中心,天空就会越发清澈,能够见到的金黄色土地也会越少。
“焦土”
焦土
被分成无数块的土地被该层的流浪者称之为“焦土”,每块焦土的大小不一,最小的仅能容纳一人站立,最大的甚至可以在上方建立一座工厂。
“焦土”分为两种颜色,并根据颜色拥有着不同特性。
当焦土为金黄色时,该块焦土会缓慢地自我生长,随着时间推移,金黄色会更加艳丽。
在1~3天后,该块焦土会隆起小丘,随后破裂,然后,物品会从破碎的土块出现。根据目前所有的记录,最可能出现的是可供一人饱腹一天的食品,包括但不限于:面包、水果、熟农作物、烤熟的动物肉、糖、盐、水等。除此以外,也会出现果树、床、衣物、剪刀等可供正常生活的物品。
在生长结束后,该块焦土会再次平坦,颜色趋于暗淡,并重复以上步骤。
在500平米内,最多只会有3片金黄色焦土同时生长。
当焦土为猩红色时,表明该块焦土已经吸收了足够的人类尸体。
焦土有着吸收人类尸体的功能,一具尸体置于焦土上,大约5分钟后便会完全溶解于焦土之中,此时焦土会立刻转变为猩红色。
猩红色焦土会在1小时内迅速隆起小丘,和金黄色焦土一样,它也会产生物品。
物品中最有可能的是可供至少3人饱腹一天的食品。同时也会产生如刀具、盔甲、药品等各种物品。
一块猩红色焦土至少同时产生两种不同的物品,而物品数量随着吸收尸体的重量提升而提升。
在产生物品后,猩红色焦土不会再次自我生长。只有再一次吸收人类尸体后,才会再次自我生长。
此外,猩红色焦土不可转变为金黄色焦土。
“军营帐篷”
以红色军营帐篷为例,任何进入该层级的流浪者都会从帐篷中醒来。
该层级存在着两顶帐篷,一顶为红色,一顶为蓝色。(注:现在又出现一顶黄色帐篷。)
帐篷之间会保持至少5km的距离,并会在每天结束后(默认为零点)改变位置。其会尽可能的远离其他帐篷,以及其他帐篷中醒来的流浪者。
帐篷内部的空间比外表扩大了接近十倍,最多可以同时容纳500名流浪者。其内部有着简陋的睡毯。进入此层时,流浪者会在睡毯下醒来。
实体
运兵车
运兵车
运兵车外表和前厅存在的运兵车并无他异,车身以绿色为主。运兵车会在大多数有着空旷地带的层级(除去level0和一些特殊层级)中出现。
在行驶中,如果在运兵车前方出现了流浪者,运兵车则会锁定此人加速行驶,直到彻底碾过流浪者或者无法前进为止。被碾压的流浪者会自动进入运兵车内部,失去自我意识,保持深度睡眠。
在运兵车内部收集足够多的人后,运兵车会转移到Level AS—410中,并将内部的人转移进帐篷中。
运兵车可以被攻击,但厚重的装甲难以被常规武器破坏。若运兵车被摧毁,其内部的人会醒来。但这并不会真正减少运兵车的数量。
基地,前哨和社区
M.E.G在此层设立了50人左右的基地,并与其他帐篷中的两方势力形成对峙。由于层级中战争不断,没有任何社区存在。
入口和出口
入口:在空旷层级(如Level AS—3)中出现的运兵车可以将流浪者带入此层级。
出口:用1000人份的尸体灌溉土地,会出现一条前往地下的道路,其可通往Level AS-35、Level AS-106等环境孤僻的层级。
从中心向外行走1000km左右,会发现一片麦田,其通往Level AS-419的守望者基地附近。
目前为止,记载中从该层级中切出的流浪者仅有两人,且切出方式各不相同。
以下为从该层级中切出的皮斯所写的的档案,记录了Level AS-410中最真实的景象,在阅读前请做好关于血腥、暴力、虐杀、泯灭人性的心理准备。
“你不应该对这里抱有任何幻想,年轻人。我只希望任何人都不要来到这个绝望的层级。”
失去双手之后,我时常会想起在那个地狱般的层级的时候。
我大概是来到Level410中的第三批人,当我被运兵车碾压,在帐篷里奇异苏醒的时候,我的身边不乏有着和我一样对周围感到陌生的人。
前两批人接待了我们,领头的叫做索尼亚,他稀疏的头发中很难再看到一丝黑色,白发苍苍,让他显得十分憔悴。
他告诉我们了许多事情,其中关于“焦土”的介绍为重中之重。如果你有看过关于这个层级中“焦土”的介绍,那么你就应该明白我在说什么。
算上我在内新来的十几人,这个帐篷里一共有着50多人。里面储备了一些粮食,但不多。我们很快适应了环境,并分为数个三人小队出去寻找可见的金黄色焦土。
和一望无际的草原不同,这里更接近超平坦的沙漠,那些千篇一律的黄土会让你对这里感到疲劳和厌倦。和我同行的两人一位叫做沃尔,30多岁,有着家庭。他将妻子和孩子推进了避难所,因此没能躲过运兵车,来到了这里。
另一位70多岁,是一位比索尼亚还要老的老者,时常跟不上我们,被甩开几十米的距离。我们一路上聊着天,从如何来到这里,到各自最喜欢的颜色,几乎成了无所不谈的朋友。我可以感受到他们的温柔与善意,即使在后室之中,他们的内心也从未被动摇。
物资是远远不够的,我们常常要走三十分钟的路程,才能见到一块土丘。里面给予的还不一定是食物,而是袜子、床单等根本用不上的东西。我们也不能离开太远,如果找不到回帐篷的方向,就会被孤独的困在荒地之上。也正是因为这个问题,帐篷周围几十里可以见到的土丘基本都被收集过,只能等着日子盼着那些土丘再次隆起。
更可怕的是苏醒的人一批接着一批,在我来到这里的第七天,人数就翻了个倍,整整113人。如果一块篮球场大小的土地可以养活一人,那我们就需要分配113个篮球场,更何况一块篮球场大小的土地也可能无法养活一人。
我们每天都能看到有人在抱怨没有分配到食物,整整一天没有吃到东西的人越来越多,那些饥饿的人大部分因为没有力气出去寻找食物而聚集在帐篷里。有人去偷去抢其他人的食物,内斗一天最多会出现五六次。也有人靠着他人的怜悯乞求到一点食物,勉强挺过这一天。
我们也没有好到哪里,我和沃尔一天只能在中午的时候啃上一次发硬的面包,其他食物要留在身上撑过下一天。那位老者已经两天没有找到过食物,全靠我和沃尔的食物才撑过去。那老者的手臂太细,上面布满黑斑,皮肤松软的像水一样,连骨头的轮廓都可以清晰的看见。即使这样,他每天要求的食物也只有区区一块面包,能够果腹就可以了。
有一天早上醒来,那位老者说他发现了一块土丘,独自离开了我们。我和沃尔在中午啃完了面包,忽然发现老者还没有回来。
当我们找到他的时候已经是第二天的事了。他像一截被风刮倒的老树干,脸朝着地,只能看到半边额头和薄成一张纸的耳朵。身体弯成了一张弓,只能看到脊背随着微弱的喘息,极慢的起伏着。
沃尔把老者抱了起来,似乎不相信人会这么脆弱,刚想喂给他一些水喝,就看到了老者那张脸:眼睛是闭着的,只剩一丝丝微弱的呼吸。他的嘴里面全都是土,全是土。周围全是坑坑洼洼的小坑,他的指甲缝里塞满了土,嘴里吃满了土,嘴唇最后的一点血色也被土黄代替。
我记得比任何人都清晰,大约两分钟后,他发出一声轻哼,喷出一嘴土在空中飞扬,随后再也没了呼吸。沃尔哭了,但他不敢哭太久,失去太多的体力会让我们接下来找不到食物。我只感觉心如刀绞,一句安慰的话也说不出来,只是那么静静的看着,好像以为这样就会让一切没有发生。
沃尔把老者放在地上,他十分自然的沉进土中,好像原本就是这片土地的一部分,现在要回归进去了。然后,那片土地转换成了血红色,隆起了小丘,里面是比任何时候都要多的粮食和物资,还有一把锋利的小刀。
这一切发生的太巧合了,我们回到了帐篷,将这件事情说了出去。而就在同时,有人传来了消息:在不远的地方,有一顶蓝色的帐篷,那里有数不清的粮食和金黄色土地,外面只有十几人看守着。
一切都是那么的顺理成章,索尼亚煽动了我们所有人,我们的贫乏都是对方所造成的,是他们抢走了原属于我们的粮食,才会导致悲剧发生。我们的人数数倍于他们,为什么不去夺回属于自己的一切?
几乎所有还能站起来的人都跟着索尼亚出发了,沃尔握着那把小刀,比任何人都更加愤怒。我想劝劝他,却又不知道该说什么,就那样放纵着他。
结果就是一场战争,对方被远征的我们吓退了,纷纷逃离了这里。我们冲进了帐篷,像丛林中的野兽一样疯狂,去抢,去杀。从那一刻开始,人的生命就不再是什么,只是我们可以吃到嘴中的食物。
那天晚上,索尼亚继续煽动着我们,将所做的一切描绘为一场伟大的胜利。沃尔大口大口的将烤熟的牛肉塞进嘴里,将那把染血的小刀挂在腰间。我就坐在他的旁边,疯狂的进食,这是我第一次来到这里后吃的如此饱。吃完后,我惊奇的发现,他很恐惧,眼神涣散,浑身在止不住的颤抖。我询问他发生了什么,他摇了摇头,说:
“我刚刚才想起来,帐篷里的人,嘴里面也有着土。”
从这天开始,战争就没有停下来过。
第二天早上,蓝帐篷惊奇的消失了,我们带着足够的食物和物资回到了红帐篷。
第三天,本该出现的运兵车没有出现,但我们没有人放在心上。
第七天,在我们的食物被吃光后,将近100人赤手空拳的出现在我们的帐篷旁边,他们之中还有着之前蓝帐篷外面逃跑的那些人。我们和他们厮杀了起来,索尼亚死了,对方只剩下几人带着尸体逃了回去,我们也只剩下了二十人。
沃尔几乎将挡在他面前的人都杀了,他似乎变了一个人,将那些尸体一个个都放在土地上,等待着资源出现。他变得冷漠,不再主动说话,大半时间里都忙着去收集食物,闲下来就看着某个地方。可能是脚下一片黄土,可能是还没有融进土地的尸体,可能是远处的虚无。
我也杀人了,在其他层级里面也杀过,但从来没有像在这个层级里一样感到空虚。我的脑海里不断回想着沃尔的那句话:“他们的嘴里也全是土。”,有时候也会想起那位老者悲惨的死状。
接下来运兵车还会来吗?也许现在食物足够了,但接下来肯定会不够的,我们已经和蓝色帐篷结下了仇恨,每当食物不够时就会出现战争,就会有人被杀。
之后过了很久,验证了我的猜想。运兵车一次次频繁的出现,人数超过了两百人的规模。过了几天,来自蓝色帐篷的三百多人围剿了我们,他们大多都空着肚子,面黄肌瘦,但都带着一股拼死的劲。我们输了,剩下的人和威尔跑了出去。
那天晚上将近零点,红色的帐篷出现在我们旁边,运兵车一次性运来了300多人,沃尔成了他们之中的领袖。
我尝试过去阻止沃尔挑起战争,但这没有意义。如果不去杀人,我们可以吃饱饭吗?不去杀人,我们就会饿死。
巧合般,我又来到了老者死去的那片土地上,黑夜之中,那片血红色依旧,没有丝毫隆起的迹象。
已经吃过人的焦土,是不会再生的。
我厌倦了战争,就像厌倦了这片焦土一样。
于是我去寻找切出的方法。三年以来,无数次的战争发动,我们人数最多的时候有五百多人,最危险的时候被六百多人包围,密密麻麻人让我们根本看不见外面的一切。沃尔一次次杀出血路,一次次杀进敌营。阴谋、诡计、人心,他几乎将一切能利用的都用上,变得和索尼亚没什么区别。
我试过很多方法,在拿到一把铲子时,我挖了整整三天,挖出一个可以将我和沃尔都可以竖着埋进去的坑,但什么都没有发生。我试过去撞地,去看天,去冥想,去做梦。最接近成功的一次是我扒上了运兵车的车头,随着运兵车向远方离去。我接近疯狂,以为找到了正确的方法,可以逃离这个人间地狱。但当困意袭来时,我不受控制的睡着,第二天醒来时躺在了红色帐篷里面,沃尔刚好撞到了我。
“没有成功吗?”
“没有。”
三年来,近百次尝试,我们之间的对话几乎没有变过。直到有一天,他找上了我。
“如果我们两边都只留下五十人,将运兵车运来的那些人都杀了当做食物,那就没有战争了。”
说出这句话的时候,他的眼神太冷了,比极寒中的冰窟还要冷,连我也感到一股刺骨的寒意。
我想拒绝,但我很想离开这里,或者更准确的说,离开战争。
于是一场大战之后,炮火连天,尸横遍野。我们两边都人加起来都不到一百人。而这时,沃尔向他们进行谈判,提出来这个想法。
“你个疯子!你还有人性吗?”
“嗜血的野兽,我们仇恨你,世世代代都会仇恨你!”
“你就是个披着人皮的恶魔,你根本不配作为人活在这里。”
谩骂声比比皆是,不止是对面,我们剩下的几十人也跟着骂他。沃尔波澜不惊,没有回应他们哪怕一句谩骂,只是自顾自的说道:
“战争已经持续三年了,这是一个不会改变的循环。如果你觉得杀掉那些还没醒来的人是恶行,那么在战争中,你们杀掉的无数人就都是有罪的吗?他们都是无辜的,都是为了活命,连土都会吃下去的人!”
“我们手上沾满了鲜血,没有任何一个人是无辜,和平只是在这片铅红的天空蔑视着我们,哪怕一分一秒都不会降临。如果不这么做,我们还要厮杀多久,五年,十年,直到我们老去,直到我们也被杀死为止。”
“我没有人性,蔑视生命,是因为在这个层级中生命根本不能被称为生命,它只是一个被定下价值的筹码,是可以被随意分配的资源。这里没有实体,但我们比任何实体都更加疯狂,更加可怕,都更像一只不会停下的实体。”
说这些话时,他整个身躯都在随着歇斯底里的嘶吼而止不住的颤动,双眼布满了血丝,显得如此疯狂。
所有人都沉默了,没有人去辩驳他。
于是短暂的和平到来了。
老人,女人,男人,哪怕是小孩,我们都没有停下手里的动作。在他们还没醒来时,用匕首轻轻的割破脖子的颈动脉,在血液喷涌而出后等待着他们的死亡。
有时候会有人苏醒,愤怒的大骂,绝望的悲鸣,然后被我们几人一拥而上,一刀一刀捅进胸膛里,双眼瞪大,随着呼吸停止,绝望的死去。但我们没有停下。
就这样过了一个月,帐篷内再也见不到原本的红色染料,只剩下彻底的血红。帐篷外面放眼望去,再也见不到一片金黄。
这时候传来了密集的踩踏声,我们看到了一百多人站在不远处,面黄肌瘦,站成几列,带着对食物的渴望看向我们。
那些手无寸铁的人被我们无情的虐杀,沃尔极度恐慌的向他们来时的方向前进,直到发现了一顶黄色的帐篷为止。
他停在刚好能看见黄帐篷的距离,那时候运兵车刚好停在那里,两百多人从帐篷中一一走出。他们同样饥饿无比,望向我们的方向。
“你们是谁?之前的人呢?”
沃尔没有回应他们。
但运兵车没有离开,而是开始了广播:
“脚下的土地里,金黄色的土丘挖开会得到食物。如果将尸体投进土地中,就会使土地血红,得到更多的食物。”
“你们之前派出的一百人小队,已经全被眼前的人杀光了。”
广播没有停止,只是不断重复着这一句话。
那些人已经按捺不住,握紧双拳慢慢靠近了我们,并且再一次质问:
“广播说的是真的吗,是你们杀了那些人吗”
沃尔没有回应,只是淡淡的用只有我能听见的声音说道:
“就让他炮火连天吧,这一切从来不会改变。”
紧接着就是战争,人与人厮杀在一起。
又是三年过去了,我每天都恶心的想吐,夜里回想起之前的一切,一切徒劳,只剩下战争。沃尔再也没有试过之前那个方法,那只会导致再出现一顶帐篷。而运兵车似乎有着自我意识,它的存在就是为了延续战争,打破任何形式的和平。
最后一次见到沃尔,是那辆运兵车忽然出现在我们旁边,并开始广播的时候。
运兵车用机械声广播:
“脚下的土地里,金黄色的土丘挖开会得到食物。如果将尸体投进土地中,就会使土地血红,得到更多的食物。”
“我们早就听过了…”
沃尔不厌其烦的打断广播,并狠狠踢了那辆运兵车一脚。
运兵车只是继续广播:
“如果一块土地被投入多具尸体,得到的物资就会更多。如果一块土地被投入很多很多,数不清的尸体,就会使土地被破坏,出现向下的通道。”
沃尔的身体僵住了。
他的手开始发抖,不是因为恐惧或是寒冷,而是那种绷了太久太久,突然被人用剪刀剪断了一样。
向下。
他盯着那辆运兵车,瞳孔收缩着,嘴唇微微张开,露出干燥的牙床。
“你听到了吗?”他转过头看向我。
他的脸上有一种我从未见过的东西,不是喜悦,六年的战争将所有的喜悦都夺走了。那是震惊,是一觉醒来,发现一切从未发生,自己躺在床上,旁边就是妻子和孩子的震惊。
“向下,我得下去。”
这句话不是对我说的,他站了起来,望向这片土地,这片他待了六年的、杀伐了六年的、失去了一切的土地。他的背脊挺直了一些,只是挺直了一些。
我站在原地没有动,风从我们之中吹过,卷起一些尘土。
“我不会去。”
他又转头看向我,很快。他的眼睛在我身上停留了几秒,没有问为什么,只是看着我。
我不知道该怎么告诉他。告诉他我杀不动了?告诉他我的手已经抖了三年,每一次挥动小刀时都得用左手按着右手?告诉他我每天晚上闭上眼睛,看见的不是死去的人,而是那些被我放进土里的人最后的表情——不是愤怒,不是恐惧,是一种和我一样的、旷日持久的疲惫?
或者什么都不用说。他看了我几秒,也许更久,然后点了点头。
那个点头很轻,轻得像他早就知道会有这一刻。
“那保重。”他说。
我们终究是两条道路的人,一旦下定决心,谁也不会回头。
但现在,我要离开这里了。
我背上大包,里面装着的是前厅里军队会吃的那种压缩饼干,还有很多的水,一些盐、糖。沃尔看着我收拾这些,我本以为他会阻止我拿走这么多东西。但他没有阻止,他的嘴唇貌似在动,像要说什么,但没有声音出来,只是静静的注视我,目送着我离开帐篷。
最终还是分开了,我独自一人向着未知的远方走去。
刚开始我还记得日子。
第一天,太阳从左边升起,从右边落下,第二天也是如此。我没带笔,就用手指在手心写字,写一个正字,一笔代表着一天。我并不知道正是什么意思,这个方法是那位老者教给我的。第三天画三笔,第四天画四笔。
到了第五天,我不想画了。脚下的土地已经不是血红色,但也没有金黄色,只是最普通的土色,除此以外什么也没有。记日子有什么意义呢?太阳升起我就走,有时候累了就休息一会,太阳落下后,困了就睡一会,然后起来继续走,有时候我甚至会忘了我在干什么。
后来我就不记日子了,只是那么的走。
水我喝的特别省,只有嘴里面太干,干到舌头在嘴里动也动不了,连一滴唾液都出不来的时候才会喝一小点。把那些水含在嘴里面,等凉水变温,等到变得和我的体温一样才会咽下去。压缩饼干每天只会吃指甲盖大小的一块,放在嘴里等它化开再咽下去。
后来走路的时候我就会想,去想沃尔,想他是不是杀了很多人,连自己最亲近的人都杀了,然后把尸体堆成小山。去想老者,想他满嘴是土的样子,那大概也是我的下场。去想那些死去人,想起一个个被我亲手杀死后,死不瞑目的脸。但总会想完的。我想了很久很久,直到什么都想过,什么都想不起来。
后来我就不在去想了。
在后来,东西不知道什么时候都吃完了。装着糖和盐的袋子都被我放进嘴里含过,连一丝丝刺激味蕾的甜味或咸味都感受不到。压缩饼干连一点点都不剩下。即使将水壶垂直多久,边缘都流不下来一滴水。
后来我只是走。
走到满脚水泡,双腿灌铅,就差失去知觉。鞋底早就被磨破了,接着是袜子,最后是脚底。但我已经没知觉了,就这么用歪歪扭扭的步伐走着。
后来我快死了。
我看向我的手臂,是根棍子,连皮都显得多余,只剩下骨头的棍子。我带了根绳子,把手臂死死勒住,不让一点血液流通。又走了几天,手臂变的紫紫的,失去了一切知觉。
我把手臂瘫在地上,看着焦土不断吸收这条死去的手臂,有了变化,变成了暗红色,有什么东西拱了出来。
我挖出了一袋面包,一瓶水,用一只手臂将这些收起来,继续去走。
后来我走不动了。
我摔倒在地上,最后一只手臂像是被折断的树枝,根本撑不起来。我终于感到乏累,感到疲倦,感到自己正在死去,感到自己正在融进这片土地,成为一个小土丘,成为一小块压缩饼干。
我闭上了眼睛,风从耳边过去。发出很轻的声音,有些清凉。
然后我闻到了麦香。
一开始我以为是临近死亡的幻觉,依然闭着双眼。渐渐的,麦香淡去了,这一切真的只是幻觉。
但又是一阵风吹来,告诉我麦香依然存在。这太不真实,我的心脏剧烈的跳动着,比任何一刻都更加激动。
我睁开双眼,灰蒙蒙的天没有变,身下那片焦土也没有变,但是,旁边是我从未见到过的颜色,是真正的金黄色:一片麦田。
我爬着过去,拼了命向那片麦田爬过去。手指插进土里,想再往前一点,可手好像被榨干了最后一丝力气,再也不能带着我爬动一步了。
我趴在那里,脸贴着地,死死的看着那片近在咫尺的麦田。
我伸着那只左手,微微张开五指,却还是碰不到,就这么静在空中一动不动。
然后,一阵风吹过,一株麦穗弯了下来,弯到了我的手上,饱满的麦粒一颗一颗挨着我的指尖,无比真实。
麦香还在,一直都在。
作者:vanilla everything1
我真的不会写)如果你在读的过程中能感到胸闷,就说明我没有白写。
临床与修改:Star4326
感谢日生王旋
« Level AS-409 | Level AS-410| Level AS-411 »

