Object C-166 - “恶魔护照”
: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 }
评分: +50+x

警告

由于 Object C-166 的危险性,M.E.G. 监督者已决定将其列为禁品,不允许该物品流通。如果你得到了一本 Object C-166,请不要翻开它,立刻带着它前往最近的 M.E.G. 基地,我们会处理它并为你提供一定的补偿。

Meglogo

M.E.G. - 为了更好的人类

物品名称:恶魔护照

物品编号:C-166

31y9THbuPmNAXvK.jpg

一本恶魔护照

描述:

恶魔护照是一种可以在储物间找到的物品。

恶魔护照的封皮均为红色,且在正面印有类似恶魔的头像。封面上的标题等文本因未知原因出现拼写错误1,并且部分文字难以辨认,唯一能够被识别的是标题以及 Satan2 一词。

翻开恶魔护照的任意一页会使流浪者立即成为该护照的有效持有人;翻开他人持有的恶魔护照会代替此人成为护照的新主人,并保留上一任持有者的使用记录。一名流浪者不可同时持有一本以上的恶魔护照,护照持有人在翻开另一本护照时,原先持有的护照会立刻消失。

在流浪者成功持有一本恶魔护照后,护照上的内容会被自动填写,并且一些特殊项目会随着流浪者的持有时间、年龄、所在位置等因素的改变而发生改变。

一个完好的恶魔护照共有 12 页。第一页是护照持有人的个人信息表格,示例表格如下。

护照持有人信息
姓名 性别 3 照片处
出生日期 XXXX-XX-XX 死亡日期 XXXX-XX-XX4
思乡 是 / 否 生命状态 在世 / 已故
层群 C 所在层级 5
年龄 6 室龄 7
8
使用记录
注意事项:戆釓軋弑髂瀈漥髂亘軋颯漥軋弑髂恱軋颯漥亘釓軋弑髂恱瀈颯漥髂軋弑髂軋颯漥軋弑髂9

其余页面均为使用记录表格,恶魔护照每被触发一次,该次使用的文字记录就会出现在第一个空白的表格项目上。和恶魔护照上的许多文字一样,这段记录也无法被人类识别,仅能被用于统计使用次数。除第一页外,每页共有 6 行可供填写的记录表格,表格被填满后恶魔护照就会消失,也就是说,恶魔护照总共可以被使用 66 次。

特性:

物理性质

恶魔护照内页的材质极为特殊,墨水和碳粉等常见的书写方式无法影响护照的内容,任何覆盖在护照内页上的物体都会在下一次打开时消失。唯一可行的人为改变护照内容的方式是血书,但血液并不会在功能上影响恶魔护照

恶魔护照无法被常规方式摧毁,包括利器、火焰、酸液在内的任何工具都无法在其表面留下任何痕迹。唯一可破坏的是纸页的粘合处,但即使是被撕下,该页面仍属于恶魔护照,并且破坏行为不会影响恶魔护照的功能和性质。

作用

恶魔护照在静置时不会发挥作用,只有当流浪者将其拿在手上并将正面朝向作用对象时才能正常工作。当使用者观察到恶魔护照发出类似闪电的紫红色光芒,并听到来源不明的诡异笑声时,恶魔护照生效。

具体的作用效果如下:

若作用对象为流浪者,该流浪者会对护照持有者表现得十分恭敬,并且言行变得小心谨慎。此时,该流浪者会竭尽所能满足护照持有者的要求,并且不会对护照持有者的任何行为产生反感。该效果的持续时间因人而异,通常在 12 分钟到 1 小时不等。

若作用对象为实体,该实体立刻丧失攻击意愿并迅速远离护照持有者,且在至少 24 小时内都不会再接近该流浪者。无论实体的危险程度和数量,恶魔护照都能将其逼退。一些过于特殊的实体不会受到影响,尤其是没有生命特征或是能干扰认知的实体。

若作用对象为物体,护照持有者可以通过语言指示来移动该物体,熟练的操作者能借用恶魔护照来打开上锁的门。该效果只能同时被作用在单个物体上。在生效约 6 小时后,被移动到物体会回到原位置。

若作用对象为墙壁,恶魔护照会在指定位置创造一个临时的稳定切出点,持续时间在 6 分钟左右。

恶魔护照每次生效都会被记录并且消耗一次使用次数。若流浪者试图直接使用不属于自己的恶魔护照,该流浪者会被护照放出的闪电击倒,此后该护照会消失。

副作用

