Level IF-307
: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 }
评分: +5+x

Sulfur:艹,聊天室里咋就咱俩人。

Silicon:你指望除了咱俩这加夜班的以外,还有人在这个时候进聊天室…?

Sulfur:怎么就我们加班呢,上面不当人。

Silicon:懒得喷。

Sulfur:话说你现在在处理啥。

Silicon:一点从B.O.P.那里汇总的文件,说实话我也不知道哪来的。

Sulfur:不会又是哪个倒霉蛋子进新层级了吧。

Silicon:看样子差不多,把这玩意写进数据库就是了。

Sulfur:教我写文呗。

Silicon:不。

Sulfur:咋滴,独门秘方啊。

Silicon:自己领悟去吧。

Sulfur:没事你把那份记录给我复制一份发来,我来帮你写。

Silicon:你什么时候人这么好了。

Sulfur:就是单纯想写。

Silicon:那行,发给你就是了。







音频日志 — Level IF-307 — Unknown

2026 年 7 月 19 日

0.01

photo-1564668272131-240de7c1c2c9?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

桥上。

嗯哼…我现在差不多又到一个跟之前差不多的地方了,不过我现在还是不知道这里是一个被记录的层级还是一个新层级,每次以为我自己能从这地方出来的时候总是会到又一个和之前差不多的地方,见鬼。

这里有些松树和桥,以及些在我脚下的溪水,要不是发现这里有水,我差不多就得渴死了,这里的水不像是杏仁水,味道比较淡,应该是什么普通的水。在水这边长了特别多的浆果丛,感觉不是蛮好吃的样子,我应该往前面山那边走。


11.17

行吧我感觉我快要死了,走了这么久山连点影子都没有,我就记得它刚刚还在我前面的,不管了,我现在也没有什么确信的方向,只能继续向前走。这破地方连路都没有,全靠我在如此陡峭的地方上攀爬。


13.42

photo-1623173812166-dd055c3fafa6?q=80&w=1931&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

溪流。

我怎么没早点发现这还有条小溪,小溪的源头似乎就在山上面,而且我顺着小溪走的时候山还在,看来我应该是走对路了。走这好是好,就是我总能听见一点异响声,像是,小孩的声音,好像还在笑一样,声音比较模糊,似乎是从远处传来的。刚刚吓了我一大跳,我路上捡了根树枝,不知道能不能当趁手的武器。

[风响,树枝摇晃的声音。]

怎么还有风啊,泼我一身水,真有点缺德了这天气我说,不过这里看起来是夏天,温度也不低,衣服估计一会就干了,没啥事。


18.47

photo-1603049854185-540fa6a4b9d1?q=80&w=2001&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

湖畔。

有点意思。山没找到,倒是找到一片湖,除了湖之外还有一些设施什么的,像是公园设施,些许这就是个公园呢。旁边有条看着还挺长的路,顺着走应该可以出去。


20.12

photo-1564161911440-ef0baaf49d9a?q=80&w=1850&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

门。

路似乎有尽头,没过多久我就发现末尾处有堵特别宽的石墙,看起来还蛮久了,上面长了很多爬山虎,爬山虎的藤蔓还给上面侵蚀出个口子,口子后面是一片灰白色虚无,啥也没有,被耍了,不过在这旁边,还有一扇铁门。

铁门像是一个教堂里面的,黑铁做的,上面还有点花纹,门应该是关着的,但是没锁,从缝里面还透点光,这光是暗红色的,红里透着黑,蛮渗人,从里面时不时传出点声音,我想我应该进去看看。


24.13

photo-1769436275855-6f3911ab11d5?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

教堂。

果真是一个教堂,不知道为啥,我看到的是漆黑一片,结果摄像机里拍出来的挺亮堂,我应该用摄像机看这里。这是个很长的走廊,两边有些像是档案库里的东西,一些放了很久的铁架子,架子上面摆着看着复古的书,还有一些卷轴什么的,看起来历史已经超过几百年了。

