相关人士:金仙
: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 }

它们在生长。

血液流过你的每一处细胞,将它们变成零件,变成机械,变成缠绕在一起的完整结构。

锈铁在与血液对抗,正刺穿你的皮囊,撕碎你的脏器。将每块血肉都变成无用的废铁。

而那些寄生虫正在发育,腐生菌正在繁殖,它们势在必得般的要让你变成金属般的生物,又要让你以这副姿态死去。

若非病变在苛求着养料,若非自己陷入了这该死的平衡,你也不至于寄生于躯之栖所苟且偷生。

所以你总是愤怒着,想要去摧毁一切,这几乎将要夺走你所剩无几的理智。

所以,不如就这样拥抱疯狂吧,让那些抛弃你的家伙感到相近的痛苦吧……

— — //// — —


Image_1759467035575.png

对象于U.E.C.相关研究设施所摄的照片

【称号】:“金仙”

【姓名】:不可外传

【出没位置】:多数层级

【已知关系】:组织——“躯”前相关人员,现“异途道门”

【危害性】:极高


对象“金仙”(下称对象)曾为“躯”高层人员,代号Body-01-叁,切入前为前厅医学人士,切入后室后加入我方,因在████领域作出重大贡献被提名为Body-01指挥部成员之一。

于BTC.███年的一次外出考察中,对象在Level C-████遭遇了REDE-12的侵袭,在层级完全被侵占的情况下,对象侥幸切出至Level 3,并在身体异变前以某种方式接种了细胞之血,以此成功让身体开始金属化,与REDE-12的异常增生能力产生了平衡。

这一结果是难以复刻的,根据后续的研究,我方猜测当时对象所感染的REDE-12尚处于感染初期,在及时处理过后才勉强被压制。但即便如此,由于REDE-12的催化,细胞之血的转化速度也大幅度增加,导致其应该在接种细胞之血的24小时内就完全丧失了理智。

通过残存的定位蜱信息,我方于██月██日成功搜寻到了对象,此时对象已基本失去了正常形态,成为了血肉、器官与活动器械的结合体,同时生长出了大型REDE-12个体的裂口。其通过蠕动和临时生成的履带进行活动,并以此方式吸收沿途的细胞之血与实体血肉,其活动的周边环境则散逸着低浓度悲伤之水水雾,这导致了该区域危险程度大幅度增加。

进行周边清理并在确认对象对任何生命抱有敌意后,我方迅速寻求了其他团体的协助。在当地U.E.C.阿瑞忒游击队及盟友有识血肉的协助下,我方很快调集了大量细胞之血,大幅度压制了REDE-12影响,并泼洒了特定腐金葡萄,最终彻底制服了对象。

作为报酬,对象被交付给U.E.C.方面研究,但由于细胞之血的侵蚀逐渐占据优势,对象很快恢复了一定程度上的自主意志,可以对外界刺激作出反应并可以通过影响电子设备以向外传达讯息。

这些讯息包括了:

躯 血肉 我 抛弃

你 无法控制 永远 滋长

摧毁 我 大脑 思考能力

金属 切割 腐朽

寄生物 增生 我 平衡

压缩 箱庭世界 奇点

基于先前的经验,U.E.C.方面擅自尝试提取对象体表残留的腐金葡萄,并进行了简单的培育与改良,试图让其对细胞之血生成结构有更为有力的腐蚀。

我方自有识血肉处获取该情报并得知该尝试已有明显成效后准备采取必要措施,但于█月█日,即获取该情报的█小时后,对象“金仙”确认已经脱离并摧毁了所在设施,原因不明。

此后,对象活跃于部分危险层级,并逐渐建立了一个“异途道门”宗门 ,自身则成为其中的被崇拜者,被称作“金仙”或全称“玄肉赤械金仙”

有关上述宗门的内容详见附录。

— — //// — —


你捧起了那个沾满了铁锈的标识,它传出的气味让你分不清是铁锈味还是血腥味。

拿上它,如果你愿意的话,我会给你接种一个定位蜱,它会让你知道应该去c156的哪里

可我都到了那边了,我为什么不让躯的人自己给我接条手臂?

我大不了加入他们。

披着鲜红色斗篷的人看着你,只是轻笑了一声,依然用平静但似乎卡了异物的嗓音说着:

你不必急于拒绝,等你面见那位,你会改变想法的。

“你会和我一样拥有强大的力量,源自后室本身的力量……

— — //// — —


附录:相关团体

一般认为,任何一个REDE-12的感染体都是无法被消灭的,哪怕金仙所受感染中的REDE-12已经落于下风,但其仍然存在。它不仅在尝试继续增生,同化细胞之血的结构体,另外也在尝试感染外物,哪怕它已经缺乏感染层级的能力。

金仙脱逃以后,我方推测可能是U.E.C.方面改良的菌种对细胞之血的压制导致了对象自主意志的进一步苏醒,在拥有一定智慧之后不再愿意受到掌控。同时,金仙一定于其中获取了灵感,试图引入其他变量影响体内各寄生物的平衡。

