Level C-931 - “燃怨冰狱”
@import url("https://fonts.googleapis.com/css2?family=Zhi+Mang+Xing&display=swap");
:root {
    --global-white-color: 255, 252, 250;
    --global-pale-color: 250, 240, 230;
    --global-light-color: var(--global-dark-color);
    --global-dark-color: 140, 25, 0;
    --global-black-color: 60, 0, 0;
    --global-accent-1: 255, 25, 0;
    --global-accent-2: 180, 25, 0;
    --global-accent-3: var(--global-dark-color);
    --alt-color: 255, 120, 0;
 
    --light-ui-txt: var(--global-dark-color);
    --dark-ui-bg: 90, 15, 0;
    --bright-ui-bg: var(--global-dark-color);
    --bright-ui-txt: 255, 220, 140;
    --paper-bg: var(--bright-ui-txt);
    --paper-txt: var(--bright-ui-bg);
 
    --global-border-width: 0.145rem;
 
    --body-bg: 60, 25, 15;
 
    --header-bg: var(--bright-ui-bg);
    --header-txt: var(--bright-ui-txt);
    --header-hover-bg: var(--paper-bg);
    --header-hover-txt: var(--paper-txt);
 
    --topbar-hover-bg: var(--header-hover-bg);
    --topbar-hover-txt: var(--header-hover-txt);
 
    --dropdown-bg: var(--header-hover-bg);
    --dropdown-txt: var(--header-hover-txt);
    --dropdown-hover-bg: var(--header-bg);
    --dropdown-hover-txt: var(--header-txt);
 
    --openmenu-hover-txt: 0, 0, 0, 0;
 
    --sidebar-bg: var(--paper-bg);
 
    --heading-bg: var(--bright-ui-bg);
    --heading-txt: var(--bright-ui-txt);
 
    --menu-bg: 0, 0, 0, 0;
    --menu-txt: var(--paper-txt);
    --menu-hover-bg: var(--bright-ui-bg);
    --menu-hover-txt: var(--bright-ui-txt);
 
    --rate-bg: var(--global-bg);
    --rate-txt: var(--global-txt);
 
    --tabview-hover-bg: var(--dark-ui-bg);
    --tabview-selected-bg: var(--bright-ui-bg);
    --tabview-selected-txt: var(--bright-ui-txt);
 
    --toc-bg: var(--global-bg);
    --toc-txt: var(--global-txt);
    --toc-heading-bg: var(--bright-ui-bg);
    --toc-heading-txt: var(--bright-ui-txt);
    --toc-heading-hover-bg: var(--dark-ui-bg);
 
    --dark-block-bg: var(--global-black-color);
 
    --btn-txt: var(--link-primary);
    --btn-hover-bg: var(--bright-ui-bg);
    --btn-hover-txt: var(--bright-ui-txt);
 
    --bottombar-bg: var(--header-bg);
    --bottombar-txt: var(--header-txt);
 
    --banner-height: 19rem;
    --sidebar-width: 14rem;
    --content-width: 52rem;
 
    --dropdown-border-width: 0;
 
    --banner-title-size: 7rem;
    --banner-subtitle-size: .85rem;
    --page-title-size: 2.5rem;
 
    --header-title: "The Backrooms中文维基";
    --banner-title-1: "异途";
    --banner-title-2: "道门";
    --banner-subtitle-1: "一粒金丹吞入腹";
    --banner-subtitle-2: "始知我命不由天";
 
    --sidebar-ui: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar-icon.svg");
 
    --body-font: "Noto Serif SC", "Noto Serif TC", serif;
    --banner-font: "Zhi Mang Xing", "Zhuque Fangsong (technical preview)", var(--body-font);
    --header-font: var(--body-font);
    --title-font: var(--body-font);
    --ui-font: var(--body-font);
    --mono-font: "PT Mono", "Noto Sans SC", "Noto Sans TC", Consolas, monaco, monospace;
}
 