越往里走越阴森,里面装修得跟个陵墓似的,旁边密密麻麻刻的全是字和图像,图像都是些什么我看不懂的东西,一些扭曲的动物图像什么的,猎奇,以及文字还会动,真没见过这种东西,我感觉这里能给我吓死。


26.27

我还是进来了,前面有个石棺,透出点深蓝色的光,这又是个啥东西。反正进都进来了,我也不管死活了,我倒要看看这里面装的是什么。

[手抚摸石制材料的声音。]

这里面是一个人?看起来身体里面似乎有着某种力量,没有眼睛,但是我感觉祂在直勾勾地盯着我,怎么形容呢,就像是你独处于一座黑暗的房间之内,明明在这深邃黑暗中你什么都看不见,但你就是能感觉到那角落之中站着一个人。

[后退的脚步声。]

祂说话了,不是直接说的,是在我脑子里出现的,挺奇怪,像是做梦,祂好像只能听见我同时传达到脑子里的声音,现在我说的他都听不到。

你是谁?

你是第一个试图走这么远的。

淦,我听不懂这人在说啥,但是我感觉我能从脑子里看到这人。
那个在我脑子里的人是我,跟我一模一样。

很抱歉借用了你的形象,这样更方便些,
他们给了我很多的称呼,但大多称我为“被剥夺的尸体”

你是死的吗?

祂似乎笑了。

我活着,我必须活着,如果我死了,那它们便会消失。

它们是谁?

祂没有解释。

你该走了,顺着深蓝色的光走,不要回头。

[一股风从后面吹来。]

我总感觉我现在是被推着前进的。

[撞击声。]

我似乎撞到什么了。


28.03

我从这鬼地方回来了,这里像是…Level IF-3?,公园已不复存在,那道铁门仍在我身后,我不会再走进去了。

[录音结束。]









Sulfur:?你告诉我这是个啥,我怎么啥也看不懂。

Silicon:我没看,跟我说说呗。

Sulfur:写一半没了这东西。

对方正在输入…

Sulfur:诶哥们你动啊。

Silicon:我看原始文件呢,你先等会。

Sulfur:所以你找到这玩意的后续没。

Silicon:我想应该是有的,只不过被人截断了。

Sulfur:啥意思。

Silicon:我用网页时光机查了下,这玩意刚刚发过来的时候源文件标注有半个小时,你刚才看的只有28分钟多一点。

Sulfur:谁捣乱。

Silicon:不到。

Sulfur:那你有点头绪吗。

Silicon:没,现在只有咱俩看这玩意,我去已下载文件找找。

Downloaded Files Search

Level IF-307 Search

00283739272.pdf

保存时间:2026/7/19 17:32

Silicon:好像挖到了,时间跟上面一条离得不远。

Sulfur:让我康康。

Silicon:看去吧。








29.12

你还在我脑子里?

当然。

行吧,你到底想干嘛,我现在什么都不知道。

说来话长,你有这个耐心吗?

无所谓,反正我现在在外面,你只是在我脑子,说吧,你自诩的“被剥夺的尸体”究竟是什么。

我曾是一名神明,因后室的谋反而被剥夺近九成的部分,这一部分组成了这的大多层级,以及哪些层级的主人,剩下一部分便在这里了。

那我此前去过的那些地方,那些我所遭遇的人,实际上都是你的尸体的一部分…?

诚然如此。

艹,我真是一个傻逼,我现在不打算离开Level IF-3了,我觉得祂应该应该有一个陪着,这太他妈蠢了,祂就是一具不知道死了多久的尸体,一个失去力量的神,唯有我才是他的意识寄托,如果没了我,祂也醒不成,而我是谁,一个连自己的名字都记不清楚的流浪者。

我本想拒绝的,但我答应了祂。

祂也许遭受了孤独,并非仅孑然一身的孤独,而是被抛弃在一荒芜之界内仅一人的孤独。

