Level ML-13- “矿井”
: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 }
评分: +4+x

生存难度:生存難度:

等级等級 0

  • 安全
  • 稳定
  • 中立实体

如何使用:

[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]


class 处的可用参数包括以下内容,支持简繁体及英文输入。
English 简体中文 繁體中文
0 1 2 3 4 5 0 1 2 3 4 5 0 1 2 3 4 5
unknown 未知 未知
habitable 宜居 宜居
deadzone 死区 死區
pending 等待分级 等待分級
n/a 不适用 不適用
amended 修正 修正
omega 终结 終結

该组件支持简繁切换,如下方代码所示:

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]


lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

自定义等级

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]

使用 CSS 进行自定义:

你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:

[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;

/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */

/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */

/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */

/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]

旧版颜色:

如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]

Level ML-13是后室ML层群的第14层。本数据为该层级的疑似报告之一。

描述:

mmexport1699705400004.jpg

一张Level ML-13的图片,面前的房间为M.E.G.ML“矿井员工”基地

Level ML-13的主要区域呈现为一条狭长的矿井,分布着纵横交错的隧道与矿车轨道。该层级的温度一般维持在23℃,且整体较为湿润。Level ML-13的范围并非无穷大,其总占地面积约为127㎞²,且大部分区域均处于待开发阶段。目前Level ML-13总共有23处已开发区域,均被作为组织据点与采矿点。

Level ML-13的大部分区域内都充满了各类矿物,这些矿物不仅包括前厅内的矿物,还包括少部分后室内的盐矿和其他后室金属原矿。

具不完全统计,Level ML-13内共拥有2547条可以使用的隧道,这些隧道的中间均铺设有矿车轨道,其中部分已经因生锈或人为破坏而导致无法使用。隧道使用木头作为支撑着顶部,但这些木头并未起到任何支撑作用,同时,一些木板和采矿工具也会出现在隧道内。轨道使用钢铁制造,通常来说十分坚硬,但通过专业的工具仍可以破坏轨道。部分隧道的轨道上存在一些窄轨矿车,矿车使用“13层之钢”1制作,轨距为600mm,轴距为750mm,前后端各装有一对荧光灯。矿车内一般为空,但在探索Level ML-13仍有出现煤矿、铁矿和13层之钢的案例,值得注意的是,矿车的总数量是有限的,且不会因层级本身产生,故现在的大部分矿车均被探索过,并不存在矿物。

部分隧道两旁存在有一些内嵌式房间,其中大部分是人为建造的。大部分房间均来自流浪者的开发后作为居住地,内部因为流浪者的技术较差多数十分简陋。由中大型组织开发的房间一般较为整齐,但居住环境仍然较差。目前,已发现的Level ML-13自身的房间共有34个,其中可以分为4类:

员工宿舍:

该类房间共发现28间,其内部结构几乎一致。房间占地约50m²,地板铺有石砖,墙壁涂油绿色油漆,部分墙壁有损坏,裸露出岩石,两边共设置有10个双人床,双人床框架使用13层之钢制作,床被填充有棉花,较为整洁且具有良好的保暖性。该房间常被流浪者和小型社区作为据点。

储物仓库:

该类房间共发现2间,其中一间占地约为200m²,另一间占地约为120m²。仓库墙壁刷有绿色油漆,并无破损且散发出轻微的油漆味。仓库内放置有大量的架子,这些架子一般堆放有大量的物资,这些物资大部分是各类的矿物2、已加工矿物、采矿工具和服装。这些物资均会在矿物被取走后的72小时后重新出现。该类房间十分稀有,经各组织商讨后,这些房间不可被占为己有。

矿车制造间:

该类房间仅发现1间,占地180m²。墙壁刷有天蓝色油漆,较为完好。该房间连接有两条轨道,且轨道与进入该房间的隧道中的轨道并不相同。房间内装有两座机器,机器整体由钢铁制造,可用于自动生产窄轨矿车。具体使用方式如下:将80kg13层之钢放入材料区,随后按下开关,传送带将材料运送至机器内部,随后机器发出巨大的轰鸣声,20分钟后机器喷出巨量的蒸汽,随后一辆崭新的窄轨矿车被送入轨道。该机器不需要能源即可运行。两座机器十分巨大,基本占据房间所有空间。除此之外,房间门旁放有一张小桌子,使用橡木制作。

警备库:

该类房间共发现3间,每间房间占地10m²。军械库的墙壁并无任何装饰。房间内放置有存储武器的架子,架子一般存储有以下武器:

塑料警棍
防暴盾牌
AK74突击步枪3
电击枪
榴弹发射器4

