Phenomenon C-66 - “溺”(旧)
: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 }

描述:

Phenomenon C-66 - “溺”是近期发生在后室C层群中的一种诡异的毁灭力极强的现象。其仅仅发生在C层群内,除此之外的其它任何层级皆未曾记录过Phenomenon C-66出现。

pc66water2

Phenomenon C-66发生后,Level C-307的人员正在进行清理。

昭示着Phenomenon C-66发生的明显 场景 为在耳边传来无端的水声。一开始,流浪者可能会将其与Phenomenon 2的昭示混淆,但Phenomenon C-66的 氛围 要更加平静且微弱,而且会给流浪者带来一种莫名的“ 平静 ”感觉,似乎与 崇高 的水音类似。

这一效应似乎是Phenomenon C-66设置的诱饵。当 氛围 愈加强烈时,流浪者将会发现自己脚下的地面上渗出了一层 水波 。这些液体的成份与特殊效应与此层级/区域内原生的液体相同。例如,在Level C-382内发生Phenomenon C-66时,地面上将会渗出Level C-382中知名的“流光”;在Level C-44内渗出的液体将有着和浴缸同样的视觉阻挡效应;在Level C-341内渗出的液体将是 污浊 的混合物。

这些 水波 似乎具有光线扭曲的能力。它们会将从无论任何方向射入水体的光线从另一方面折射出水面。在完全黑暗的层级内,它们似乎也有自生成光线的异常能力。经过了这些液体的光线被形容为是 明朗 的,具有令人迷乱的能力。同时,无论环境光如何,经过此液体的光线的色相和明亮度必然是类似于阳光的。

现象发生时, 水波 会不断从地板上渗出,其上升的速度大约为5cm/1min。其将不断上升,直到达到某个并不明确的 阈值 后停下。在停下时,其通常已经没过了流浪者的小腿。

pc66water1

一次Phenomenon C-66正在发生。

在停止上升后,没在水体内的层级原生建筑物表面将会逐渐变得 光洁无瑕 ,在浸没约五十分钟后,其材质开始以一种不明的方式质变为 瓷砖 。相反的,浸没在水体内的人造 外来 物将会直接被水体溶解,包括流浪者的衣、裤、鞋等。然而,这一现象并不会对流浪者本体造成伤害,而是褪去其身上所有的 不洁

一般情况下,一个层级内短时间只会发生一次Phenomenon C-66,其仅能导致50cm左右高的范围的层级 嬗变 。然而,一个致命的问题在于,如果没有高强度的人为干预,Phenomenon C-66将是不可逆的。这不仅说明,许多荒无人烟层级在发生一次此现象后就将提高生存难度;同时也昭示了两次Phenomenon C-66叠加在一起的可能性。这将会导致有此现象 降临 的层级进入另一阶段的 嬗变

第二阶段:

第二阶段的Phenomenon C-66产生的液体的水面基本可以没过流浪者的肩膀。此阶段的Phenomenon C-66已经可以触及到层级的部分光源。在触碰时,其将直接溶解层级原生的“人造” 愚钝 光源,如荧光灯、火把以及其它层级原生的发光体;取而代之的是,其会在层级的墙壁上腐蚀出些许小洞,神圣 的阳光将从中射出。

第二阶段进行时,Phenomenon C-66将 改造 层级的结构。在这一过程完成后,剩下的结构将变得平滑,被 瓷砖 覆盖。其常被描述为是 崇高 的。

在此阶段的液体中浸泡时,流浪者无一例外地感觉到 放松 ;同时,他们也提到了他们的身体发生了巨大的变化;这一点通常会让他们自认为更加 美丽英俊 。并且,目前有推测称第二阶段与其之后的阶段的这些液体将可以治疗皮肤病,但其未得到证实。

此阶段的 嬗变 基本完成后,层级内的液体已经基本变得 洁净透彻 ,与此现象刚刚发生时不同,第二阶段与其之后产生的这些液体有着强烈的同质性,似乎其一开始的杂质已经被 抹除 了。

追加信息:

目前发现,Phenomenon C-66具有对信息的 清洁 能力。目前暂未发现其对信息进行颠倒是非或其它本质性修改。但在浏览相关页面时仍需小心。