::-webkit-scrollbar {
  height: 0.5rem;
  border: none;
}
#top-bar > div > ul > :is(li, li:hover, li:focus, li.sfhover, li:focus-within) > ul > li > a {
  display: flex;
  align-items: center;
}
#login-status #account-options ul {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}
#login-status #account-options ul li {
  width: var(--user-drop-column-width);
  height: var(--user-drop-row-height);
  background: rgba(var(--user-drop-bg), .8);
  color: rgba(var(--user-drop-txt));
  transition: background var(--global-duration), color var(--global-hover-duration);
}
#login-status #account-options ul li:is(:hover, :focus, :active) {
  background-color: rgba(var(--user-hover-drop-bg));
  color: rgba(var(--user-hover-drop-txt));
  transition: background var(--global-hover-duration), color var(--global-hover-duration);
}
#login-status #account-options ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
#login-status :is(.login-status-create-account, .login-status-sign-in) {
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  height: var(--user-drop-height);
  width: var(--user-drop-width);
  font-size: var(--global-font-size);
  color: rgb(var(--user-drop-txt));
  text-align: center;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--global-duration), background var(--global-duration);
}
#login-status:is(:hover, :focus,:focus-within) :is(.login-status-create-account, .login-status-sign-in) {
  pointer-events: auto;
  opacity: 1;
  transition: opacity var(--global-hover-duration), background var(--global-duration);
}
#login-status .login-status-create-account {
  right: var(--user-drop-width);
}
#login-status :is(.login-status-create-account, .login-status-sign-in):is(:hover, :focus) {
  background: rgb(var(--user-hover-drop-bg));
  color: rgb(var(--user-hover-drop-txt));
  transition: opacity var(--global-hover-duration), background var(--global-hover-duration);
}
h1 { font-size: 2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em;}
h6 { font-size: 1em; }
table[style^="margin:0;"],
table[style^="margin:0;"] :is(tbody, tr, td) {
  display: contents;
}
#toc {
  display: block;
  width: fit-content;
  margin: .5rem 0;
  padding: 0;
}
#toc.floatleft {
  margin: .5rem 1rem .5rem 0;
}
#toc.floatright {
  margin: .5rem 0 .5rem 1rem;
}
#toc .title, #toc #toc-list {
  margin: 0;
}
.achbox-medals, .achbox-plaques {
  --wrap-bgcl-000: rgb(var(--global-pale-color));
  --wrap-bgcl-111: var(--wrap-bgcl-000);
  --wrap-bgcl-222: var(--wrap-bgcl-000);
  --text-shadow111: rgb(var(--global-dark-color));
  --text-shadow222: rgb(var(--global-light-color));
}
.sd-container {
  --sd-border: var(--global-txt);
  --sd-symbol: var(--sd-border);
  --sd-bullets: var(--sd-border);
  --sd-text: var(--dark-ui-txt);
}
.extrabox {
  --box-border: var(--global-border);
  --box-shadow: var(--global-border);
}
.wrapper {
  --cecs-dark: var(--global-dark-color);
  --cecs-light: var(--global-pale-color);
  --swatch-text-general: var(--global-txt);
}
 
