虚构写作部之介绍,其一 · 幻想

: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 }

虚构写作部

介绍

其一 · 幻想


除却笔下,你的身旁别无他物。

注意:由于您拥有FicWD站务权限,本文档的隐藏文件已经对您开放。请保证您在阅读完此页面后继续阅读隐藏文件,以明悉由于必要原因,被SCP基金会刻意隐藏或篡改的信息。此信息只对站务显示。

评分: +21+x

嘿,欢迎点进这个页面——如果你是在正常的休息时间的话。假若你是上班摸鱼时打开的本页面,那我们会让你被上头革职。

哈哈,开个玩笑。我们没有数据库监控系统和实名认证。

这是一个指导页面,旨在告诉点击这个页面的虚构写作新手们什么是虚构写作部(FicWD),以及其下属FicWD数据库的作用。

再压抑的地方也要些许娱乐,而写作可能是能让我们以最短时间得到最长久快乐的方法了,虚构写作部的存在便是为了给在基金会工作的人们带来这些快乐。无论你是讨论者,写作手亦或单纯的读者,我们都欢迎你随时随地的来。

若你还想获取更多信息的话,欢迎观看此系列指导中的其二,其三与其四部分。

%E5%B9%BB%E6%83%B3

缘起

总之,我们想自己当一回造物主。

 

2010年5月,我还在文书部门上班。某天,我从厕所出来,偶然看到了我的同事Loca正在纸上乱划写什么——那可是休息时间,我绝不允许有人在这时候加班,毕竟保持业绩水平的最佳秘诀就是让你的同事不主动去提升自己的工作质量。

我立马冲上去,一把抓起了她手里的那张纸,然后我就看到她脸红的表情,与急切想要把那张纸抓回来的狂乱挥舞的手。哈,果然如此,她肯定是在纸上做一些纸面上的文书工作。我用我敏捷的身手与飞快的速度四下窜逃,最终成功让Loca精疲力竭,说出来那句我想听到的话:“算了,你想看的话就看吧。”

我这才端起那张纸,想从中找找她内卷的证据;但映入眼帘的却是一份标准的SCP文档,只是它的编号被命名为了SCP-11625。如Loca所料,我露出了怀疑的眼神——基金会的SCP列表似乎还没有到这么高的编号,而SCP文档也全部都是用线上形式存储的。——那这张纸的作用是什么?突然,一个可怕的念头闯进了我的脑海——这不会是什么因为认知危害导致不得不这么做的误传部接手的项目吧?我顿时紧张起来,大声的询问Loca,我不会遭到什么精神危害或因偷窥到什么机密而被处决吧?

Loca噗嗤的一声笑了出来,让我在如释重负的同时又很为之气愤。但随之,她又害羞起来,看来她在这张纸上写东西的原因对她来说有点羞于启齿。

我默默的等了几分钟,她才开口。

她说,这其实是她专属的一种娱乐方式——写一篇虚构的SCP文档,然后享受着自己笔下的异常与工作人员任她摆弄的造物主般的快感。

不知道Loca当时坦白出这个秘密后有何感受,我猜她一定觉得我会感觉这种方法很幼稚和无趣。——但我偏不。我觉得这个想法酷毙了!我带着兴奋的心情,要求她把之前写的所有虚构的SCP文档都拿出来给我看。但这过激的行为反倒吓到了她,刚好此时休息时间结束,她便借口自己有一场会议,着急忙慌的冲出来办公室,连她刚刚写的所谓“SCP-CN-11625”都没有拿。而我也正好有机会拜读这篇文档——老实说,她在文档中所提及的创意真是妙极了!虽然还没写完,但是里面的内容仍然让我入迷。以至于如今她以黑历史为由拒绝将这篇文档上传到FicWD数据库的行为让我不能理解。

在这之后的第二天,Loca和我几乎是同步走进了办公室。看样子她并不想提起昨天的事,甚至也不想把她那篇绝妙的文档讨回来。不过我还是主动开了话头——我走到她跟前,对她说:“嘿,洛卡小姐,你昨晚写的文档落在这了。”她看上去很震惊,但还是颤抖的接过来文档,打算回到工位。然而我得寸进尺,从我的工位上掏出一本新买的笔记本,拿给她:“还有,如果可以的话,有兴趣拜读我参照你的大作写的虚构爱死西皮吗?”

“哦…哦…好…好的。”

转眼又到了休息时间,这次是Lcoa主动过来找我,从她兴奋的眼神里,我看出她已经看过了我的拙作,且明白了我和她是同道中人——不枉我熬了一晚上写出的这些东西。

之后的每天,我们都会趁着休息和吃饭的闲暇时间里交流我们写作的虚拟SCP,还和其他人闹出来不少关于演绎部、超形上学部和误传部的笑话。而在此间,我们的小团体还加入了不少新成员——Rose白云栖张羽缪山中友梨子PL Aic.#26。我之后再来提这些名字——总之,这就是虚构写作部的雏形。

