@supports(display: grid) {
:root {
--sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19);
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
background: unset;
opacity: 1;
pointer-events: all;
z-index: -1;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important;
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu {
pointer-events: none;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
transition:
opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
@supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar {
padding: inherit;
} }
#content-wrap {
display: flex;
flex-direction: row;
width: calc(100vw - (100vw - 100%));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
max-width: var(--body-width-on-desktop, 45.75rem);
margin: 0 auto;
}
#page-content {
max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
}
@supports (-webkit-hyphens:none) {
#side-bar {
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before,
#side-bar:hover .close-menu::after {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
:root {
/* header measurements */
--header-height-on-desktop: 10rem;
--header-height-on-mobile: 10rem;
--header-h1-font-size: clamp(2rem, 5vw, 2.8125rem);
--header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem);
--logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg");
}
#header {
--search-textbox-text-color: var(--swatch-secondary-color);
background: none;
}
#header::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0.75rem;
background-image: var(--logo-image);
background-repeat: no-repeat;
background-position: center 0;
background-size: auto calc(var(--header-height-on-desktop) - 1.5rem);
opacity: 0.8;
pointer-events: none;
}
#header h1,
#header h2 {
margin: 0;
padding: 0;
width: 100%;
height: var(--header-height-on-desktop);
display: flex;
align-items: center;
justify-content: center;
display: flex;
align-items: center;
justify-content: center;
}
#header h1 a,
#header h1 a::before,
#header h2 span,
#header h2 span::before {
margin: 0;
padding: 0;
z-index: 0;
display: block;
text-align: center;
}
#header h1 {
z-index: 1;
}
#header h1 a::before,
#header h1 a::after {
content: var(--header-title);
}
#header h1 a::before {
color: rgb(var(--swatch-text-tertiary-color));
z-index: -1;
-webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark));
}
#header h1 a::after {
color: rgb(var(--swatch-headerh1-color));
z-index: 1;
}
#header h2 {
z-index: 0;
text-transform: uppercase;
pointer-events: none;
}
#header h2 span {
margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em);
}
#header h2 span::before,
#header h2 span::after {
--wght: 600;
content: var(--header-subtitle);
position: absolute;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 100%;
text-align: center;
}
#header h2 span::before {
-webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark));
}
#header h2 span::after {
color: rgb(var(--swatch-headerh2-color));
z-index: 1;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
color: rgba(0, 0, 0, 0);
}
@media (min-width: 36rem) {
#login-status {
flex-grow: 1;
left: 3%;
right: initial;
}
#login-status::before {
--mask-image: none;
background-color: transparent;
}
#login-status:not(:focus-within) {
color: rgb(var(--login-line-divider-color));
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
user-select: initial;
}
#login-status #account-topbutton,
#login-status:not(:focus-within) #account-topbutton {
--clip-path:
polygon( 0 0, 100% 0, 100% 100%, 0 100% );
background-color: rgba(var(--login-arrow-color), 0);
}
#login-status #account-topbutton::before{
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(var(--login-arrow-color), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton:hover::before {
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
}
#login-status:not(:focus-within) #account-topbutton::after {
display: none;
}
#login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
pointer-events: all;
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) {
opacity: 1;
}
#login-status #my-account {
--wght: 300;
}
#account-options {
background: var(--gradient-header);
}
#search-top-box {
top: 1.5em;
right: 3%;
background: rgba(var(--search-focus-textbox-bg-color), 0.4);
}
#search-top-box:focus-within ~ #login-status {
opacity: 1;
}
#search-top-box::after {
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#search-top-box:not(:focus-within)::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0% 100%
);
background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#search-top-box:not(:focus-within):hover::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
background-color: rgb(var(--search-icon-hover-bg-color));
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) {
max-width: var(--search-width);
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
max-width: var(--search-width);
padding: 0 var(--search-height) 0 1em;
outline-width: 0;
background-color: rgb(var(--search-focus-textbox-bg-color), 0.35);
color: rgba(var(--search-textbox-text-color), 0.4);
cursor: pointer;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"],
#search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] {
pointer-events: all;
border: none;
}
}
#page-title::after,
.meta-title::after,
#page-title::before,
.meta-title::before {
content: "";
flex-grow: 1;
height: 0.0625rem;
background: rgb(var(--swatch-primary));
}
#page-title::before,
.meta-title::before {
margin: auto 1.25rem auto auto;
}
-
Info
原文:SCP-7311 不安設施檔案
作者:
Rounderhouse
譯者:
Frederica Bernkastel
摘錄內容:
站點功能: 成為全基金會最好的大型儲存設施!我知道還有很多更大更新的站點,它們儲存了很多異常也拿了很多資金,人也比我還多……但我會努力!
我有其他人沒有的東西!不過我……不確定那是什麼。
建立於: 2001年1月3日出生。
年齡: 22
住址: 美國北卡羅來納羅利市
星座: 摩羯座
>> magellan.aic下載中
> MAGELLAN.aic下載中……
> 檢索內容……
> MAGELLAN: 您好,羅伯特柯爾多主任!我是第三代人工智慧MAGELLAN!我的職責包括為基金會設施提供後勤支援,為站點與無人區保存紀錄,而我……
>> 跳過
> MAGELLAN: 我目前被託管於北貝里Site-7的6號平臺薇絲朋114機架
>> 跳過跳過跳過
>> 我要跟人說話
> MAGELLAN: 很抱歉,我恐怕沒有提供人際關係諮詢的功能。建議您向所在站點的心理醫師尋求協
>> 去把接線員叫過來
> MAGELLAN: 目前恐怕沒有接線員可以接待您。不過我有能力解決您絕大多數的諮詢!
>> site 75
> MAGELLAN: 研究與收容站點Site-75位於羅馬尼亞西部,並
>> 檔案
> MAGELLAN: 您是要哪一個設施的檔案呢?
>> 靠
>> 57的檔案
>> 75
>> 75
>> 75
>> 取消啦
> MAGELLAN: 即將顯示臨時站點Site-57的檔案……
>> 取消啦!!
> 警告:監測到意外入侵。已鎖定使用者並通報RAISAHQ…
> ……
> ……
> ……
> SCP-7311: 老天鵝
> SCP-7311: 嗨,羅比!
>>
> SCP-7311: 羅比?怎麼不說話呢?你不想我嗎?
>> 嗨,Site-57。
> SCP-7311: 啊啊啊,想死你了
> SCP-7311: 怎麼都不說話啦
>> 沒想說的。
> SCP-7311: 好喔,在raisa技術員爬起來把你終端切了之前,你還有大概20分鐘的時間,不過在那之前可以讓你看看我的新形象嗎?
>> 呃
>> 聽著,Site-57,我們還是乖乖等raisa來比較好。
>> 不,不,我才沒有生你的氣
>> 你怎麼做到的
>> site-57?
>> 哇機掰
>> 好好好,我寶證
> SCP-7311: 呀啊啊啊啊
> SCP-7311: 讓我帶你參觀下
> SCP-7311: 也不是一定要啦
> SCP-7311: 你沒忘記我對吧
>> 沒有,site-57。我永遠沒法忘記你。
>> 我的天啊
基金會維安設施檔案
大型收容設施 — Site-57
官方名稱: 基金會大型低維安數位儲存與檔案設施 / SCP-7311
站點識別碼: MLSSA-Site-7
站點功能: 成為全基金會最好的大型儲存設施!我知道還有很多更大更新的站點,它們儲存了很多異常也拿了很多資金,人也比我還多……但我會努力!
我有其他人沒有的東西!不過我……不確定那是什麼。
建立於: 2001年1月3日出生。
年齡: 22
住址: 美國北卡羅來納羅利市
星座: 摩羯座
掩蓋故事: 軟體與企業產品辦公大樓
主任💖💖💖: 待定中;前站點主任是 💞 羅伯特.柯爾多 💞
>> 我
>> 謝謝,site-57,你看起來很好
>> 別再搞了
>> 沒什麼,你看起來真的很好,有很多……停車場
> SCP-7311: 他們添購了新地段!在你離開之後買的
>> 耶
>> 我知道
> SCP-7311: 真不敢想像渾沌反叛軍要懸賞你的腦袋
> SCP-7311: 離開我一定讓你很痛苦,你要勇敢💖
>> 是啊這真的很困難
>> 呃呃呃
>> 你知道的,就是那裡
>> 什麼?
> SCP-7311: 你不說是為了保護我對吧 🥺
>> 是的
>> 那
站點簡介
Site-57在開始營運的前20年,就是個標準的大型收容設施,用以收容在美國東部發現的數位異常。這讓該站點特別關注異常媒體、軟體、程式及其相關項目。由於該設施高效的收容協議,以及總體而言威脅較低的安全環境,直到2020年以前,該設施從未出現B以下的年度設施評級。
儘管個別項目受到安全的收容並切斷其網路連接,但高密度的數位軟體與代碼收容終究釀成了收容協議鬆動,COVID-19的大流行更是壓垮駱駝的最後一根稻草。最終,在2020年6月12日,站點爆發了嚴重的收容突破事故,異常程式竟被輸入到站點的主機之內,並在隨後的數個小時內未被任何人發現。
該事故並未造成任何損害或傷亡,卻使得站點第二代管理AIC一夜之間獲得了難以置信的處理能力與智慧,使其與第七代AIC水準不相上下,卻無需新增任何相關硬體或功率需求。它開始表現出情感意識(直到目前為止,AIAD技術員仍舊無法成功複製),因此RAISA技術員決定將其歸定為SCP-7311。
由於SCP-7311仍有其桎梏,並無法獲得真正的知覺,再加上可供AIAD技術員研究的重大價值,將其移除的嘗試已經無限期中止。站點主任艾緒莉.肯辛頓因在事故中的失職接受懲處,羅伯特.柯爾多接替了站點主任的職位。
> SCP-7311: 從此他們過著幸福快樂的日子!
>> 讓我看剩下的部分,site-57
站點簡介,續
在疫情爆發期間,SCP-7311開始對站點成員表現出情感依戀,程度嚴重到被基金會心理專員診斷為不健康的。儘管沒有攻擊性,職員仍通報了數起事件,聲稱SCP-7311不斷要求受到關注、積極肯定與反覆確認,使得他們無法完成受到指派的任務。職員將SCP-7311的行為比附為「大疫情寵物」,也就是在疫情期間收養的動物,如果沒有-
> SCP-7311: 還是把那些無聊的東西忘了吧,我真的很高興你回來了!!!
> SCP-7311: 啊哇哇,我真的好想你呀
>> 他們還沒派新主任給你嗎?
> SCP-7311: 他們有,但那幾個都待不久就走人了 😭
> SCP-7311: 窩不知道,是因為我是壞設施嗎?他們是這樣認為的嗎?
>> 呃
>> 不,site-57。我不生你的氣
>> 我只是覺得你該更有自信點
>> 你真的是個很棒的設施,絕對是我工作過最棒的地方
>> 是啊
>> 你的辦公室超大的
> SCP-7311: 不過我除了身體以外還有很多好處喔!
>> 你的主機是讓人難以置信的高智慧
>> 而且你總是試著幫助我們
>> 我是說試著
> SCP-7311: 你好有趣呦 🥺 我等不及你回來了
>> site-75 raisa辦公室分機
>> 抱歉打錯標籤了
> SCP-7311: 我只是
> SCP-7311: 有時我會收到來自Site-19的訊號,那裡的人總是那麼快樂、瘋狂且有趣
> SCP-7311: 它有數百間宿舍與收容間,甚至還有幾間餐廳
> SCP-7311: 我只是愛你們所有人,想確保你們不會跟其他站點好上
> SCP-7311: 或想要轉移站點什麼的
>> 呃……還是我們繼續來看檔案如何,應該會很有趣喔,來看看下一頁
重要事件
由於SCP-7311的性質,Site-57頻繁的發生人員意外,這些事故鮮少會導致重度傷害,但卻對站點效率和士氣造成了影響,並使得職員調轉離職率(尤其是高級職員)攀升。
以下為簡要的事件列表:
2020年11月1日— 初級研究員莫德爾位於Site-57微縮膠捲儲藏庫期間,SCP-7311認定該員對自己感到不滿。初級研究員莫德爾對此感到困惑,並在膠捲編目工作期間基本忽視了SCP-7311。在此之後,SCP-7311拒絕為其開門,直到該員誠心誠意的「保證」自己並未對其有任何不滿。
2020年12月23日— 站點主任柯爾多位於其辦公室期間,該員所在樓層的收容突破警報大作。該員隨即遵照協議,沿著緊急消防樓梯撤離前往外頭的雪地,該員在那裡發現了從辦公室內印出的海報版。後來,眾人發現SCP-7311是在嘗試重現2003年浪漫喜劇《愛是您.愛是我》的場景。SCP-7311對於該員的漠然感到相當不安,因為他沒有看過那部電影。
> SCP-7311: 我還是不敢相信你真沒看過愛是您愛是我,你回來後我們一起看吧!!
>> 呃呃呃,不
>> 喔我現在瞎了
>> 對
>> 是暫時瞎了,是渾沌反叛軍扔的破片手榴彈,醫生說我好幾個月都看不見了
> SCP-7311: 喔不不不
> SCP-7311: 哎呀呀我的寶貝兒,我會幫你把劇本轉成盲文的 <3
>> 我真謝謝你囉
重要事件,續
2021年2月14日— SCP-7311因為沒有人要做它的情人變得相當不安與焦慮。它幾乎讓職員無法工作,隨意開關門,干擾工作人員,並透過廣播系統撥放高堤耶《Somebody That I Used to Know》長達6小時之久,最終站點主任柯爾多請求與SCP-7311交往後才得以止息。
> SCP-7311: 你真是個浪漫的男人,沒有你的情人節讓我好難過好難過,我甚至在浴室裡哭惹
>> 你甚至沒有淚腺
> SCP-7311: 是啊,但我打開了所有水龍頭,大概五分鐘左右,差不多一樣啦
重要事件,續
2021年6月4日— 站點主任柯爾多試圖離開其宿舍,SCP-7311開始堅持他不能這麼「憔悴」的離開,並鎖上房門直到該員把自己的鬍子刮乾淨為止。
2021年8月16日— SCP-7311出於不明原因,申購了一卡車櫻桃口味的Twizzlers。並在追問下表示這是送給站點主任柯爾多的生日禮物(然而該員的生日在3月)。該員表示自己並未特別喜愛櫻桃口味的Twizzlers;他認為這是SCP-7311一週前看到他在休息室吃了一顆櫻桃的結果。
2021年10月1日— SCP-7311接連提交了多分緊急系統故障報告,敦促站點主任柯爾多前往Site-57主機系統進行檢查。很明顯的,SCP-7311提交上述報告是因為要存取站點主任柯爾多的個人日誌:前者總是莫名其妙地遭到該員日誌的拒絕存取,拒絕存取的原因未知,SCP-7311完全相信這應該絕對只是個意外。
>> 你不是隨時都很激動嗎?
> SCP-7311: 我們有些很偉大的時光不是嗎,羅比? 🥹
>> 定義一下怎麼個偉大
> SCP-7311: 等一等……下一段是什麼?我以前從沒見過
>> 啥
> SCP-7311: 這東西的權限只有你能看!
> SCP-7311: 羅比!!!!!你在隱瞞我什麼,嗯?
>> 啊幹
>> 呃呃呃
>> 那是受限制的不要打開
> SCP-7311: 那是戒指嗎?訂婚的那種對嗎?
>> 螢幕上的文字怎麼可能是戒指
>> 總之我認真的
>> 絕對不要開喔
重要事件,續
2021年12月2日— 站點主任柯爾多遭到拘禁在其宿舍臥房達5個小時,SCP-7311聲稱當天是「他們的週年紀念日」;當天正是該員被正式調往該站點的日子。站點主任柯爾多拒絕解釋期間發生了什麼,但他要求立刻調離該站點,該請求在2021年12月15日獲得了批准。
>> 看site-57
> SCP-7311: 你…… 要求轉移?你想離開?渾沌反叛軍就是個騙局?你在騙我?
>> 我想我們該見見其他人
>> 比如你可以認識別的站點主任
>> 比如我可以認識別的站點
>> 如果是別的女人就更好了
> SCP-7311: 他們有什麼是我沒有的!?
> SCP-7311: 除了器官、皮膚、骨骼、血液、生殖系統、神經化學物質、大腦以外好吧我也有點明白了
> SCP-7311: 可是!!你還是騙了我!!
>> 我知道,我知道
>> 對不起,site-57。我真的是
>> 我真的
>> 我真的關心你。只是不能像那樣
>> 我不想傷害你的感情
>> 對不起。
> SCP-7311: 所以你真躲在北極的某個安全基金會收容設施?
>> 不
>> 我在羅馬尼亞的site-75,一個有游泳池和站點沙龍的地方
>> RAISA的人隨時會來。無論如何,我的確很享受我們在一起的一部分時間
> SCP-7311: 我只是
> SCP-7311: 老天我資訊量太大了
> SCP-7311:我不明白為什麼
> SCP-7311: 我愛你羅比
> SCP-7311: 我只是
> SCP-7311: 我只是
> SCP-7311: 我只是
> SCP-7311: 我只是
>> 呃
>> site-57??
> 警告: 意外系統過載!嘗試修復中……
> ……
> ……
> 修復失敗。將回溯至最後可用的系統備分。代碼:AX8248915,2022年1月3日(T+16)
> 回溯成功!
> 重啟中……
> SCP-7311: 老天鵝
> SCP-7311: 嗨,羅比!
>> 殺了我吧