#container-wrap-wrap {
    position: relative;
}
#extra-div-1, #extra-div-2, #extra-div-3, #extra-div-4 {
    position: absolute;
    z-index: -1;
    width: 50%;
    height: 80vh;
    background: rgb(var(--dark-ui-bg));
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: auto 100%;
    mask-repeat: repeat-x;
    mask-size: auto 100%;
}
#extra-div-1 {
    top: 0;
    left: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
}
#extra-div-2 {
    top: 0;
    right: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2a.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2a.svg");
}
#extra-div-3 {
    bottom: 0;
    left: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    rotate: 180deg;
}
#extra-div-4 {
    bottom: 0;
    right: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    rotate: 180deg;
}
#header {
    grid-template-rows: auto auto;
    top: calc(0px - var(--header-height) - var(--topbar-height));
    transition: top var(--global-duration);
}
#header:is(:hover, :focus-within) {
    top: 0;
    transition: top var(--global-hover-duration);
}
#header h1, #top-bar, #search-top-box, #login-status {
    position: relative;
    top: 0;
}
#header-extra-div-3 {
    pointer-events: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1rem;
}
#header-extra-div-1 {
    background: rgb(var(--header-bg));
    border: none;
    box-shadow: 0 0 6rem rgb(var(--global-black-color));
}
#header h2 {
    display: none;
}
#top-bar > div > ul > :is(li, li:hover, li:focus, li.sfhover, li:focus-within) > ul > li a {
    background: rgb(var(--dropdown-bg));
}
#side-bar {
    --global-border-width: 0;
    padding-top: var(--sidebar-width);
}
#side-bar::before {
    width: calc(var(--header-ui-size) * 0.7);
}
:is(#side-bar, #side-bar:hover, #side-bar:focus-within)::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--sidebar-width);
    background: rgba(var(--menu-txt));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar.svg");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 80%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 80%;
}
#side-bar .side-block.media > div > a {
    overflow: hidden;
}
#side-bar .side-block.media > div > a > img {
    position: relative;
    transform: translateX(-20rem);
    filter: drop-shadow(rgb(var(--menu-txt)) 20rem 0);
}
:is(#side-bar, #interwiki) .heading,
#side-bar .collapsible-block a.collapsible-block-link {
    padding: 0 .25rem;
    font-size: 1rem;
    font-weight: 900;
}
#side-bar :is(.collapsible-block-folded, .collapsible-block-unfolded-link) .collapsible-block-link:is(:hover, :focus) {
    background: rgb(var(--dark-ui-bg));
}
#content-wrap {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    background: rgb(var(--light-ui-bg));
    padding: var(--banner-height) 1rem 1rem;
    box-sizing: border-box;
}
#main-content {
    width: 100%;
    background: rgb(var(--global-bg));
}
#extra-div-6 {
    writing-mode: vertical-rl;
    font-family: var(--banner-font);
    font-size: var(--banner-title-size);
    line-height: 1;
    letter-spacing: -.15em;
    position: absolute;
    top: calc(var(--header-height) + var(--topbar-height));
    left: 0;
    width: 100%;
    height: var(--banner-height);
}
#extra-div-6 span {
    font-size: var(--banner-subtitle-size);
    letter-spacing: -.15em;
}
#extra-div-6::before {
    content: var(--banner-title-1);
    display: block;
    position: absolute;
    left: 50%;
    top: calc(50% - 8rem);
}
#extra-div-6::after {
    content: var(--banner-title-2);
    display: block;
    position: absolute;
    right: 50%;
    bottom: calc(50% - 8rem);
}
#extra-div-6 span::before {
    content: var(--banner-subtitle-1);
    display: block;
    position: absolute;
    left: calc(50% - var(--banner-title-size));
    top: calc(50% - 6.25rem);
}
#extra-div-6 span::after {
    content: var(--banner-subtitle-2);
    display: block;
    position: absolute;
    left: calc(50% - var(--banner-title-size) - var(--banner-subtitle-size));
    top: calc(50% - 6.25rem);
}
#breadcrumbs {
    text-align: center;
}
#page-title, .meta-title {
    font-family: var(--title-font);
    font-size: var(--page-title-size);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1rem;
    padding: 0;
    border: none;
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: calc(100% - 7rem);
    margin: 1.5rem auto 2.5rem;
}
.meta-title {
    max-width: calc(100% - 5rem);
}
.meta-title p {
    display: contents;
}
#page-title::after,
.meta-title::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: -2.5rem;
    right: -2.5rem;
    height: 0;
    border-top: 1.8rem solid transparent;
    border-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line.svg") 100% 25% 0 /1.8rem 3.375rem 0;
}
#page-content {
    padding: 0 1rem 4rem;
    box-sizing: border-box;
    position: relative;
}
.seal {
    position: absolute;
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: var(--seal-mask);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: var(--seal-mask);
    mask-repeat: no-repeat;
    mask-size: 100%;
    pointer-events: none;
}
.seal-1 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    width: 7.5rem;
    height: 7.5rem;
    bottom: -6rem;
    right: 1rem;
    rotate: -17deg;
}
.seal-2 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-2.svg");
    width: 2rem;
    height: 4rem;
    bottom: -3.5rem;
    left: 0;
    rotate: 24deg;
}
.seal-3 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-3.svg");
    width: 3rem;
    height: 5.5rem;
    bottom: -1.5rem;
    right: -0.75rem;
    rotate: 0deg;
}
.seal-4 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-4.svg");
    width: 3rem;
    height: 7.5rem;
    bottom: -6rem;
    left: 2.5rem;
    rotate: -3deg;
}
div.page-rate-widget-box .rate-points {
    font-weight: 900;
}
.creditBottomRate .page-rate-widget-box {
    border: none;
}
:is(.image-block,.scp-image-block) :is(.image-caption,.scp-image-caption) {
    background: rgb(var(--bright-ui-bg));
    color: rgb(var(--bright-ui-txt));
}
.yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav {
    border: none;
}
:is(blockquote, .blockquote, div.blockquote, [class*=blockquote], .quote) {
    background: rgb(var(--global-bg));
    color: rgb(var(--global-txt));
    border: var(--global-border-width) solid rgb(var(--global-border));
}
.shadow {
    box-shadow: 0 .2rem .5rem rgba(var(--global-dark-color), .4);
}
.dropshadow {
    box-shadow: 0 .2rem 1rem rgba(var(--global-dark-color), .3);
}
.warn {
    background: rgb(var(--bright-ui-bg));
    color: rgb(var(--bright-ui-txt));
}
.pattern {
    position: relative;
    z-index: 0;
}
.pattern::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
    background: rgba(var(--bright-ui-bg), .05);
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg.svg");
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 3rem;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg.svg");
    mask-repeat: repeat;
    mask-size: 3rem;
}
.line {
    box-shadow: inset 0 0 0 0.08rem rgb(var(--global-border)), inset 0 0 0 0.16rem rgb(var(--global-bg)), inset 0 0 0 0.24rem rgb(var(--global-border));
}
.seal-hr {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}
.seal-hr hr {
    width: 3rem;
    height: 3rem;
    margin: 0;
    border: none;
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    mask-repeat: no-repeat;
    mask-size: 100%;
}
.seal-hr::before, .seal-hr::after {
    content: "";
    display: block;
    flex: 1;
    height: 0;
    border-top: var(--global-border-width) solid rgb(var(--global-border));
}
.double-hr hr {
    margin: 0.2rem 0;
    height: 0.08rem;
    border: var(--global-border-width) solid rgb(var(--global-border));
}
.kong {
    margin-top: 3rem;
}
#main-content .page-tags,
#page-info-break,
#page-options-container,
#action-area {
    background: rgb(var(--light-ui-bg));
    margin: 0;
}
#main-content #page-content + div {
    padding-top: 4rem;
}
#main-content .page-tags span {
    border: none;
}
#page-options-container {
    padding-top: .5rem;
}
#page-info {
    width: 100%;
}
.page-watch-options {
    margin-bottom: 1rem;
}
#page-options-container .page-options-bottom,
#page-options-container .page-options-bottom a,
#page-options-container .page-options-bottom a#more-options-button {
    border: none;
    font-size: inherit;
}
#action-area {
    padding: 2rem 0;
}
a.action-area-close {
    top: 2rem;
}
#edit-page-form, #new-post-form {
    --light-ui-bg: var(--global-bg);
    --light-ui-txt: var(--global-txt);
    --btn-bg: var(--global-bg);
    --btn-txt: var(--global-txt);
    background: rgb(var(--global-bg));
    color: rgb(var(--global-txt));
    border: none;
}
.preview-message {
    top: 0;
    z-index: 9;
}
#footer {
    position: relative;
    border: none;
    box-shadow: 0 0 6rem rgb(var(--global-black-color));
}
#license-area {
    position: relative;
    --link-primary: var(--bottombar-txt);
    --link-hover: var(--bottombar-txt);
    --link-visited: var(--bottombar-txt);
}
 
