天姥
: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
环境安全度:
稳定
实体威胁度:
交通便利度:
疑似存在
定居信息:
none-placeholder
资源情况:
none-placeholder
信号强度:
none-placeholder



天姥是远海诸岛中的岛屿。鉴于目前尚未确定该岛屿的坐标以及其表现出的特性,天姥的存在与否仍待证实。

若您疑似进入了天姥,请在参考本文档的同时谨慎进行探索活动。


岛屿地貌

天姥是一处以一座海拔约为800米的山峰为主体的岛屿,存在正常重力。随流浪者对山峰的探索深入,该岛屿的光照,温度,气候,植被等环境特征将呈现多段式的变化。天姥整体处于浓雾笼罩中,若流浪者向远离山峰的迷雾深处探索,那他最终将在浓雾中昏迷。

IMG_6411.jpeg

根据探索记录合成的天姥部分图像

当前,所有曾经进入天姥的流浪者皆称其在入睡后发现自己进入天姥,并在到达山顶或于浓雾中昏迷后在入睡处醒来。当前猜测天姥可能类似于Level C-599存在于流浪者梦境中,然而事件3250-明灭 部分证实了天姥的物质存在性。

尽管天姥的探索经历全部于梦中发生,但各流浪者对该岛屿的描述与部分细节却高度吻合。经过总结,天姥的完全探索部分大致可以如下划分:

  • 山脚地区:镜湖
  • 海拔400米以下地区:半壁
  • 海拔400米以上地区:殷岩
  • 山顶地区:青冥

目前,天姥的其余未完全探索部分包括:

  • 环绕岛屿的浓雾:深入探索将引发昏迷。
  • 山体内部及地下部分:进入天姥的流浪者并不具备探索该区域的能力。
  • 「青冥」中出现的建筑物:相关信息过少,暂命名为「金银台」。不建议贸然探索。

镜湖


一片冷硬的玻璃切开了光怪的梦境。

我看向它,看向我映射其中的破碎倒影,看向一块明亮的晕染白玉。

那是一片湖水。


<摘自流浪者Josh Adams 的报告>

「镜湖」是流浪者进入天姥后所遇到的第一片区域。「镜湖」是处于天姥山体脚下的一处湖泊,水体面积估计为500平方米,近岸处水深约为1米。「镜湖」区域中,天姥呈现出近似夜晚的状态,气温维持在18摄氏度左右。「镜湖」区域的月亮被认为是天姥岛屿内的自发光光源之一。流浪者在进入天姥后一般会在「镜湖」岸沿醒来。

「镜湖」区域生长着许多常见的水生植物与喜湿植物,如芦苇,柳树,蒲公英等。这些植物发育状况良好,尚不明确其如何在夜晚状态下的「镜湖」区域获取足够的光照与热量。另有报告称,「镜湖」区域偶尔会出现来源未知的猿类啼叫声,脚步声。其尚未得到证实。

「镜湖」之上,天姥沉入黯蓝,天空轻缀一轮明亮的满月于深蓝的夜色鹅绒中。湖水在不知来处的风中起伏荡漾,似梦境将它的呼吸同来客共享。近岸的湖水映出来者孤影,远方的雾中众声低响,水声,风声,啼声,梦中迷离声。

天姥在夜中沉入安宁,纵使横天的山峰,也会在水中镜月面前息声。

半壁


一声鸡鸣,

我在山道上停步。

赤红的光芒刺穿云雾,血洒天海,点燃林森。

胸腔中的苦痛在日光下消解。


<摘自流浪者Lee White 的报告>

「半壁」是流浪者正常探索天姥所遇到的第二片区域。「半壁」是天姥主山体400米以下区域的总称。该区域面积估计为100平方公里。「半壁」区域表现出亚热带低山丘陵的特征,气温在18至28摄氏度间浮动。「半壁」区域中,天姥呈现出近似清晨日升的状态,流浪者在太阳完全升起后,可以直接观察到蓝色通道虚空组成的天空。与「镜湖」地区的月亮类似,「半壁」区域的太阳可能为天姥岛屿内的自发光光源。

「半壁」地区植被茂密,树种以马尾松与黄山松为主。它们同样发育良好。流浪者在探索「半壁」区域时,会发现该区域被浓厚的迷雾充斥,想要继续探索仅能沿一条人工开凿的山间小道攀登。山间小道及其周边约五米的范围内不存在雾气。「半壁」区域的太阳升起后,迷雾将大幅消散。

「半壁」之中,天姥在一声似无的鸡鸣中升起红日。云雾深处喷薄了炽热的熔岩,睁开了光天的眼睛。厚重的雾蒸发,燃烧,变得薄,变得轻,变得无。光会刺痛来客的眼,却抚慰他们的心。

天姥在日下放逐迷惘,既有拔势的山峰,怎能在飘忽雾霭深处沉没?

殷岩


要下雨了。

黑云与乱石埋葬我,葬我于无光的梦中。

