Level C-1049 - “蜉蝣星”
评分: +32+x
: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 }

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

生存难度:生存難度:

等级等級 DU

  • 安全
  • 空间结构不稳定
  • 实体绝迹

描述

OvQYPb.png

Level C-1049街道的照片。

Level C-1049是一处目前边界未知的开放空间,其主体是一个以灰白色为主色调的城市。

证据显示,Level C-1049中的“城市”实际上是一种抽象的景观,不具备任何城市应有的功能性,包括按照正常逻辑设置的信号灯,城市绿地,可供通行的道路或可供进入的建筑入口。这些要素在Level C-1049的城市中通常相互杂糅,不具备实际意义。层级内不存在可见的天空,且无已知的昼夜更替,层级内被浓厚的雾状物质覆盖,降低了能见度。研究表明,这种雾所起的作用类似于放电的汞蒸气,雾气自身所发的,能量来源不明的光线是层级内的实际光线来源。

Level C-1049内,所有有颜色的物体都会受到层级内效应的影响,其表面的色彩和光泽会在数分钟内逐渐暗淡,被表面出现的类似薄膜干涉的彩色花纹取代,随后花纹渐渐消失,物体变为白色。透明物体和白色物体不受此过程影响。值得注意的是,这种作用很可能是在心理层面上的,只会作用在观察者的角度上。使用任何光学设备都无法验证受影响物体色泽改变的主观事实。离开层级后,该效应会立即消失。

Level C-1049层级内唯一具有颜色的物体是道路两旁随机出现的“红绿灯”。这些红绿灯不按照常规的交通规则设置,而是随机出现在任何属于人行道的区域。这些“红绿灯”并不会切换自身的指示灯颜色,只是保持固定的红色或者绿色。目前已知越靠近层级中央,亮起绿色“红绿灯”的占比越大。在这些红绿灯周围可能出现在本层级其他区域极其罕见的补给物资,其亮起的灯光可以恢复受视觉效应影响的物体对应的颜色。

“蜉蝣”结构

“蜉蝣”结构是Level C-1049最显著的特征。大量研究和实验证明,Level C-1049的一部分1并不处于我们熟知的三维空间内,而是处于四维,甚至更高维度的空间。与后室内常见的非欧几里得空间不同,高维空间遵循严格的几何规律,但难以被直观理解。所有Level C-1049内的高维结构统称为“蜉蝣”,而“蜉蝣”密集的区域被称为“蜉蝣网”Level C-1049的中心区域上空有目前已知的唯一一个蜉蝣网结构。

“蜉蝣”得名于该结构呈现的视觉特性。通常情况下,蜉蝣结构会成片出现在城市的角落,所占据的三维空间通常较小,不会超过1立方米。这些蜉蝣结构外层发灰,并会在眼中留下重影和类似飞蚊症的效果,难以被直接看清。内部的空间有可见的扭曲,四周的光线射入蜉蝣结构后会以完全混乱的角度重新射出。一个蜉蝣结构若在身处其外部流浪者的视野中暴露过久,则会主动蜷缩成大小类似于小型昆虫,在空中随机飘动的第二形态,直到迁移到视野之外。

在没有提前准备的情况下擅自进入蜉蝣结构是极为危险的,尤其是不属于蜉蝣网及其延伸部分的独立蜉蝣结构。类似于一个二维平面穿过三维立体时的情形,流浪者进入蜉蝣结构的一瞬间会产生强烈失衡感,随后身体将不可避免地向新出现的W轴方向扭转。在进入W轴的一瞬间,就已不存在完整离开W轴的可能。在蜉蝣结构内部,无法辨别空间结构的流浪者可能会从自己的身体内部穿过导致死亡,或是漂浮到2高维空间深处,无法返回。而在外部所能看见的,蜉蝣结构内部展现的正常三维空间将会在其内部视角中变为细线或直接消失,即便在此情况下找到离开的方式,强行离开蜉蝣结构,身体仍有可能受到剧烈挫伤或器官错位,导致严重的内出血。

OvQJLY.png

位于层级中央的“蜉蝣网”。

尽管蜉蝣结构极其危险,但Level C-1049目前已知仅有的稳定出口位于蜉蝣结构的内部。理论推测,Level C-1049内的所有蜉蝣结构都在更高维度空间中相连,但通过在层级内部游荡的小型蜉蝣深入整个蜉蝣结构意味着需要在危险且已知信息极少的高维空间中独立穿梭。因此,最安全的选择是进入“蜉蝣网”中。

“蜉蝣网”是Level C-1049中三维空间连通度最高的蜉蝣结构,位于层级中央的建筑物上方100m处,被迷雾遮掩大半,通常只能看到其下沿。“蜉蝣网”通过无数蜉蝣结构组成的丝线和层级内各个建筑物的顶端相连。在“蜉蝣网”内部观测时,这些密集的丝线将会成为导引,避免流浪者深入高维空间。当丝线的颜色发生明显变化,尤其是出现灰白色以外的颜色时,代表着此处联通着后室其他层级,此颜色即为层级内的代表色。切入其中便可以离开层级3。而从其他颜色的丝线穿过时会回到层级内随机的蜉蝣结构作为出口。

基地、前哨和社区

由于缺乏补给,层级内无法建立稳定的基地。一些流浪者在蜉蝣网下方的两栋建筑物内建立了临时据点,提供基本物资,并架设了梯子等辅助登上楼顶,进入蜉蝣结构的设备。

需要注意,在蜉蝣结构中不可能出现稳定的,符合三维感知的“正常结构”,也几乎不可能看到外观正常的其他流浪者。如果您确实观测到这一现象,证明层级内存在一种具有心理效应的异常实体,或层级正在对您施加心理效应,请尽可能远离。

入口和出口

入口

  • Level C-1049的入口被认为与后悔和某种怀念的情绪有关。当流浪者对自己怀念的地点,人物或事物特征足够熟悉时,他们没有进入此层级的可能;然而,当这种记忆随着时间,或其他任何可能的因素减淡之时,流浪者可能发现他们无法再回忆起该场景的具体颜色,只能用白色或灰色来填充。如果此刻终止对该场景的回想,经过较长时间后,记忆中的泛白色将会渐渐褪去。然而,如果流浪者仍无法自抑地想要探寻记忆明确已经模糊的细节,泛白色就会以更快的速度扩张,最终将记忆中的场景渐渐偷换为Level C-1049的城市景观。在一阵剧烈的头痛后,流浪者会切入此层级。
  • 流浪者对于Level C-1223的记忆更易引发上述的作用。如果流浪者对离开Level C-1223非常抵制,在离开其的瞬间会直接切入至Level C-1049
  • 一些层级内会随机出现一些异常的光学效应,例如光线的异常偏折,和如同融化般不断畸变的视觉场景。持续观察会致使流浪者陷入眩晕并切入至Level C-1049

出口

  • 观察结果显示Level C-1049已经逐渐无法支撑其内部蜉蝣结构的完整性。大部分蜉蝣结构的出口正在从Level C-1049自身重定向到后室的各个层级。尽管如此,Level C-1049仍对此过程施加了影响,使得出口处对应的层级与Level C-1049有至少表面上的相似性。目前最多的报告指向Level C-1123Level C-1305
  • 层级内红绿灯附近的空间稳定性较差,且蜉蝣结构会处于未知原因尽可能避开其周围。有较小概率在红绿灯附近切出至来时的层级。

附录


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