我先陪祂说会话。








Sulfur:我要睡不着了,这样说来,我们一直生活在一具尸体里?

Silicon:也许是吧,这具尸体的灵魂已经被寄走了,剩下的部分我们无从知晓。

Sulfur:你说,我们要不要派点人去找找这个层级?

Silicon:行吧,我待会给爱丽丝或者硼打个电话。








From: Silicon_BOP@backmail.com
To: Alice_6991@backmail.com
Re: Level IF-307.

你好,Dr.Alice。

我已阅读完了此前发送的所有内容,根据后文,有趣的是,我们似乎发现了一个隶属于Level IF-307内的新层级,该层级似乎与后室内一名旧神明有之关联,特征为黑暗的教堂内部或档案库,希望在接下来的日子内总部可以派出更多人员调查该层级详细信息。

以致,Silicon。

From: Alice_6991@backmail.com
To: Silicon_BOP@backmail.com
Re: Level IF-307.

你好,Silicon。

感谢告知,我们将于明日派出探险队以探索Level IF-307。

以致,Dr.Alice。








采访记录

采访者:lastday
受访者:Prof.Black


采访者:我们现在可以开始了吗?

受访者:当然没问题。

采访者:录制从刚刚开始。

受访者:开问吧。


问题 1:里面有什么?


采访者:我们很好奇,Level IF-307究竟有什么?

受访者:一些植物什么的,跟前厅的种类差不多,还有一些设施,桥和道路一类的,在设施周围有一些铁丝网亦或是告示牌。


问题2:层级威胁是什么?


采访者:层级内存在特殊实体吗?

受访者:这个从没遇上过,不过倒是有些特殊效应。

采访者:特殊效应…具体指什么?

受访者:空间上的,有些山或植被会突然移动。

采访者:除此之外呢

受访者:再无它了。


问题3:特殊建筑?


采访者:还有什么?

受访者:很抱歉,我们探索了那么久,从来没见过一个像教堂的地方,我们也不知道这是怎么了。

采访者:有没有其他什么线索?

受访者:线索倒是有,在山上的某个地方有一块空缺,像是凭空多出来的,那里还有些植物的残骸,我想应该和教堂有关联吧。


问题4:特殊的光芒?


采访者:除此之外呢?

受访者:有些地方会散发着诡异的光芒。

采访者:光芒…?

受访者:深蓝色的,这种光在层级内无处不在。

采访者:你们接触过它没?

受访者:接触过,接触的时候人眼前的景象会突然闪过一些奇怪的文字。


问题5:文字内容?


采访者:文字内容具体是什么?

受访者:一些看起来胡乱的话,感觉像是被删去了一部分,不再完整。

采访者:口吻如何?

受访者:神神颠颠的,一会说自己是创世神,一会说自己死了,一会又说它已经离去了,跟教堂可能有关系?

采访者:感谢你对此次采访的配合。








LEVEL
IF-307

生存等级生存等級
2

逃离逃離:3/5
难以逃离難以逃離

环境環境:2/5
少量环境风险少量環境風險

实体實體:0/5
无敌对实体無敵對實體


Level IF-307是后室IF层群的第307层。

描述

photo-1564668272131-240de7c1c2c9?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

Level IF-307的桥梁处。

photo-1623173812166-dd055c3fafa6?q=80&w=1931&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

Level IF-307内的溪流。

photo-1603049854185-540fa6a4b9d1?q=80&w=2001&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

Level IF-307的一处湖泊。

photo-1765677707084-d2ac28ad4bf6?q=80&w=2090&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

一名人员正尝试接触蓝瞬现象所产生的光柱。

Level IF-307为一极其广阔的,由松林、山地与水域组成的结合体,被多座绵延的高山所环绕,试图绕过这些山峦的行为均是无果的。Level IF-307内温度维持于30℃左右,偶尔因特殊天气而骤降至6℃。