恶魔护照具有能够带来严重负面影响的一系列副作用,并且这些副作用的发生频率和强度与护照的使用次数呈正相关。这些副作用通常包括:

  • 精神状态持续恶化10
  • 更频繁地遭遇敌对实体;
  • 在复杂的结构内探索时更容易遇到死路;
  • 在室内探索时更容易遇到上锁的门;
  • 让他人感到不由自主地厌恶或恐惧11
  • 进入罪恶循环12

这些副作用会导致流浪者更频繁地使用恶魔护照来解决问题,并在此过程中逐渐产生依赖心理。

罪恶循环

罪恶循环是发生在所有恶魔护照持有者身上的现象。该现象会逐渐让受影响者失去理智,变得具有攻击性,身体形态发生变化,最终转化为恶魔般的生物,被称为魔精(Imp)

下表展示了罪恶循环的阶段划分及其影响。

阶段 护照使用次数 精神影响 生理变化
0~11 无明显影响 新陈代谢加速,口渴、饥饿速度加快
12~22 好奇心无节制地增长,这会导致欺骗、抢劫和盗窃行为 瞳孔变大,眼球突出;异常兴奋,多动症
23~33 抗拒体力活动,仅愿意进行必要的维持生命的活动 体毛快速生长,指甲增长
34~44 烦躁易怒,更频繁地使用暴力 肌肉力量明显提升;瞳孔变为红色;脊背开始弯曲并长出新的骨骼
45~55 无法共情;自负心增长;希望所有人都变得痛苦 头顶两侧长出红色的弯角,体毛覆盖全身
56~65 攻击性极强,对任何生命都充满厌恶 长出尖锐的爪子和牙齿;皮肤增厚
66 渴望通过破坏行为来满足自己 背上长出类似蝙蝠的红色翅膀;尾椎处长出红色的尾巴

在罪恶循环进入第七阶段之前,立刻停止使用恶魔护照并执行悲尸循环的处理方式能使罪恶循环停止,此后,若流浪者成功丢弃或销毁了恶魔护照13,罪恶循环会按照反方向进行并使流浪者逐渐复原14。当罪恶循环进入第七阶段,该流浪者已经完全转变为魔精,并且没有挽救的可能,其所持有的恶魔护照会随之消失。

魔精

注意:变成魔精的流浪者不应被当作人类对待!请尽可能地远离它们。

魔精的头部长有红色的弯角,脊背两侧长有红色的蝙蝠翅膀,其身体被毛发覆盖,毛发的颜色与罪恶循环前流浪者的发色相同。它们的肌肉力量比人类要强壮得多,不亚于能够徒手撕碎人体的窃皮者。它们的翅膀能够支持它们短时间低空飞行,这使得它们能够从上方偷袭没有防备的流浪者。

魔精与正常人类一样,需要摄取水分和进食。比起收集资源和贸易,它们更愿意从其他的流浪者手上抢夺。它们的娱乐方式是折磨和杀害流浪者和实体。据推测,它们能从其他生物的痛苦中获得快感。

魔精不喜群体活动,分散在各个层级,这使得完全消灭它们极其困难。魔精个体行动缓慢,使用远距离武器可以有效杀死它们。

弃置方式:

恶魔护照在被流浪者持有后就与持有者绑定,无论持有者身在何处都会受到恶魔护照的副作用影响。要丢弃或有效摧毁一本恶魔护照,目前已知的有效方法有:

  • 翻开并认领另一本恶魔护照
  • 将其给予能够翻开书页的人形实体,然后迅速离开;
  • 将其给予其他流浪者并让对方翻开;
  • 将其与大量杏仁水一同放入上帝搅拌器并执行搅拌操作,之后会得到大量腰果水;
  • 将其置于便携式glitch旁并打开后者;
  • 将其丢入清道夫的垃圾池,然后迅速离开。

获取方式:

储物间的柜子里有极小概率找到恶魔护照,在老化现象15发生时这种概率会增加,上锁的储物柜里也有更高的概率找到恶魔护照。特别地,后室 C 层群的某些层级也会出现随机分布的少量恶魔护照,它们会像杏仁水一样随机出现,但出现频率远远低于其它类型的物品。

行为准则:

应当

  • 依照本文档中”弃置方式“条目丢弃恶魔护照
  • 迫不得已时,使用恶魔护照躲避危险;
  • 在保证自身安全的情况下,帮助进入罪恶循环的流浪者;
  • 使用远程武器杀死魔精

不应

  • 翻开任何一本恶魔护照
  • 恶魔护照转交给其他人;
  • 肆意使用恶魔护照
  • 相信进入罪恶循环二阶段的流浪者;
  • 出于好奇靠近魔精

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