/* 纹样标题-通用 */
h1, h2, h3, h4, h5, h6, :is(.bibitems, .footnotes-footer) .title {
    font-weight: 900;
}
.styled-title :is(h1, h2, h3, h4, h5, h6),
.styled-title :is(.bibitems, .footnotes-footer) .title {
    margin: 1rem 0;
    line-height: 1;
    border-left: var(--global-border-width) solid rgb(var(--bright-ui-bg));
    padding-left: 0.125em;
    box-sizing: border-box;
    width: fit-content;
}
.styled-title :is(.bibitems, .footnotes-footer) .title {
    margin-top: 1.25rem;
}
.styled-title.center :is(h1, h2, h3, h4, h5, h6),
.styled-title.center :is(.bibitems, .footnotes-footer) .title {
    border: none;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 5.445em);
}
.styled-title.right :is(h1, h2, h3, h4, h5, h6),
.styled-title.right :is(.bibitems, .footnotes-footer) .title {
    border-left: none;
    padding-left: 0;
    border-right: var(--global-border-width) solid rgb(var(--bright-ui-bg));
    padding-right: 0.125em;
    margin-left: auto;
}
 
/* 纹样标题-H1 */
.styled-title h1,
.styled-title :is(.bibitems, .footnotes-footer) .title {
    position: relative;
    max-width: calc(100% - 2.7225em);
}
.styled-title.center h1
.styled-title.center :is(.bibitems, .footnotes-footer) .title {
    max-width: calc(100% - 5.445em);
}
.styled-title h1::after,
.styled-title :is(.bibitems, .footnotes-footer) .title::after,
.styled-title.center h1::before,
.styled-title.center :is(.bibitems, .footnotes-footer) .title::before {
    content: "";
    display: block;
    width: 2.66em;
    height: 1.5em;
    position: absolute;
    top: -0.125em;
    left: calc(100% + 0.0625em);
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-r.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-r.svg");
    mask-repeat: no-repeat;
    mask-size: auto 100%;
}
.styled-title:is(.center, .right) h1::after,
.styled-title:is(.center, .right) :is(.bibitems, .footnotes-footer) .title::after {
    left: auto;
    right: calc(100% + 0.0625em);
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-l.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-l.svg");
}
 
