Level S-90
: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 }
评分: +3+x

生存难度:生存難度:

等级等級 1

  • 安全
  • 生机盎然
  • 可建立持续性社区

Level S-90是后室S层群第90层,其首次被发现于2023年8月12日。这一层以其丰富的生态和适宜人类居住的环境而闻名。


描述:

pexels-photo-464316.jpeg

Level S-90最著名的一张图片。

Level S-90是一片植被茂盛的土地,拥有完整的生态链,包括草原、山丘和森林等地貌,其中,已建立起适宜人类居住的社区。层级中间有一条明显的分界线,将Level S-90划分为两个区域。这两个区域每12小时交替进行昼夜循环,但其中一区域总是与另一区域的时间状态相反,除此之外这两区域再无其他区别。

Level S-90记录每过去320至370小时后,层级便会如前厅中过去一季般的环境变化,这种变化所指定的季侯是完全随机的,例如秋季可能会直接转变为春季,夏季也可能会直接转变为冬季;此外,层级进行的环境变化也会使层级中的动植物产生特定行为,常见的行为如冬眠,繁殖等。在季侯变化之间,层级内也会不定时发生类似降雨的气侯变化。

Level S-90的边界由肉眼无法观察到的屏障组成,这些屏障无法被破坏,任何试图穿越它的流浪者皆会传送至其它层级。值得注意的是,当流浪者接近边界时,可能会产生一种幻觉,将屏障误认为是一片向外延伸且与边界内景观一致的结构。这种幻觉可以通过使用杏仁水来缓解。

根据以下记录可知,流浪者穿过屏障后所抵达的层级皆具有较高的危险度。因此,流浪者应尽量避免接近边界区域。


Level S-90事实上正在持续而有规律地扩展自身面积,而这一现象最早被M.E.G.在层级边境设立的前哨站成员在边境附近偶然发现的,而后,Level S-90中以M.E.G.为首的各组织开始针对层级边界区域展开了深入的探测工作。

Level S-90正在持续扩展,这种现象最早由MEG前哨站成员发现。记录可知,层级边界正以每180小时扩展两至三米的速度扩张,现如今,层级总体面积已扩张至203平方千米。新扩展的土地与原有土地特征一致,扩展过程类似电子游戏中的地图刷新机制:一道白光将边界所照亮,约2至3秒后,白光消失,层级扩展也便完毕。

地形

草原

pexels-photo-440731.jpeg

Level S-90平原地形

草原是Level S-90中最常见的地形类型。这里拥有肥沃的土壤,孕育着丰富的动植物生态。其中,花卉类包括著名的郁金香和牡丹,它们散发的香气在层级内极为浓郁。据记录,长时间接触这些花卉的香气能显著提高流浪者的记忆力和身体素质。动物种类主要以牛、羊、鹿、马等为主,这些动物在行为上表现出较大的温顺与顺从,不会对对其造成攻击的人类发起反击。

在草原上,常常会出现一些水坑,原因不明。大部分水坑中的水体受到了真菌污染,不建议直接饮用,而是需要通过净水装置进行处理。而且,草原上的动物似乎能够辨别水的污染程度,它们会自动寻找污染较少或无污染的水源补充水份。

草原地形在温度、气候、资源等多个方面皆适合人类居住。目前,已有多个组织在此地建设了基地,同时进行了大规模耕种,层级内人数总和已达1000余人。

森林

IMG_20240823_160109.jpg

Level S-90 无人机所摄下的一幅森林俯视图。

森林地形在Level S-90中分为两种类型。一种是由单一树种组成的森林,另一种则是由多种树木种类共同构成的稀有群系,包括杨树、桦树、楠树、槐树、梧桐树和栾树等。

这片森林树木排列紧密,树冠相连,有效遮挡阳光,使林内显得阴暗。这里的温度与层级内其他区域相比较为阴凉。林中潜藏着一些含有毒性且对人类存在敌意的动物,如蛇,蜈蚣,蚊子与蝎子等,此外,我们对于树林地形还尚未探索完全,林中或许存在未知危险,我们不建议任何流浪者毫无防备的去森林中探索。