失踪的魂灵,引渡我为他们的一员。

闪电嘶鸣着,在阴云上切开一道光明的伤口,

闪电嘶鸣着,我听见它说:

还不是时候。


<摘自流浪者越人的报告>


「殷岩」是流浪者常规探索天姥时所遇见的第三片区域。「殷岩」是天姥主山体400米以上,顶峰以下区域的总称。该区域以裸露嶙峋的山岩,曲折的山路为主要特征。「殷岩」区域中,天姥呈现出极端暴雨天气发生的前兆,流浪者在深入「殷岩」区域时,可观察到以下现象:
  • 于「半壁」区域升起的太阳隐没消失。
  • 天姥的亮度降低,天空被乌云掩盖,无法观测到蓝色通道
  • 山体出现明显震感。
  • 空中频繁出现闪电。
  • 出现未知来源的兽吼声。

「殷岩」地区山石裸露,植被覆盖率极低。该地区的山路崎岖曲折,这使得探索该区域有着较大难度。流浪者有时会在山石狭缝与林立怪石间迷失方向。尽管该区域气氛压抑悚怖,但从未有过暴雨天气实际发生的记录。流浪者仅需保持镇定,坚持攀登便可以穿越该区域。

「殷岩」之中,天姥在熊咆龙吟里欲来山雨。乌云翻墨,压峰欲倾。云深訇然处,雷霆乍惊时,云外浩荡不见底,龙吟声里天洞开。

天姥于云深呼雷应龙,屹于洞天的山峰,蔽日黑云不能摧之。

青冥


玄雾中开,青天浩然。

峦石崩摧沉入天空,霞云明灭升入大地。

炽热的阳炎与清冷的月辉在此交汇。

现实洪流之上,梦境天空之下,

金银楼台,高居其间。


<摘自流浪者越人的报告>

「青冥」是流浪者在天姥探索的终点。当流浪者完成对「殷岩」的探索,攀登至山体顶峰时,天姥的主要部分将在震动与闪电中崩溃。流浪者将观察到山石在震动中脱落并快速落至可视范围之外,乌云退散,闪电停歇,露出虚空。该区域无常规重力,流浪者将在虚空与岛屿迷雾中漂浮。

天姥的主体完全消失后,两个光源将于远距离的迷雾中升起,它们被推测为「镜湖」区域的月亮与「半壁」地区的太阳。两个光源将发出足以穿透岛屿迷雾的光,流浪者将会观察到远方的迷雾被两处光源映照,太阳周边呈现出朝霞一般的景象,月亮周边则如晴朗夜空中的暗云,二者交汇处则由一道晚霞分界。建筑物「金银台」将在晚霞处出现。流浪者在注意到「金银台」的一段时间后便会醒来,除了一些模糊的总体印象外无法获得更多细节,这就是为何「金银台」缺少相关信息。

「青冥」之外,天姥在日月辉影下返还梦中,然而,孰为幻惑孰为真?唯台上人兮知之。

天姥明灭,或可睹见。客海瀛洲,烟信难求。别君,别君,君已去兮何处寻?


聚落

由于天姥的特殊存在性,该岛屿暂无聚落或聚居地。


临近岛屿

由于天姥的特殊存在性,尚不能确定天姥的临近岛屿。


岛屿指南

目前已证实,流浪者在天姥内不会受到常规意义上的物理损伤,也不存在食物或水源的需求。因此,当前阶段进入天姥的流浪者以探索为主要任务。当然,考虑到目前天姥表露的非物质性质,我们建议流浪者直接进入迷雾中,以直接离开梦境。也不建议任何流浪者在现实中寻找天姥,这无异于浪费资源。

应当

  • 深入迷雾,避免长时间停留于梦境中。
  • 若您需要进行探索,请沿合理路线,并记录天姥的岛屿地貌。
  • 保持谨慎,警惕天姥出现未知变动。
  • 离开后,向远海诸岛信息站提交报告。

不应

  • 忽视天姥的潜在探索风险,贸然行事。
  • 拒不上报天姥的进入经历。
  • 消耗时间与物资,在现实中寻找天姥





附录

3250-明灭 事件报告:

事件编号:3250-明灭

发生时间:20██/██/██

影响范围:岛屿 [数据删除] 内超过120名流浪者目击该事件。

事件简述: 20██年██月██日,[数据删除]北偏东约37°15′方向的蓝色通道虚空出现了巨大山体状阴影。8小时后,阴影逐渐消失,一个圆形发光体在阴影完全消失后出现并开始向外辐射光线。20分钟后,发光体消失。

行动简报:[数据删除]3250-明灭 发生4小时后派出了一支6人小队向阴影方向探索。探索小队穿过了超过90公里的距离,未能观测到阴影尺寸变化或其他细节。由于缺少相关设备,未知发光体发射光波的波长未能测定。3250-明灭 事件目击者没有出现后遗症或受精神污染的迹象。


流浪者越人访谈记录


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