Entity C-196 - “那些守夜的东西”
: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 }
评分: +41+x

如果你也在没人的大街上走过夜路,就会知道,在晚上,即使四处灯火通明,那种应该有人却没有人的反差感会把你搞得疑神疑鬼,甚至让你看到藏身于黑暗的东西。

那天,我加完班走路回家,时间大约是十二点。从公司到家的路旁有一座公园,公园里的树木很矮,从围墙里伸了出来。我在树下走过,稍不注意,树枝就用力地抓挠我的头皮,每次都让我汗毛直立。公园里没有光,黑暗把树林封锁得密不透风,我却感觉到有什么东西的气息呼之欲出。有那么一秒钟,树林深处似乎有几只眼睛闪过,但我没看清。谁在那!?没有人回应。但愿只是野猫。

路灯把大街映成橙色,却更显冷寂。我依稀听见马路上的汽车鸣笛,居民楼里传来的电视的声音,楼道里孩童的嬉笑声,甚至听到了杂乱的脚步声——但该死,这大街上我看不见一个人,甚至一点风都没有。我在这吃人的静谧中彳亍,不敢向前,又不敢停下脚步。

突然,一阵拖长又刺耳的呲呲声从身后传来,有什么东西在向我靠近,我猛地回头,地面上的枯叶被风吹动着,在地面上摩擦着发出声音,有几辆车在身后的马路上驶过——一切都很正常,但我发誓,有一个影子在一瞬间躲到了拐角。

我拼命往家的方向跑,因为我知道一定有什么东西盯上了我。

实体编号:C-196

栖息地:Level 9Level C-9 等黑暗层级 已绝迹

描述:

Entity C-196 是一类已经灭绝的实体,有关它们的信息仅可在失落一族部分族群的文献里找到。它们被认为与邻里守望有关联,但深入的研究尚未展开。

有关 Entity C-196 的记载大多来自于一个名为“后虢国”的失落一族聚落,位于 C 层群。M.E.G. 在与其分享资料时意外发现了有关夜巡灵的零散记载,对方表示当今社群内的大多数人对这一类实体几乎没有了解,推测其早已灭绝,原因未知。

以下内容直接摘自失落一族的文件,由于其所记述实体对流浪者已不再造成威胁,故相关的整理工作已被无限期推延。

#E-C196-A

NqSUdDx7zhE4r3M.jpg
临摹自原稿

父母久未还,忧甚。家出寻之未果,欲反不得路。忽觉寒气袭背,回顾,紧随一奇物,目极园,甚近之,未能辨其形。吾恐为所吞,欲逃。其先于我遁,遽不见其影。

████夜记

以下内容经过翻译。

夜巡灵:尾行目 档案

尾行目是近期被报告发现的一类生物。据悉,其躯体由没有皮肤的血肉组成,头部有着类似花瓣的结构,但质感更像是家禽的蹼,其足部与之类似;眼睛组成了整个面部,另一只眼睛则长在它拖长的尾巴上。尾行目没有眼皮,它们不会眨眼。

尾行目以漂浮的方式移动,静止时也漂浮在空中,不会发出任何响动;快速前进时身体前倾,尾部伸直,几乎变成一条直线。

因其总是在人的身后被发现,被认为喜好尾随人类,其行动也十分依赖它长有眼睛的尾部,故得名尾行目。据遭遇过这类生物的人所言,它们会死死地盯着你的后颈,当你转头时,它们像脸一样大的眼睛距离你不过一寸;被发现后,它们像发了疯一样四处乱窜,在空中留下扭曲的影迹,随后消失不见。


#E-C196-B

以下内容经过翻译。

夜巡灵:眼蜗 档案

眼蜗是一类软体动物,尽管有着类似蜗牛的身体形态,但它的“壳”如身体的其他部位一样柔软。若触碰眼蜗的身体,被触碰的那一部分就会向下凹陷,随后整个身体都随之扭曲成诡异的形状。

眼蜗喜阴喜狭窄空间,常栖息在灌木、墙缝,甚至是床底,有时,它们会躲在长久未开启的门后,从门缝中观察外面。它们常常数十个聚集在一起。

在被人发现一次后,一旦再次脱离人的关注,它们就会立刻迁移到其他的地方,但没有人见过眼蜗的迁移过程。

LdjCUxatMzpbvmy.jpg

夜巡灵虽然形态各异,但被划分到一起是有原因的,它们之间似乎存在一种微妙的联系。据我观察,被眼蜗注视过的人总是更容易遭遇其他的夜巡灵。私以为,这些瘆人的东西是在观察我们,并以一种未知的方式将我们的位置分享给同类。
因此,我建议遭遇过眼蜗,或者以民间的说法,“被上天盯上的恶人”在朋友亲戚家暂住几宿,以躲避夜巡灵的伤害。

7Sh6FPu8m23csRL.jpg

来源未知的照片,推测摄于失落一组聚集地的某一墙面


#E-C196-C

与妻书

  听闻家乡近日有一鬼怪降临,奕儿也深受其害,原本聪明伶俐如今油盐不进,大闹四方,满口粗话,夜不归宿,让汝很是伤神。我也忧伤难抑,故寻得一道士,其有一法可治之。
  汝在一月圆之夜,即明日,趁奕儿熟睡,以绳缚其身体,浸之以杏水,置之以一夜。次日清晨,解其缚,收拾财物。黄昏,于村口会见我,与我同住五日,后可返乡。
  勿迟疑,此举关乎汝与奕儿之安危。