在森林深处,分布着大量可食用的野果。这些野果大多无毒,可以安全食用。它们不仅能够有效缓解流浪者的疲劳感,而且在大量食用后,还能提升记忆能力。大多流浪者为了采集这种野果,甚至不惜去森林深处涉险。

山丘 

pexels-photo-131723.jpeg

Level S-90拍摄的山丘

山丘是Level S-90的一种地形特征,主要由沉积岩构成。这些山脉海拔较高,介于100至200米之间,地形起伏连续。山脚下生长着茂密的针叶林和少量灌木丛。岩石上刻有神秘的符号,含义未知。山丘内部蕴藏着丰富的晶制矿物资源,包括煤矿、铁矿、铜矿、铅矿和石英矿等,这些矿物可供挖掘和利用,如今,各大组织皆在山丘边派遣人员以开采这些矿石。


实体


现象

Level S-90中,各个季节会展现出各自独特天气现象。例如,春季呈现温和的气温,而夏季呈现高温和雷暴。秋季气温凉爽,树木将落红叶,而冬季降雪,水坑会结冰,温度也会降低。

此外,Level S-90还偶尔会出现一些前厅中的较为稀有的或有无危害性的天气现象,例如:

火彩虹:层级内较为罕见的现象,记录中共发生8次,持续有2至3小时,通常在下雨后太阳低垂于层级地平线附近时出现。,现象表现如名,彩色彩虹五种色光全部偏红。

晨辉:层级内较为常见的现象,仅持续半小时。一般在日出前或日落之后发生,与前厅中的晨辉现象基本一致,只是色彩上更呈淡黄色。

雾虹:层级内罕见的现象,持续时间一小时半,记录中共发生4次,是一种类似彩虹的现象,但被浓雾所遮盖而看不真切。

极光:层级内极罕见的现象,与前厅中极光保持一致,蓝紫色的主色,外观一般呈带状,极光现象持续时间一般8小时上下,记录中仅发生过一例,现象发生时,层级内电子设备几乎全部瘫痪。

冰雹:层级内较罕见的现象,共发生12例,时间持续一般一小时上下,其与前厅冰雹基本一致,不同的是,层级内冰雹呈圆形,半径在15至20厘米之间,遭遇冰雹现象后,所有相关人员应进行紧急于顶部有盖的建筑中避难。

炎雪:层级内极罕见的现象,共发生2例,发生季节一般于冬,这两次发生案例持续时间较大,一次仅一刻钟,一次有将近7个小时,炎雪现象发生时下落的雪呈红色,其因使接触到甚至是空气传播到的人类如同被火点着而得名炎雪,炎雪危害性较大,需让人员躲至封闭性水域,不过,炎雪不会对层级的结构,如树木,地面,耕田,房屋产生任何危害。

基地、前哨站与社区

M.E.G.季原社区

  • 共 628 名成员
  • 不开放贸易
  • 开发当地资源
  • 欢迎流浪者加入

B.F.P.F. 因哈加拉交易站

  • 位于森林与平原地形边缘
  • 共 104 名成员
  • 提供住宿
  • 开发当地资源
  • 长期开放贸易
  • 售卖的家具质量都很靠谱

F.O.H分部“显之城”

  • 人数未知
  • 传闻中建立于山丘之上
  • 信息极少
  • 为流浪者提供物资

B.N.T.G交易处

  • 人数估测在153人
  • 开放贸易
  • 欢迎流浪者加入

杰瑞信众“我主至上”

  • 人数估测在50上下
  • 信息极少

入口与出口

入口

  • Level 290有时会播放类似于Level S-90景观的电影,在这个时候切入电影屏幕可来到该层级
  • Level957中迷路有几率抵达该层级
  • 过于深入Level S-52时,场景可能会逐渐切换为Level S-90森林深处。

出囗

  • 切入层级内水坑可使你抵达Level S-36
  • 层级中森林与草原边界区域,流浪者眼前可能会突然长出一节竹子,靠近它可使你抵达Level S-65
  • 冬季时切入山丘区域可使你来到Level 93Level S-149
  • 在层级内直线行走有较低概率使你抵达Level S-453


« Level S-89 | Level S-90 | Level S-91 »

本站不完全遵守CC BY-SA 4.0协议