Level ML-65(首次记录/未正式区域板块修改中)
: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 }

灰色公路

评分: 0+x

生存难度:生存難度:

等级等級 0

  • {$one}
  • {$two}
  • 极少量实体

Level ML-65是后室ML层群的第66层,亦为流浪者在ML层群将经过的第六十六段旅途。

描述:

Level ML-65,也被称作灰色公路。本层级外观上表现为已一条南北为走向1 的无限延伸的双向两车道及两侧面积无限大的树林。

双向两车道总宽度为6米。层级主体公路和树林均无法被目前已知方式破坏,层级时间永远处于白昼,少量的灰色阴云始终笼罩在流浪者目光最远处,少量落叶分布在公路边缘。公路上存在少量车辙,这似乎暗示着本层曾经有汽车或车兽的存在,然而,至今仍未有相关目击报告证实。行走于本层级的公路上,流浪者可能听到汽车的噪音、人交流的声音、狗的吠叫声等,这些声音从听觉上分析应源于远方,听到这类声音的流浪者都将其描述为“某种令人怀念的感觉”。但无论流浪者跟随声音行走多远,都不会发现任何汽车、动物。

  • 若流浪者在公路上发现了汽车、前厅中熟识的人或是在前厅中见过的动物,请立刻转身逃跑。牢牢记住,从你踏上后室之旅的那一刻起,他们已离你而去,正如你在单调的循环中早已失去了他们,任何没有成功逃脱旅途的困厄的流浪者都已离我们而去,不必在本层级悼念已逝之事物。

本层级道路两旁存在有密集的树林,树木的种类由于颜色的缺失已无从确认。落叶覆盖了大部分地面,从其堆积的情况可推断此层级被永久定格在暮秋时分,奇怪的是,尽管有树叶不断脱落,但土壤永远不会被覆盖完全且树梢上树叶亦未见减少。在对本层级土壤样本进行分析后,M.E.G研究人员在其中发现了胸膜液的痕迹2;除胸膜液外,土壤中亦发现少量的有机质、矿物质和较多土壤小动物的尸体,如:蜈蚣,蜘蛛,蚂蚁。这些尸体从外观上看已死去多时,但从未有过腐烂的痕迹。若流浪者将本层级的土壤、落叶带出,则这些物品将在数秒内消失,其下落尚不明确。

  • 若流浪者在树林里听到了人类幼儿发出的哭喊、嬉笑或追逐声,请立刻停止进一步探索并远离你认知中其声源应处的位置,此层级不是任何流浪者记忆的复现,是你在灰色的浪潮中被淹没的生活。目前对这些声源的定位均以失败告终,任何尝试跟随声源的流浪者都消散在了漫天的灰色浪花之中

在树林里探索得足够久,流浪者有极低概率发现破旧的木屋或农田,但使用无人机却从未发现过它们的存在,目前相关信息缺失,M.E.G不建议没有充足准备的流浪者深入探索树林,据常驻于此的特工推测,本层的异常现象可能与之相关。

C5ABCA29DC665512FD8B5BF5461EEB32.png

于Level ML-65主体公路拍摄的一张照片,可见层级内仅存在灰白黑三色

切入本层级的流浪者都会在公路上一处固定的地方苏醒。从该处向道路两端任一方向行进得足够远,流浪者总能发现一些年久失修的路灯、生锈的输电塔和无限延伸的电线,在路灯上偶尔可见牛皮藓广告,显示时间为前厅二十世纪八十年代至二十一世纪一十年代初,广告内容由于过于模糊而无法辨认。除路灯和输电塔外,部分流浪者在行进数十公里后报告称发现了小规模的建筑群3,然而这是流浪者们的幻觉。研究人员推断本层级的建筑可能含有轻微精神影响, 以至改变人类对建筑结构的认知。

  • 现有证据表明,在公路旁来源不明的建筑附近停留过久会使流浪者出现焦虑、恐惧等情绪,严重者会逐渐丧失理智直至与公路融为一体。若流浪者发现了它们,请勿做过久停留,除非你选择成为成为千万座钢铁支撑起的废墟的养料

本层级的WiFi信号强度较弱,且随着流浪者向公路或树林深处的探索而不断减弱。通讯设备一次仅能传输少量信息,无人机在起飞数小时后总会失联,原因不明。电子手表在本层级无法正常使用,然而非电子手表却能够正常使用,经过对比,本层级与ML层群大部分层级的时间流速相近。

特殊效应:

灰度处理