除此之外,房间内还装设有两间储物柜,柜中一般放置有中量适配电击枪的电池和催泪榴弹。在名为“13号矿井003警备库”的该类房间内,M.E.G.ML探员汉斯在第三个武器架上发现有一把AK74突击步枪,同时在储物柜中发现三个适配该枪械的标准弹匣。该房间内的物资会不定时的随机出现。

现象:

暂无发现任何现象。

实体:

mmexport1699774797773.jpg

一张疲劳矿工的背面照

疲劳矿工

该实体为Level ML-13内的唯一实体,其外观呈现为极其瘦弱的、穿有矿工制服的人类,但在一些地方会让流浪者立即认识到其并非人类,这一般体现在其面部器官数量与大小。该实体一般手持采矿工具或两手空空,当流浪者尝试抢夺其工具时,该实体瘦弱的身体会以不可思议的速度攻击流浪者,故不建议招惹、辱骂该实体。该实体会使用俄语尝试让流浪者远离,但即使流浪者不做出反应,其也不会做出攻击流浪者。

疲劳矿工一般出现在大小不一的隧道和员工宿舍内,是后室ML层群中十分古老的实体,早在2000年M.E.G.ML刚刚进入ML层群之前就有少数对这种实体的报告。

基地、前哨与社区:

Level ML-13内有大量的前哨与社区,这里仅记载具有影响力与重要组织的基地和前哨。

M.E.G.ML“矿井员工”基地

  • M.E.G.ML位于ML层群的第八个主要基地
  • 共302名常驻成员
  • 负责指导流浪者、维护秩序和采集矿物
  • 占领有大量房间和隧道
  • 开放贸易

U.E.C.ML“窃矿者”前哨(已废弃)

  • 曾是U.E.C.ML位于ML层群中的一座重要前哨
  • 负责采集矿物于破坏、骚扰其他组织
  • 于2018年被M.E.G.ML摧毁

中立实体保护社区

  • 共124人
  • 保护疲劳矿工并帮助疲劳矿工
  • 与M.E.G.ML和拓荒者达成合作

拓荒者“采矿者”前哨站

  • 共87名常驻人员
  • 负责采集矿物并运回Level ML-103
  • 拥有直通Level ML-103的出口
  • 开放贸易

智慧实体联合总团第6前哨(情况未知)

  • 未知人数
  • 对其他组织发动袭击
  • 自2019年后消声灭迹

入口与出口:

入口:

  • 通过Level ML-1中的防空洞部分房间可以进入这里
  • Level ML-29的矿洞内可能出现矿井入口,进入入口后会来到这里
  • Level ML-4内的矿井会来到这里
  • Level ML-106内的矿洞可能会来到这里

出口:

  • 切入隧道内的水洼会来到Level ML-15
  • 进入十分宽阔的隧道最终可能使你进入Level ML-58
  • 任何废弃采矿区都有可能使流浪者进入洞穴类层级

附录

前日早晨,位于我怎么知道在哪5的13号矿井发生了坍塌,大量的矿工被埋没在矿井内。

当地消防员立即到达现场并展开救援行动,但至今一无所获。矿洞内450名矿工可能已经全部死亡。

其他矿井已经对隧道进行了加固。我们应当为所有牺牲的矿工默哀。

-Вечерняя Красная газета,1145.1.4.6

ML-13吧

你我皆是矿工
关于Level ML-13的诞生理论

LevelML13探险家: 各位,我发现了Level ML-13是如何诞生的了!

矿工那么可怜为什么打矿工😭:快说,火树。

LevelML13探险家:大家知道Level C-911吧,这个层级被认为是后室吞并前厅对证据。我认为Level ML-13也是这么来到,因为我在入口处找到了一份报纸!

矿工那么可怜为什么打矿工😭:啥报纸,说话能不能说完😡😡

LevelML13探险家:一张前苏联的报纸,上面写了前苏联的13号矿井塌了。

矿工那么可怜为什么打矿工😭:日期?

我是键政小鬼😋:好好好,岁月史书是吧,这么久报纸不得烂完?

LevelML13探险家:后室便是如此。日期烂没了。重点不在这,后来的救援队前去救援,但是什么都没找到!四百多矿工全死里面了!

矿工那么可怜为什么打矿工😭:虽然但是,既然矿井都切入后室了,那张报纸又是怎么进来的?

LevelML13探险家:可能是报纸在相同的位置切入了这里?

大煞笔是我:可以问问矿工(?)

LevelML13探险家:我听不懂俄语……

矿工那么可怜为什么打矿工😭:什么,你怎么知道我会俄语😋

LevelML13探险家:那麻烦去问一下,谢谢!


ML-13吧

你我皆是矿工
关于Level ML-13的诞生理论

矿工那么可怜为什么打矿工😭: 卧槽矿工跟我说话了

大煞笔是我:啊?我开玩笑的

LevelML13探险家:说什么了?

矿工那么可怜为什么打矿工😭:它说它想回家……



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