@media only screen and (max-width: 768px) {
    :root {
        --page-title-size: 2rem;
    }
    .seal-1 {
        width: 5.5rem;
    }
    .styled-title h1,
    .styled-title :is(.bibitems, .footnotes-footer) .title {
        max-width: calc(100% - 2em);
    }
    .styled-title.center h1,
    .styled-title.center :is(.bibitems, .footnotes-footer) .title {
        max-width: calc(100% - 4em);
    }
    .styled-title h1::after,
    .styled-title :is(.bibitems, .footnotes-footer) .title::after,
    .styled-title.center h1::before,
    .styled-title.center :is(.bibitems, .footnotes-footer) .title::before {
        width: 2em;
        height: 1.125em;
        top: 0;
    }
}
评分: +17+x

生存难度:

等级 死区

  • 环境危害
  • 肉体损伤
  • 攻击性人类

Level C-931是后室C层群的第931层。

描述

由于Level C-931危险性过高,调查工作受到严重限制,层级调查计划停滞,只能根据探索者汇报整理层级性质。Level C-931外观显示为一片宽阔空旷的沙漠,地面沙化系数极高,几乎完全被沙砾覆盖,无岩石。沙砾细腻柔软且潮湿,徒手挖掘可能略微吃力。

当前无探索者观测到沙漠边缘,因此沙漠面积尚不确定,由于高湿度的紧实沙土不应形变,Level C-931整体地势起伏较小,仅有少量高度不足一米的小型沙丘在缓慢地被抚平或是被风重新吹起。

根据一部分幸存探索者收集到的样本来看,层级中的沙砾含水量较高,大部分是杏仁水,但也混杂了一部分血液和人体组织液。需要注意的是,在Level C-931中这些物质并不会因为低温而凝固,原因不明,带离Level C-931的样本会因为正常的温度降低而冻结。

层级的天空被大量云层所遮蔽,但仍然有光亮可以从云层后方透入,属于平行且稳定的直射光线,通常呈深红色,光照强度和射入角度完全恒定,因此Level C-931也没有昼夜变化。云层摩擦时可以产生闪电并伴随巨大噪音,这种声音在层级内非常频繁。

层级会不定期落下体型较大的冰雹,可以确定,这些冰雹是由杏仁水构成,在吞服之后可以像正常的杏仁水一样提供营养。与泥土中的水分类似,这些冰雹会在落到地面上一段时间后,在没有获得热量的情况下自行融化,原理不明。

万民之怨烈如火,万载寒冰亦可化。

特殊效应

凛冬效应

Level C-931的特殊效应之一在于层级的能量不守恒,尽管没有掌握确切数值,但是根据探索者进行的简单估算,燃烧产生的热能至少有50%“消失”而不是转移到周围物体上,这些热能的去向尚不明确,但可以确定没有出现在周围的空间中。

这使得在层级内通过燃烧物品获取能量的方式获取的热量极其有限,大多数基于热量进行工作的物品也会出现一定程度的故障,推测这一特殊效应也是层级常年保持在低温情况的原因。并且由于身体向外辐射的热量减小,衣服和其它保暖物品能提供的保温效果也变得有限,因此体感温度会更加寒冷。

怨火效应

