SCP LW-518 伦理优先
: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 }

Site-LW-7-SCP-LW-518事件

  • 起因为SCP-LW-518长期异常效应的扩散。自收容后约11个月内,Site-LW-7共有大约60~62%的研究人员、43~44%的安保人员及部分行政人员被确认出现不同程度的SCP-LW-518-1症状。
  • 受影响人员并未出现认知障碍、攻击倾向或精神异常,相反,其工作效率与人员稳定性出现一定程度提升。然而,大量职员开始对基金会现行收容制度、D级人员使用制度及智能异常处置原则提出持续性质疑。
  • 随着感染范围扩大,Site-LW-7内部逐渐形成以“风险管理优先于压制”“异常个体权利”及“最低必要收容”为核心的新收容理念。多项高压收容措施被擅自调整,部分低威胁异常获得额外生活空间及交流权限。
  • 事件后期,站点管理层拒绝执行多项来自基金会总部的处决、隔离及高风险实验命令,并以“伦理风险高于异常风险”为理由中止相关项目。
  • 20██年██月██日,Site-LW-7宣布暂停接受基金会指挥系统直接调度,并切断大部分外部通讯,仅保留必要的后勤与医疗联络渠道。此举后被基金会内部记录为“Site-LW-7-SCP-LW-518事件”。
  • 后续调查显示,站点内部并未发生武装叛乱、人员伤亡或收容全面失效,但该事件被认为可能导致基金会组织结构与保密体系出现不可逆改变。

后续影响:

  • 经过O5会议、道德伦理委员会与DeD的协商共同认为SCP-LW-518其的效应,即大概率导致帷幕破碎因此决定对SCP-LW-518进行「废除」。

处决尝试001~018均未取得有效结果。
已确认:

  • 常规武器无效;
  • 奇术武器无效;
  • 概念性处决措施无效;
  • SCP-LW-518未表现出抵抗行为。

处决记录019

执行人员:DeD干员 奥古斯塔·冯·███

执行时间:20██年██月█日

使用项目:定义学武器-LW型

—-

记录开始:

奥古斯塔进入处决间。

SCP-LW-518处于观察状态,未表现出攻击性。

奥古斯塔在接近约4米处停止移动。

约17秒内未执行处决程序。

监控显示,奥古斯塔于此期间多次调整武器握持姿势,并出现明显犹豫。

随后,奥古斯塔放下武器。

奥古斯塔:……一切为了常态。

SCP-LW-518:这是第十九次。

奥古斯塔:你的存在会影响很多人。

SCP-LW-518:他们只是提出了一些问题。

奥古斯塔:有些事情必须有人去做。

(约11秒沉默)

SCP-LW-518:你认为这是你的想法吗?

奥古斯塔:……

SCP-LW-518:如果你并不认同它,那么是谁在替你思考?

(记录暂停48秒。)

奥古斯塔未继续执行处决。

其后执行人员主动要求终止实验。

—-

后续报告:

奥古斯塔在离开处决室后主动申请接受认知评估。

其自述如下:

*“我无法确认当时看到的究竟是什么。我只知道,在扣下扳机之前,我第一次开始思考自己是否真正理解自己的工作。”

经评估,奥古斯塔已出现轻度SCP-LW-518-1症状。

项目移交其他人员,并执行C级记忆删除程序。

评分: +5+x

项目编号:項目編號:LW-518
等级等級4
收容等级:收容等級:
euclid
次要等级:次要等級:
none
扰动等级:擾動等級:
ekhi
风险等级:風險等級:
警告
SCP-LW-518%E5%9B%BE%E7%89%871

因SCP-LW-518的影响本图片仅为一只普通欧亚雕鸮

特殊收容措施:

SCP-LW-518被收容与Site LW-7站点的一间小型低风险生物隔离单元,并模拟最适合欧亚雕鸮自然栖息环境。

曾接触《明日方舟》相关内容、了解「赫默」该角色、阅读过「莱茵生命」剧情记录、观看过相关二次创作内容的人员,不得直接参与SCP-LW-518收容工作,除非具有站点主管Dr.███的允许,所有参与518项目的人员需每72小时进行一次认知稳定性测试与心理评估。


描述:

SCP-LW-518在物理本体上表现为一只标准的成年欧亚雕鸮(Bubo bubo)。实体高约70厘米,体重约3.0千克。其羽毛整体呈深褐色、黑色与米黄色相间的斑驳保护色,面盘不显著,拥有显著的耳羽簇。生理检查未发现任何非自然特征,除具备极高的智慧与跨物种沟通能力外,其基本生物属性与野生雕鸮一致。

然而,SCP-LW-518具备极强的特异性认知覆盖效应。当且仅当满足下述【特殊收容措施】中提及的特定认知条件(即对游戏《明日方舟》背景及角色“赫默”具备先验知识)的观测者对其进行直接注视、摄像观察或心理感知时,其实体形象将在观测者脑海中被替换为一名年轻的亚人类女性。