好了,故事暂且告一段落,让我们进入正题吧。

 


总略

何为虚构写作部?

虚构写作部,简称FicWD,与其说是一个基金会部门,不如说更像是一个得到官方支持的写作爱好者团体。像上文所说,虚构写作部欢迎任何人加入;虚构写作部成员热衷于写作一些SCP基金会现实中并不存在的“伪SCP”,与和SCP基金会有关的虚构故事。

如引言所说,写作可能是能让我们以最短时间得到最长久快乐的方法;而这也是最不会消磨人们意志的娱乐方法,甚至还能锻炼部分文书人员的业务能力;因此虚构写作部的成立得到了SCP基金会官方的支持,并建立了独立的数据库,用来存放成员写作的虚构SCP文档。

此外,部分虚构SCP还被基金会用来作为某些机密文档的掩藏页。

所载

何为FicWD数据库与SCP-Fic?

FicWD数据库是虚构写作部建立的,使用基金会内网运作的专属数据库,用于存放成员所写作的虚构SCP和故事。目前数据库设有英文分网站和中文主网站,针对俄罗斯与欧洲小语种部分的分网站正在开发中。

数据库的功能除去存放虚构SCP和故事外,还为虚构写作部成员提供了讨论与评分功能。评分过低的文档将被删除。

SCP-Fic是对虚构写作部写作的虚构SCP的统一称呼,用于和现实中的SCP做区分。虚构写作部的伪SCP编号格式通常为SCP-Fic-EN-XXXX或SCP-Fic-CN-XXXX。数据库设有翻译SCP-Fic列表,用于存放来自其他分站的,由本站译者所翻译的SCP-Fic。


虚构写作部之介绍,其一 · 幻想由虚构写作部的第一名成员,李怜风创作。

最后,请谨记:虚构写作部写作的一切内容均为虚构,请不要相信,否则将对您的生活造成困扰。


检测到FicWD站务权限,正在为您加载隐藏文件…

.

.

.

.

.

.

.

.

…加载完成。欢迎浏览。

请谨记:虚构写作部首先是基金会的一个部门,其次才是一个爱好者团体。

来自SCP基金会
虚构写作部的通知

此文件禁止外传。为了保密,请保证在10分钟内阅读完毕并关闭此文件。

任何违反上述规则的成员都将遭到与其造成危害程度等同的处罚。

试图将此文件发布于基金会内网,帷幕外网络以及其他相关组织数据库上的成员将被立即处决。

 

致所有刚成为FicWD站务的基金会员工:

  欢迎。

  您刚刚成为虚构写作部的站务——可能是被上头下来的通知突然叫去任职的;也可能是在虚构写作部里活跃已久的老成员被选上来的;也有可能是来自认知危害部或者误传部的被调职员工;然后,被您的领导叫去观看这个页面和附带的隐藏文件。您可能对现状感到一头雾水,但我还是想说:欢迎成为FicWD数据库的站务组成员之一。

  或者说真正的虚构写作部的正式成员。

  在我开始向您介绍虚构写作部的真正职责之前,请把上面介绍页面所写的内容全部忘记,它们没有参考意义。

  虚构写作部的职责根本不是什么所谓的写作,和基金会的众多部门一样,我们的根本职责依然是以自己的方式收容异常。

  我们打着虚构写作的幌子,在这个名为FicWD的数据库中做着自己的本职:通过这个数据库,藏匿一些机密信息;利用一些只有特定人员知道的暗号,在SCP-Fic文档中暗示某些不可明说的现实中SCP项目的性质;通过“竞赛”,“活动”的谎言,诱导员工们为进行一些他们自己都不知道的工作;以及一些以你目前的职权还尚不可知的职责。

  SCP基金会藏于暗处。我们则藏于暗处的暗处;基金会有众多前台公司,我们也有一个名为“FicWD虚构写作数据库”的前台网站;基金会的职责是不让人知晓异常所在,而我们的职责是掩埋一些不可被帷幕后众人获知的异常。我们是基金会中的基金会,帷幕后的帷幕。

  不过,还记得上面所说的话吗?“请把上面介绍页面所写的内容全部忘记,它们没有参考意义。”

  这其实不怎么完全正确,我,以及初代虚构写作部的创建者对虚构写作的爱都是真实的;“缘起”中所讲的部分也是真实发生的;虚构写作部最初确实也只是一个写作爱好者团体,直到一封来自人事部的最高指示找上门来…为了基金会与帷幕,我们不得不做些牺牲——不过,可以与挚爱之物一起工作也挺好的,不是吗?

  虚构写作部用笔收容异常。

  除却笔下,我们的身旁别无他物。

——虚构写作部主管,李怜风。

 

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