本层级主要的异常性质在于整个层级内只存在灰白黑三种颜色,类似前厅中经过了"灰度"4处理的照片(下文以“灰度处理”代称),即无论流浪者直接观察或者使用摄影设备,都无法在本层级中观察到第四种颜色。经M.E.G多次试验证明,无论是本层级向外部传输或外部向本层级内部传输的图片,其颜色均只存在灰白黑三色。若流浪者从外界带来非灰白黑三色的物品(包括流浪者的身体),在进入时都会受到灰度处理的影响。

此效应的原理、发生机制、解决方法都有待解明,目前唯一可以确定的是灰度效应不会对流浪者的身体造成实质影响。

随着驻足于本层级的时间变长,流浪者均报告了一种“长久的、难以化解的怅惘之感、颠沛之苦”,程度不一。关于这一变化是否由灰度处理效应造成,目前仍有待进一步观察。流浪者仅需离开本层级即可消除这一变化。

  • 若流浪者发现第四种颜色,请尽快朝着相反方向逃跑,若流浪者未意识到该现象,直到发现自己的四周都存在不该于本层级中存在的颜色,那么,请坦然接受本次旅途的终点吧,流浪者

资源:

沿着公路行走总能发现少量的杏仁水、皇家口粮、罐装牛肉;当流浪者独自一人行走得足够远且不携带任何通讯设备时可能会在路旁发现表面有多处破洞的汽车轮胎、镜面破损程度不一的后视镜、双肩旅行背包、泛黄的地图(然而其所指明的地点无法到达,且路上存在大量障碍)、写有未知种类文字的笔记本等物资。

输电塔周围会不定期刷新钢铁废料、电池、电线等物资。

路灯周围会不定期刷新大量杏仁水和皇家口粮、破旧的雨伞、表面覆盖有无法清除的灰尘的帐篷、烧烤架、可食用的果蔬或已切好的牛肉。

罕见情况下,在树林密集的区域会发现层级秘钥、无人机。

实体:

本层级只存在极少的钝人,且它们仅分布在树林密集的地方。如果流浪者在树林中发现了剧烈摇晃的树木,说明极有可能遭遇了钝人。

  • 本层级的人员伤亡仅可能是钝人杀害或营养不良,若流浪者遇到了声称“ML-65是个地狱”、“ML-65在腐蚀我们”的人类,请迅速逃离。

随着进入本层级的人员增多,亦有流浪者报告称沿公路行进得足够远会发现成群的笑魇、钝人,然而这一说法尚未被证实。

基地、前哨与社区:

M.E.G.ML公路守望者前哨

建在本层级流浪者切入苏醒之处,常驻人员七十人,其中包括十五名武装人员,致力于收集本层丰富的物资并探索公路、树林深处。

对流浪者友好,欢迎流浪者加入。指导流浪者在此长期生存或离开。

不开放贸易,无偿提供足够流浪者生活一周的物资。

定期派出小队探索公路和树林,救援遭遇危险的流浪者。

灰色篝火营地

建在离本层级切入处三公里的两个基地,南北各有一个,共八十五名流浪者, 致力于在此发展持续的社区。

对流浪者友好,欢迎流浪者加入。教授流浪者在此生存的必要知识。

开放贸易。救济丧失理智的人员。

定期展开对公路的探索,有武装人员会不定期深入探索树林以尝试解明本层的异常性质。

南部基地负责收集物资,北部基地主要负责探索公路和树林深处并配备有数名武装人员。

入口与出口:

入口:

  • 在Level 0中找到一扇灰色的生锈铁门,打开即来到本层级。
  • 在Level ML-0中无目的地行进足够远,切出墙壁即来到本层级
  • 在Level ML-64阶梯中向上或向下行走足够远的距离,有概率遭遇一处灰色的区域,切出即来到本层级。

出口:

  • 在树林中遭遇一处破旧的木屋或农田,切出即来到Level 0,然而目前仅有一例成功,M.E.G不建议流浪者在非紧急情况下使用该方法。
  • 无目的地不断尝试切出公路,会导致流浪者昏厥随后消失,当流浪者苏醒后会发现自己处于Level 0中一扇灰色的生锈铁门旁。
  • 切出路灯上的牛皮癣广告,有概率进入Level ML-2。
  • 沿公路向南行走足够远,且未折返,有概率发现一朵灰色的花被遗弃在公路旁,将其拿起后流浪者会陷入昏迷,随后会在Level ML-76的花海中苏醒。

流浪者,您有一份需要查看的附件
https://backroomssandbox-ml-wiki.wikidot.com/ml65


这只是个沙盒站而已哦~