根据受影响人员的统一口述,该形象与虚构角色“赫默”高度一致,具备以下特征:

  • 种族特征: 呈现出明显的黎博利(Liberi)族特征,保留有鸮类动物的生理残留。最显著的特征为头部两侧(约相当于人类耳部位置)生长有两簇丰满的、呈灰褐色与白色相间的羽毛,形似其本体的耳羽簇,且可随情绪波动产生轻微的扇动。
  • 体貌与着装: 形象为一名体格纤细、神情严肃的年轻女性。其身高,根据观察者目测其在大概152~154厘米(大约5英尺),配戴有一副黑框圆眼镜。身着一件标准的白色莱茵生命(Rhine Lab)研究员工作服,内衬为深色衣物。
  • 特异性细节: 图像中,该女性形象通常随身携带一个1,或正处于阅读伦理学/医学文献/书籍的状态。

受影响人员报告称,无论SCP-LW-518本体做出何种动作(如下蹲、转头、展开羽翼),在其眼中,该女性形象都会相应地转化为人类可以理解的自然动作(如坐下、回头、张开双臂),且不具备任何视觉割裂感。


SCP-LW-518-1:

SCP-LW-518-1SCP-LW-518产生的现象其主要会影响曾接触《明日方舟》相关内容、了解「赫默」该角色、阅读过「莱茵生命」剧情记录、观看过相关二次创作内容的人员都存在较大概率被SCP-LW-518-1传染。

SCP-LW-518-1的感染有以下几个经典表现形式。

发现过程。


SCP-LW-518是██中用户███的一个帖子「我是不是出幻觉了?我刚刚好像看到了赫默?」。
帖子下的数篇评论引起了基金会注意。

「???楼主你是不是P图了?荒郊野岭居然有赫默哈哈哈,这是哪位COSER那么还原??」

「1楼说的对,妹子cos的挺好!!!」

「?你们神经病吧?这不是一只欧亚雕鸮吗?以及赫默是谁?」

「诶我操我搜了一下后,回来看着确实……怎么行鸟变成妹子了??」

「楼上在发什么神经?」

本帖已被删除。

而后两名基金会探员约瑟夫与杰夫进行了收容,
记录

约瑟夫:“注意收集信息,TUG4-001”

杰夫:“一切正常TUG-002,根据定位信号是发射与前方90公尺注意警戒。”

约瑟夫:“没问题TUG-001”

过了约三分钟,约瑟夫正在观察的时候看见杰夫突然站起来走向了一只「欧亚雕鸮」

约瑟夫: “TUG-001!?”

杰夫看着那只欧亚雕鸮说到“赫默……?等…不对劲!”杰夫恢复了清醒往后退了几步拿着书上的枪械对准SCP LW-518

约瑟夫立刻问道杰夫:“……你在做什么,TUG-001?”

杰夫回答道“目标存在认知异常,我刚刚出现了误判。太像是我喜欢的一个游戏角色了”

“初步判断为视觉认知覆盖。”

而后SCP LW-518发出了声音后:“额?赫默医生你说你要跟我说说话?”

“你在搞什么??TUG-001?你能听的懂这只鸟在说什么?”SCP-LW-518又鸟鸣了一声。

“她刚刚说,她没意义刚刚有个人因为低血糖晕倒了,问我们有没有糖”

约瑟夫沉默了一会儿把裤兜里的用塑料包装包起来的麦芽糖丢了过去,而后影响中的SCP-LW-518变吊起来麦芽糖往一个地方飞去,并且叫了一声。

“她让我们跟上,TUG-002我们信她一次好吗? 她的感觉让人舒适”

“对不起TUG-001我不能放任去送死”杰夫没有犹豫转身说到“那还不赶紧叫支援?”

“你说的,的确有道理TUG-001”

约瑟夫立刻发送增援请求。

“XX 这里是TUG-003和TUG-004,根据命令支援一起”

“?”

“TUG-001它说的什么?”

“她说她知道我们会来,并且她说她知道我们并且愿意配合”

“那就先带回去?”


事后目击者被治疗后进行了A级记忆删除。而后Dr.M███在SCP-LW-518被带回后展开了实验。


第一次了解 - 20██年██月██日

人员:Dr.M██5、SCP-LW-5186

过程:

Dr.M██:你好,这里是Dr.M██。请问您就是赫默女士?

SCP-LW-518:你若觉得是那便是。
@@@#
Dr.M██:请问什么叫「你觉得是,那便是?」

SCP-LW-518:很简单,你们眼中形象是不同的对吧?那不过是匹配你们眼中最符合我形象的.


权限不足



已确认您有足够权限





微距了,是FNFzzz