层级内主要植物类型为松树,松树大多生长于水域旁。松树叶下空隙间生长有低矮而又茂密的植被,苔藓、灌木丛均为此地的常见植物。灌木丛中长有红色浆果,浆果作为层级内少见的食物补给,味道略酸,水分较多。

大多公园设施存在于此,桥梁、道路等结构在层级内颇为常见,且紧密相连,延续万里。铁丝网围栏环绕于桥梁两侧,围栏上系有绳索,绳索连接着相隔溪流的两岸,流浪者可顺着其滑翔至河岸的另一端;告示牌、消防栓、秋千等设施分布于道路两侧,均可正常使用。

水域呈现为溪流与湖泊,水域常被落叶堆所环绕,常散发着植物气息。湖泊水面清澈见底,内部所储净水可正常饮用。水域底层堆有大量石块,石块边缘均因流水冲刷变得圆滑。

当流浪者深入该层级时,有概率会遇到一条土路,沿着土路走,最后流浪者会来到一处石坡,此石坡将于大约300平方米的区域消失。当流浪者朝一个方向前进时,此层级内的针叶树林会沿着流浪者前进的方向持续延伸,使得此层级边缘的山峰持续远离流浪者。

Level IF-307内特殊天气极为常见,多为暴风雨天气,暴风雨发生时,层级内的天空将会逐渐变得暗淡无光。暴风雨所肆掠之处,植物倾覆,水面可见些许断枝悬浮,溪流短暂断流。

层级内不存在稳定的昼夜循环,一次周期最短可至三小时,最长可至四个月。周期时长虽不稳定,但昼夜的时间比例始终为2:1。层级的天空始终无云,若暴风雨发生,则雨水会从天空之上凭空出现。

Level IF-307存在空间性危害,某些时刻,层级内的部分地区将会凭空出现缺口,这些缺口大多为矩形,与其同时出现的往往还有一极大的洞口或裂缝,透过缺口,流浪者可见其后方的灰色虚空。若流浪者遇到这些缺口,请务必直接离开。

蓝瞬Level IF-307内的标志性现象,呈现为层级在夜晚时随机出现的深蓝色光芒,为夜间时的自然照明。蓝瞬发生之时,整个层级都将变为深蓝色调,流浪者可见空地中出现极亮的白色光柱。

接触光柱时,流浪者眼前将浮现出一些使用该流浪者母语所书写的文字,这些文字的颜色总是会自适应背景,自动调整其颜色、大小与形状,内容完全随机,且无任何规律。在层级内的前哨建立后,该现象似乎显著减少发生。

在接触光柱后,流浪者将凭空产生一些不属于自己的记忆断片,这些记忆断片时长通常持续1~2个小时,画面极其不稳定,闭眼时,流浪者可沉浸其中,记忆断片的流速与现实似乎相同,沉浸其中将导致流浪者产生头痛症状。

基地、前哨与社区

B.O.P.前哨“疑虑”

前哨“疑虑”为一在2026年7月由B.O.P.派出的探险队所组成的前哨站,仅获许可人员可前往此前哨。“疑虑”主要负责研究Level IF-307性质。

入口与出口

入口
  • Level IF-3 - 辉光重城:走进一标有“国家公园”牌匾的自然公园。
  • Level IF-16 - 腰果水工厂:饮用一瓶淡绿色饮料。
  • Level IF-127 - 暮光车站:乘坐列车并进入一名为“公园”的站点。
出口
  • Level IF-3 - 辉光重城:Level IF-307直接切出。
  • Level IF-60 - 拉尤罗娜:Level IF-307环绕着湖泊走一圈。
  • Level IF-120 - 白寰:Level IF-307直视天空,直至看到白色鸽群。
  • Level IF-134 - 临海别墅区:Level IF-307的滑索上不慎摔落。
  • Level IF-240 - 永夜星城:坐上Level IF-307内极其罕见的木质躺椅。








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