嬗变 完成后,被影响的层级将进入长时间的冷却期。在至少六个月内不会再有Phenomenon C-66发生。不过,随着时间的推移,其再度发生的概率将变得越来越高。若是层级内再次发生了第三次Phenomenon C-66,则其将被彻底影响并改变,进入第三阶段。

第三阶段:

在第三阶段中, 沉迷水池 中超过一小时的人类将受到强烈的精神影响。他们会无一例外地产生对 水池 的崇拜之情,并将 圣地 视为他们精神上的家园。不过,暂无证据表明受到此现象影响的流浪者会变得敌意或实行对人造建筑物的 清理 等破坏性行为。

第三阶段中,层级中的液体将彻底具有对层级的 重塑 能力;其显现出了在之前的阶段中从未有过的凭空产生建筑物与结构的能力。其在一定程度上甚至可以改变层级原生的光照或潮汐节律。其将在一定程度上变得 崇高 。这样的改变的结果似乎是有目的的, 明确 的;下文是一张关于各类层级在改变后的特征的列表。


层级若含有大片水域:

  • 层级的水体将变为蓝绿色。
  • 层级的光照将变得 明朗

层级若结构简单,如简单的非欧几里得走廊集合体:

  • 层级的部分结构将变得 平滑整洁

层级若结构复杂,如城市:

  • 层级的结构中可看出的设计理念逐渐消失,转变为纯粹的怪异空间结构。

层级若含有大量有机物,如草原或森林:

  • 层级的有机物将被 清除 ,在一定程度上可能会转化为水体。

层级若无定形,如虚空:

  • 无数符合上述描述的建筑物结构将在无定形结构中凭空出现。

层级形态若与流浪者心理、精神状态或记忆强相关:

  • 层级的强相关要素将消失,彻底被 崇高 填充。

同时,在 重塑 彻底完成后,层级的出入口也将被较大幅度地改变。其在改变后连接的层级多半与 水池崇高宁静 有关。另一说中,数个被此现象彻底 重塑 的层级会有互相连接的趋势。

频次:

目前,未观察过Phenomenon C-66发生在C层群以外的任何层群。其之能力或许受了限制,导致其无法 降临 其它层群。不过,在C层群内,尤其是近期,其发生频率正在逐渐提高。

在C层群内,在单个层级之上,其之发生概率与层级被人类 侵占 的程度成反比。人类在其中建立了越多前哨站或进行了越多 蛀蚀 ,其发生Phenomenon C-66的概率就越高。因此,其被认为是极具毁灭性的。

单个层级之内发生多次此现象的频率变化已在上文进行阐述,此处不再赘述。

相关团体:

在第三阶段中在水体内进入 迷醉 状态的流浪者在离开 圣地 后无一例外表现出了对于 崇高 的狂热和痴迷。他们自发组成了一些团体,向其它人进行有关Phenomenon C-66的宣传。

pc66inc588

进入Phenomenon C-66的第二阶段的Level C-588的部分地区。

目前,暂不清楚此类 蜕变 是否是不可逆转的;出于对这些被精神影响的流浪者的关注与同情,探险者总署已在着手相关的研究。只不过目前暂无进展。

此类团体不会表现出对流浪者的敌意。然而,他们对篡改数据库的数据独有情钟。他们会自发将被此现象完全 改造 的层级的档案以相似的格式修改为被影响后的模样1,同时,在其中大段添加不明所以地以个人化/情绪化的方式写就的字句或文学性内容。

额外信息:

第一次Phenomenon C-66开始时,Level C-307的探险者总署“浪潮”基地、不结盟贸易集团“北斗”贸易基地、蒙面女郎C层群第六节点以及一个在C层群活跃的速切玩家小组同时在夜晚12:00至1:00的北偏东方向38同时观测到了一次异常星象显示。其中,数颗星星摆为了文字的模样:

行为准则:

应当:

  • 逃离你确信正在被Phenomenon C-66影响的层级或区域。
  • 在尽可能的情况下,逃离C层群。
  • 在尽可能的情况下,不与处于第三阶段中的层级内的液体接触。
  • 忽视狂热的受影响流浪者。

不应:

  • 贸然闯入此现象产生的液体中,暂不清楚在(哪怕是低阶段的)水中浸泡过久有何后果。
  • 进入处于第三阶段中的层级。
  • 被狂热的受影响者同化。
  • 放弃独立思考,被他们同化。


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