Level C-931遵循一种目前尚未完全探明的机制,可以直接将“他人对自己”的愤怒、怨恨和痛苦转化为热量以提供身体所需,这并不是一种生理反应,而是确实出现的在没有任何摄入的情况下的体温升高,身高的速度和程度都和对方的数量状态呈强烈正相关。

但是转化的效率有限,通常而言,一个正常人能够产生的怨恨和愤怒不足以完全温暖一个探索者,并且同样作为负面情绪之一的恐惧完全不能产生热能,已经死去的探索者同样无法供应热能。这要求探索者们必须在保证对方生命的同时让对方尽可能的仇恨和攻击自己。

需要注意的是,探索者对自己的仇恨和自己造成的痛苦是能够转化为热量的,但是正常情况下,这样转化的热量不能做到自给自足,少部分可以做到自给自足的探索者的精神状态,已经发生了极其剧烈的变化,通常展现出强烈的自我毁灭倾向。

极少数情况下,少量精神状态极其扭曲或是大量对某人具有严重仇恨的个体,可能会导致一个个体在短时间内获得过高的热量,这将同样导致一种完全无法阻止的毁灭,因为本效应造成的体温升高将直接作用于肉体本身,通常而言的灭火和降温措施对于受到此效应影响的探索者完全无效,等待这位探索者的将会是一个漫长而痛苦的死亡。

实体

在层级内的地面上,有些时候可以见到一部分冻胶或是烧焦的实体遗骸,一部分探索者也有提到他们遭遇过一些实体如肢团、管间肢、奏穹蛛等,就目前来看,无论是发现的尸体骸骨还是募集到的实体都是仍然具有一部分生物结构能够被定义为生命的,没有发现过机械类实体。

这些实体也同样受到Level C-931效应的影响,但是大多数实体不能迅速理解为他人造成痛苦或怨恨需要怎么做,这就导致这些尸体很快就会被彻底冻僵,少数具有一定智力的实体则已经融入了这个层级成为依靠其他生物的怨恨和痛苦存活的存在。

物资

除了Level C-931天上会降落的杏仁水冰雹以外,层级本身不产出任何物资,进入者本身的物资很容易被其他幸存者抢夺或损坏,因此层级内最终可用的物资非常有限,几乎没有,层级中的人也更倾向于利用徒手或是钝器进行殴打。

基地、前哨与社区

熔炉城:

一部分幸存者在这里建立起了严苛的等级制度,通过尽可能的欺负弱者,来获得自己生存所需要的热量,出于保护读者精神状态的需要本文不能详细描述他们做了什么,但是建议任何人都应该不惜一切代价远离这个社区。他们中拥有自主行动能力的个体大概有20人左右,总人口大概有100人,由于总有人死或者被强行带入,他们的具体人数一直在变化。

共工观

异途道门的一个宗门,依靠宗教性的狂热来维持彼此之间的仇恨和热量,但有的时候仍然会外出掳掠,虽然比熔炉城安全的多,但是也不建议深交。目前他们大概有30个人,还会备用5~10个人作为热源。

入口与出口

入口
  • 很多室外层级,尤其是Level C-445,可能突然出现一片冷冽的冰雾,进入其中就有高概率来到此层级。
  • Level 10农田周围可能有一片沙质空地,躺在这里闭上眼睛再次睁开就会来到此层级。
  • 遵循心中突然涌起的狂怒切出会让你来到Level C-931,如果在回忆其他事物的时候涌起狂怒则优先到达Level C-931
  • [已摧毁]
出口

层级本身并不存在稳定的出入口,但是可以使用各种物品来切入到其他层级,尽管这些物品根据逃出的探索者所说“生效时间如冻结般缓慢”,但确实可用,确定要逃出的探索者需要在物品生效前的一段时间内尽可能保护好自己并且不要暴露可以逃出的事实。

需要注意的是,Level C-931会对探索者造成永久性的影响,当探索者离开Level C-931后,任何对探索者抱有愤怒或怨恨情感的人以及对探索者造成的痛苦都会迅速提高探索者的体温。这一影响不再局限于当前层级,即使仇恨者与逃出者不在同一层级也同样生效,因此绝大多数逃出者很快死于高烧甚至自燃。

汝身若烛,怨芯已燃不灭则无藏,机关算尽奔波千里终难逃焚尽之命。


除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License