嗡嗡如蜂雀,朝游夜无息。舞时劳者忙,静时人皆疲。
扰人于田间,愤愤难怨之。倦怠眼迷离,村舍寂无生。

jxP9ShzYUrqnL5w.jpg

根据原稿重绘

以下内容经过翻译。

夜巡灵:瞟浮 档案

瞟浮仅可见于七岁以下儿童之眼,其出现时,会引导儿童与之嬉戏,这一真相不被成年人所察觉,长期被民间认为是鬼神降临的表现。

与总是在近地面漂浮移动的尾行目不同,瞟浮的行动方式更灵活、轻盈、多变。它们总是会主动靠近人类聚居地,并聚集附近的儿童,把他们带到没有灯光的地方,第二天再回来。跟随这些儿童们的成年人至今下落不明。尚不清楚瞟浮对这些孩子做了什么,但被瞟浮带走过一次的儿童往往会性情大变,并且对那一晚的经历只字不提。

瞟浮出现的第四夜,它会停留在村内休息,此时,绝对不能留在村内,否则会患上无法治愈的恶疾,有死亡的风险。


#E-C196-D

以下内容经过翻译。

rnaQmpLUHOZMCXP.jpg

根据原稿重绘

夜巡灵:眩目 档案

因其只出现在人视野的边缘,且注视过它们的人都已经死亡,眩目的具体形态尚不清楚,本文档附带的图片仅为想象图。

眩目在四周场景杂乱的情况下最容易出现,例如树木丛生的野外,堆满作物的谷仓,没有人的集市;眩目总是会在你四周没有人的情况下出现。

遭遇眩目前,人往往感到精神恍惚,难以集中注意力;此时若将目光定格在某一位置,黑影就会在视野周边闪过。尝试追寻其踪迹的行为往往会失败,但在极其罕见的情况下,你能在转头四十九度1后看到眩目的真身,随后会被一股无形的力量扭折身体死亡。


E-C-196-E

aqm7ryMZj4BKwx5.jpg
nkDT1vp3wotqMzQ.jpg

一只前厅黑猫

以下内容经过翻译。

夜巡灵:瞄 档案

总是藏在夜晚的阴影下,会躲避光源。遭遇时,其仅有三只黄色眼睛可见。若被光线照射,则会像猫一样反射光芒,但同时也会释放能量,具体表现为具有伤害性的光束刺穿人的躯体;若长时间直视的眼睛,也会发生同样的情形。

也有人见过从眼前飞速地掠过,这往往是正在从一暗处转移到另一暗处,途中不得不经过光照区域。这种情况下可以观察到的形态,近似于一只脖子和尾巴修长的黑猫。

不要尝试观察,不要将它引诱到有光的地方,不要用光照射它。

总是会在暗处观察你,不要害怕,什么都不会发生。

我在路灯旁看到了一个人影,他没有站在光照里,而是在暗处若影若现,仅能模糊地观察其轮廓,还有他的眼睛…… 在黑暗里发着光。
是笑魇吗?不太像吧。
好奇心驱使我靠近,它的眼珠也跟着我移动。我害怕极了,举过提灯,它的眼睛立刻射出金光,把我的灯打穿了。现在,这里只有路灯还亮着。
我管不了那么多了,一头栽进了第九层的黑暗里。
因为我看到了它的样子

TRFGhSxEA67eDVI.jpg

E-C196-F

E-C196-F 归类为 REDE 实体提案已被否决,原因是该实体没有再次被发现。

以下内容经过翻译。

夜巡灵:好奇的心 档案

好奇的心是体型最大的夜巡灵,也是最危险的夜巡灵,并且整个后室有且仅有一例存在。

好奇的心只会出现在开阔的地方,它会在空中盘旋,巨大的眼睛观察着有光的地方,而身体上半部分的眼睛漫无目的地扫视四周;理论上来说,好奇的心没有视野盲区。

尽管没有实质性的危害,但其往往出现于人类聚集的地方,容易引发极度恐慌;血液时常从好奇的心身上滴落,其中含有寂静汁液的成分,这被认为是好奇的心所引发的恐慌难以抑制的主要原因。最重要的是,好奇的心往往会引来其他的夜巡灵,这会造成极大的危害。

好奇的心引发的事件被称作「影夺光位」。其发生时,夜巡灵们会变得更加活跃,不再躲避人类的视线,眼蜗等原本没有攻击性的夜巡灵也会开始伤害人类。

具体表现如下:

  • 眩目开始主动出击,会突然出现在人类面前将其拧成一团;
  • 眼蜗在地面爬行,靠近人类时,会将目标从尾到头吞进它的身体,并瞬间消化;
  • 欲视灵2出现并吸食附近人类的灵魂3
  • 离开阴影,用眼睛发出的光线狩猎并杀死人类;
  • 尾行目从背后接近人类,并用尾巴强大的力量将目标击打致死;
  • 不可直视之梦魇4显露其形,用尖牙撕碎它发现的人类;
  • 瞟浮总是处于活跃状态,此时它是威胁最小的夜巡灵。

好奇的心降临时,务必聚集居民,整个聚落的人都需要迁移到至少五十里以外的地方,直到没有人能看见好奇的心。等待数月,好奇的心就会离去。在古老的记载中,提到了一种杀死好奇的心的方法,即是在完成上述步骤时,在临时聚集点组织娱乐活动,直到所有见过好奇的心的人都停止思考有关它的事情;当脱离了人类的关注,它便会消失。目前没有成功的案例。

DUPNIbLipWsFwka.jpg

“夺回我们的夜晚……”


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