受这样的影响,金仙于出逃过程中渐渐感染了一批拥有自主意志的个体。这其中包含曾为有识血肉敌对势力的人员,因故受伤而主动感染的流浪者,此外更多为被动感染者。

IMG_20251007_230146.png

我方于突袭“天衡宗”相关据点后搜索到的该团体相关标识,可见明显锈珊瑚侵蚀痕迹。

这些感染者将金仙视作最高领袖或信仰对象,并成立了名为“天衡宗”的异途道门。主张血肉为阳,机械为阴,二者实现平衡,阴阳调和即能修得大道。

金仙默许了该团体内人员的存在而非吞噬他们。可能是由于其行动愈发受限,其不得不让其他个体寻找可以影响细胞之血的外物,而这些人员的确做到了此事。

— — //// — —


Level C-156 边境哨站A57


“很令人惊讶不是吗?”

“躯敌人的据点在躯的总部里面。”

那个男人仍然在你面前,这次他脱下了斗篷,脸看着还算英俊,就是过于苍白,缺乏血色,不够真实。

“这是那位的指示。”

“祂渴望复仇,所以祂在这片血腥的土地。”

而最近我们被清洗的很厉害,像我们这样还留着的,多半藏的很深。

复仇?我倒是不希望成为复仇的枪。

呵呵,我们都是祂意志的一部分

你会明白这句话的,来,定位蜱在这里……

男人拿着定位蜱的手突然停止了。

你闻到了铁锈的味道,看到对面那位的脸上开始闪烁,如同皮下长出了晶体管。

他的脸上开始凹凸不平,但他没有痛苦,脸上似乎是一种憧憬。

你没能做出进一步的反应,但你发现,那只定位蜱的身体像一只铁皮玩具一样,完全由锈铁组成。

“叛变!人员叛变!”

大门被打开,一群人形的家伙冲了进来向着那异变的男人开枪。你明白那肯定不是躯的成员,他们不会用枪的。

你被拖到了外面,那些家伙要带你去做全面的检查,以防你也被金仙的血液影响。

余光中,你看向了边境墙的方向。

突兀的,你看到那里有一座红色与银色金属组成的大山立着,你不知道什么东西会被认知滤网塑造成这样,但它绝对不是什么好东西。

那是……什么东西……?

— — //// — —


特性工业维基

在线讨论房间(#11157


C307Welcome_every one:
作为盟友帮有识血肉转一下公告:

至全体人类成员的公告


应躯的要求与伟大母亲的意志,我们已经切割了层级Level C-156已受实体侵害的部分,这包括了:
  • 南部边境血肉墙整体部分
  • 城区Arm-3全部区域及周边城区。

请以上述区域内的幸存者即刻切出,或依托城区内的通心粉肠离开。

%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20230107095839.png

jiger:
有识血肉直接掀桌子了?好像是类似抹茶蛋糕的技术?

C307Welcome_every one:
不是类似呢,应该说有识血肉本来就具备切割层级的能力,抹茶蛋糕是另外的发明。

iron_cutter
回复jiger:爹像儿子.jpg

XuXiao:
这位金仙这下可是被流放了,我记得他们之前向我们这边几位买过锈珊瑚

ailingTV:
基本上都是用锈珊瑚产铁那几位

说实话,金仙本身就很适合产铁,虽然它不怎么可控

XuXiao:
可太适合了……它一疯掉把几平方公里的地方都染成了废铁……也亏它撑了那么久

C307Welcome_every one:
我其实很担心它会从层级碎片里跑出来,在蓝色通道游荡:(

那样的话,金仙就和rede没区别了

BKR-Mr.World:
不会了

XuXiao:
我去站长怎么来了

BKR-Mr.World:
C156的层级碎片已经被一个层级吞噬了。

那个层级是我们的老朋友——作弊层

iron_cutter:
可惜,我突然觉得金仙是一代枭雄了

— — //// — —


你知道这里是哪里,知道它有哪些称呼。

大齐人叫它天道,利用特性的家伙叫它巡查管理员,现代人叫它Level 363

它是后室意志。

祂觉得你作弊了。

vintage-mirror-4052203_1280.jpg

空旷的房间里只有一面镜子,它相对于你太渺小,但你庞大的身躯却完全被框在其中。

你看到了正在死亡的自己,你看到了组成自己的铁锈,银色金属与鲜红的血肉同时存在着,而虫豸们仍在努力穿梭而出。

锈渣与肉沫在掉落,却又倔强的重新生长,正如你过往的每一天,努力生存于后室的力量下的每一天。

作为一只意外留下的,进化的虫豸,后室认可了你的力量,你的尝试,于是祂彻底碾碎了你。

在那块破碎的镜面旁,金仙不再蠕动了。

在那块破碎的镜面旁,金华仙不再活着了。


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