Wow! You flipped a card and got: SCP-XXXX!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 16:59
:root {
--timeScale: 1;
--timeDelay: 0s;
}
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
position: absolute;
content: " ";
width: 100%;
height: 0.5rem;
background-color: rgb(var(--black-monochrome, 12, 12, 12));
transform: translateY(-0.74rem);
}
/* DIVIDER */
.anom-bar > .bottom-box::before {
animation-name: divider;
animation-duration: calc(0.74s * var(--timeScale));
animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.32,.38,.39,.94);
animation-fill-mode: backwards;
}
/* CLASSIFIED LEVEL BARS */
div.top-center-box > * {
animation-name: bar;
animation-duration: calc(0.45s * var(--timeScale));
animation-iteration-count: 1;
animation-timing-function: ease-out;
animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
/* TOP TEXT */
div.top-left-box, div.top-right-box {
clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
div.top-left-box > *, div.top-right-box > * {
position: relative;
animation-name: bottomup;
animation-duration: calc(0.65s * var(--timeScale));
animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: ease-out;
animation-fill-mode: backwards;
}
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
animation-name: expand2;
animation-duration: calc(0.5s * var(--timeScale));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.12,.41,.27,.99);
animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
div.main-class::before, div.main-class::after {
animation-name: iconslide;
animation-duration: calc(0.45s * var(--timeScale));
animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.12,.41,.27,.99);
animation-fill-mode: backwards;
}
/* BOTTOM TEXT */
div.main-class > *, div.disrupt-class > *, div.risk-class > * {
animation-name: flowIn;
animation-duration: calc(0.42s * var(--timeScale));
animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: ease-out;
animation-fill-mode: backwards;
}
/* DIAMOND */
div.arrows {
animation-name: arrowspin;
animation-duration: calc(0.7s * var(--timeScale));
animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.12,.41,.27,.99);
animation-fill-mode: backwards;
}
div.quadrants > * {
animation-name: fade;
animation-duration: calc(0.3s * var(--timeScale));
animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.12,.41,.27,.99);
animation-fill-mode: backwards;
}
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
animation-name: nodegrow;
animation-duration: calc(0.4s * var(--timeScale));
animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.12,.41,.27,.99);
animation-fill-mode: backwards;
}
div.diamond-part {
clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
animation-name: diamondBorder;
animation-duration: calc(0.8s * var(--timeScale));
animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.32,.38,.39,.94);
animation-fill-mode: backwards;
will-change: box-shadow;
}
/* MOBILE QUERY */
@media (max-width: 480px ) {
.anom-bar > .bottom-box::before {
display:none;
}
.anom-bar > .bottom-box {
box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
}
div.top-center-box > * {
animation-name: bar-mobile;
animation-duration: calc(0.9s * var(--timeScale));
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
div.anom-bar-container { --timeScale: 0; }
}
/*-------------------------*/
@keyframes divider {
from { max-width: 0%; }
to { max-width: 100%; }
}
@keyframes bar {
from { max-width: 0%; }
to { max-width: 100%; }
}
@keyframes bar-mobile {
from { max-height: 0%; }
to { max-height: 100%; }
}
@keyframes bottomup {
from { top: 100px; }
to { top: 0; }
}
@keyframes expand1 {
from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
from { opacity: 0; transform: translateX(-5rem);}
to { opacity: 1; transform: translateX(0);}
}
@keyframes expand2 {
from { opacity: 0; max-width: 1%;}
to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
from { opacity: 0;}
to { opacity: 1;}
}
@keyframes flowIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes arrowspin {
from { clip-path: circle(0%); transform: rotate(135deg); }
to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
from { transform: scale(0);}
to { transform: scale(1);}
}
@keyframes diamondBorder {
from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
Special Containment Procedures: SCP-XXXX is contained in a cuboid cell 10 m by 10 m by 10 m. The interior of the cell maintains an ultra-high vacuum to prevent particle annihilation, and specialised equipment to re-initialise vacuum in case of an external breach. On the ceiling there are annihilation detectors every square meter, totalling 100 detectors for redundancy and location of an anti-matter source. All objects in the containment cell will be labelled with a black plus sign on a red background; this is to prevent objects from going into the anti-matter universe. SCP-XXXX is located in a dimensional unit in the Marie Byrd Land portion of Antarctica to prevent casualties if an incident were to occur. SCP-XXXX is not to be within range of any type of explosives and or high-speed projectiles, all guards assigned are to be equipped with melee weapons.
Description: The exterior SCP-XXXX is a shipping container with standard dimensions with one door. The interior of SCP-XXXX holds two dimensional doorways, one to the interior of the container and the other to a parallel universe, that will henceforth be referred to as Anti-Earth. Contrasting the exterior, the interior has two doors on the end faces, each close in front of the dimensional doors. The interior is grated on the walls and ceiling whilst the floor there is space for potential cargo and forklift. The atmosphere inside is toxic air and ventilation is not to be attempted due to the annihilation hazard, due to this all personnel entering SCP-XXXX are to wear airtight hazmat suits.
The dimensional doorways have a liquid-like surface tension that requires 20 Newtons of force for an object or person to pass through. The doorway decreases the energy emitted by electromagnetic radiation by 54%, therefore light can not travel between both universes without being observed from the inside of the container.
The Anti-Earth is identical to the Earth although the atomic structure is in contrast: Whilst Earth is made up of atoms containing protons (positive charge), neutrons (no charge) and electrons (negative charge) whilst the anti earth is made up of atoms containing anti-protons (negative charge), anti-neutrons (no charge) and positron (positive charge). When atoms from Anti-Earth are transported to Earth; all anti-atoms undergo immediate annihilation destroying the atoms and converting them into pure energy, therefore preventing atoms from one universe from getting to the other is essential as a gamma ray burst with the energy of a nuclear bomb would occur in any object more than 0.5 grams crossed. To prevent cross universe contamination all items and people entering SCP-XXXX are to wear a plus or minus according to their universe's (anti-)proton charge with a red background. Both versions of SCP Foundation on Earth and Anti-Earth have identical containment procedures for SCP-XXXX.
SCP-XXXX was discovered in the African port of Abidjan, the previous owner had described 'floating water' in the container to a college, this message was flagged and both the sender and recipient were given amnestics. The suspected reason for the anomalous properties of the container is the previous cargo it once carried; the cargo in question is an anti-matter trap for a particle accelerator, henceforth referred to as SCP-XXXX-1. SCP-XXXX-1 was recovered and tested for no anomalous properties although to prevent a similar incident SCP-XXXX-1 was incinerated.
Wow! You flipped a card and got: Project Diaspora!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 16:07
:root {
/* New Vars */
--swatch-menubg-extra-dark-color: 30, 30, 32;
/* Old Vars */
--black-monochrome: 20, 22, 24;
--light-pale-gray-monochrome: 250, 250, 250;
/* Primary Theme Colors */
--swatch-background: var(--swatch-menubg-black-color);
/* Background and Header Colors */
--background-gradient-color: 10, 10, 10;
--header-gradient-color-bottom: var(--medium-accent);
--header-gradient-color-middle: var(--swatch-menubg-black-color);
--header-gradient-color-top: var(--swatch-menubg-black-color);
/* Primary Text Colors */
--swatch-text-light: var(--light-pale-gray-monochrome);
--swatch-text-general: var(--swatch-text-light);
/* Primary Menu Colors */
--swatch-menubg-color: var(--swatch-menubg-black-color);
/* Colors for Secondary & Tertiary items like Blockquote and YUI Tabs */
--swatch-secondary-color: var(--swatch-menubg-dark-color);
--swatch-tertiary-color: var(--swatch-menubg-medium-dark-color);
/* Primary Header Colors */
--swatch-topmenu-border-color: var(--swatch-menubg-black-color);
--swatch-topmenu-bg-color: var(--swatch-menubg-extra-dark-color);
--rating-module-text-color: var(--swatch-text-general);
--rating-module-button-color: var(--swatch-text-general);
--rating-module-button-cancel-color: 100, 100, 100;
--gradient-header: linear-gradient(
to bottom,
rgb(var(--header-gradient-color-bottom)) 0%,
rgb(var(--header-gradient-color-middle)) 90%,
rgb(var(--header-gradient-color-top)) 100%
);
--diagonal-stripes: repeating-linear-gradient(
45deg,
hsla(0, 0%, 100%, 0),
hsla(0, 0%, 100%, 0) 0.25vh,
rgba(var(--swatch-menubg-extra-dark-color), 0.1) 0.35vh,
rgba(var(--swatch-menubg-extra-dark-color), 0.2) 0.5vh
);
}
::selection {
background: rgb(var(--swatch-primary-darkest));
}
#search-top-box-input {
background-color: rgb(var(--swatch-menubg-extra-dark-color));
}
#account-options {
background: var(--gradient-header);
}
#login-status {
color: rgba(var(--swatch-menutxt-light-color),0.5);
}
#login-status ul a {
color: rgb(var(--swatch-menutxt-light-color));
}
span.printuser {
color: rgb(var(--swatch-menutxt-light-color));
}
#login-status a#my-account {
padding: 0.15em;
margin: -0.15em;
color: rgb(var(--swatch-menutxt-light-color));
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
-webkit-box-shadow: inset 0 -0.125rem 0 0rem rgba(var(--swatch-primary), 1);
-moz-box-shadow: inset 0 -0.125rem 0 0rem rgba(var(--swatch-primary), 1);
box-shadow: inset 0 -0.125rem 0 0rem rgba(var(--swatch-primary), 1);
-webkit-transition:
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
-webkit-box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
transition:
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
-webkit-box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
-o-transition:
box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
-moz-transition:
box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
-moz-box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
transition:
box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
transition:
box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
-webkit-box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
-moz-box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
#login-status a#my-account:hover,
#login-status a#my-account:active {
padding: 0.3em 0.25em 0.2em 0.25em;
margin: -0.25em;
-webkit-box-shadow: inset 0 -1.5em 0 0 rgba(var(--swatch-primary), 1);
-moz-box-shadow: inset 0 -1.5em 0 0 rgba(var(--swatch-primary), 1);
box-shadow: inset 0 -1.5em 0 0 rgba(var(--swatch-primary), 1);
text-decoration: none;
color: rgb(var(--white-monochrome))
}
.page-rate-widget-box {
background: -webkit-gradient(linear,
left top, left bottom,
from(rgba(var(--header-gradient-color-bottom),0.5)),
color-stop(90%, rgba(var(--header-gradient-color-middle),0.15)),
to(rgba(var(--header-gradient-color-top),0.15)));
background: -webkit-linear-gradient(top,
rgba(var(--header-gradient-color-bottom),0.5) 0%,
rgba(var(--header-gradient-color-middle),0.15) 90%,
rgba(var(--header-gradient-color-top),0.15) 100%);
background: -moz-linear-gradient(top,
rgba(var(--header-gradient-color-bottom),0.5) 0%,
rgba(var(--header-gradient-color-middle),0.15) 90%,
rgba(var(--header-gradient-color-top),0.15) 100%);
background: -o-linear-gradient(top,
rgba(var(--header-gradient-color-bottom),0.5) 0%,
rgba(var(--header-gradient-color-middle),0.15) 90%,
rgba(var(--header-gradient-color-top),0.15) 100%);
background: linear-gradient(to bottom,
rgba(var(--header-gradient-color-bottom),0.5) 0%,
rgba(var(--header-gradient-color-middle),0.15) 90%,
rgba(var(--header-gradient-color-top),0.15) 100%);
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-color), 0.25);
}
#top-bar div.top-bar > ul > li:hover {
background: rgb(var(--swatch-menubg-black-color));
}
#top-bar div.mobile-top-bar > ul > li.sfhover > ul,
#top-bar div.mobile-top-bar > ul > li:hover > ul,
#top-bar div.top-bar > ul > li.sfhover > ul,
#top-bar div.top-bar > ul > li:hover > ul {
background: rgba(var(--swatch-menubg-black-color),0.85);
}
#top-bar div.mobile-top-bar > ul > li > ul > li > a,
#top-bar div.top-bar > ul > li > ul > li > a {
-webkit-box-shadow: inset 0 0 0 0.0625rem rgba(var(--swatch-menubg-medium-color), 0.15);
-moz-box-shadow: inset 0 0 0 0.0625rem rgba(var(--swatch-menubg-medium-color), 0.15);
box-shadow: inset 0 0 0 0.0625rem rgba(var(--swatch-menubg-medium-color), 0.15);
}
blockquote,
.blockquote,
.code {
--swatch-border-color: var(--swatch-menubg-light-color);
border-color: rgba(var(--swatch-border-color),0.25);
}
.yui-navset .yui-nav,
.yui-navset .yui-navset-top .yui-nav {
--box-shadow: rgb(var(--swatch-primary-darkest));
border-color: rgb(var(--swatch-primary-darkest));
}
.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li {
--box-shadow: rgb(var(--swatch-primary-darkest));
}
.yui-navset .yui-nav a,
.yui-navset .yui-navset-top .yui-nav a {
background-color: rgb(var(--swatch-menubg-extra-dark-color));
color: rgb(var(--swatch-text-general));
}
.yui-navset .yui-nav .selected,
.yui-navset .yui-navset-top .yui-nav .selected {
background-color: rgb(var(--swatch-primary-darkest));
}
table.wiki-content-table th {
background: rgb(var(--swatch-secondary-color));
}
table.wiki-content-table th,
table.wiki-content-table tr {
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-color), 0.25) !important;
}
table.wiki-content-table td {
border: 0.0625rem solid rgba(var(--swatch-menubg-light-color), 0.25) !important;
}
textarea,
input.text,
input.checkbox,
div.note,
#lock-info {
border: 0.0625rem solid rgba(var(--swatch-menubg-light-color),0.25);
background-color: rgb(var(--swatch-menubg-extra-dark-color));
color: rgb(var(--swatch-text-light));
}
.code pre span[class*="hl-"] {
-webkit-filter: invert(1) hue-rotate(180deg);
filter: invert(1) hue-rotate(180deg);
}
.owindow .modal-body img {
background-color: transparent !important;
}
.hovertip {
border: 0.0625rem solid rgba(var(--swatch-menubg-light-color),0.25);
background-color: rgb(var(--swatch-menubg-extra-dark-color)) !important;
color: rgb(var(--swatch-text-light)) !important;
}
#footer {
color: rgb(var(--swatch-text-general));
}
.scpnet-interwiki-wrapper {
-webkit-filter: initial;
filter: initial;
margin-top: 1em;
}
.scpnet-interwiki-frame {
-webkit-filter: invert(0.92) grayscale(1) contrast(1);
filter: invert(0.92) grayscale(1) contrast(1);
}
Welcome Dr. Collingwood. Your personal file archive can be found below.
LEVEL 4 BRIEFING: PROJECT DIASPORA
By now, all level 4 staff are most likely aware via word-of-mouth that the Foundation has lost SCP-2000. A bomb manifested via potentially anomalous means on the morning of 6/11/19 has completely destroyed all vital components of SCP-2000, and while repair may be possible, it is beyond the means of current foundation technology. Several emergency requests have been made to our own anomalies to repair the issue, however it appears that some effect is preventing them from executing our requests.
If you've read our briefings, you'll most likely know that SCP-2000 is our primary, sometimes our only hope in preventing the loss of humanity in an XK-class (or worse) scenario. Dr. Clef will of course attest to the fact that it has been used successfully before.
With SCP-2000 apparently neutralized, or at least dormant until a repair method can be devised, the Foundation will now be executing a plan devised in the early days of the Foundation by the O5 Council.
O5 Command has approved a plan to execute Project Diaspora immediately. Project Diaspora consists of a five-part plan, detailed below. FAILURE OF ANY PHASE WILL RESULT IN THE IMMEDIATE STOPPAGE OF ALL PROJECT DIASPORA OPERATIONS ON SCP-3008. THIS IS NOT A CONTAINMENT MISSION. THIS IS A PROTECTION MISSION.
Phase One: Reconnaissance Mission into SCP-3008
Send a series of well-armored D-class, followed by agents, into SCP-3008. Given that Foundation drone video technology worked inside SCP-3008-1's infinite space, the first tests should revolve around communication capabilities. Survivability with proper equipment should be the second test. After no more than two weeks, Project Diaspora should be continued into Phase Two.
Phase Two: Food, Water and Sustainability Testing
Foundation personnel, including at least three researchers, are to enter SCP-3008 during this phase and introduce plant life. Meanwhile, any surviving agents from Phase One are to be relocated to an outpost established by Phase Two researchers.
Phase Three: Resource Extraction Testing
Phase three should be the importation of technology to extract vital resources from "IKEA"-brand products within SCP-3008. Use of anomalous technology to conduct resource extraction may be approved on request.
Phase Four: "Civilian" Life and Site-3008 establishment
With adequate resources and safety measures against SCP-3008-2, Site-3008 is to be established. Site-3008 is to be a space within SCP-3008 secured by a concrete wall at least 15 feet in height and 4 feet in thickness. Site-3008 is to be at least one mile wide by one mile long. All aisles and naturally occurring items are to be removed from Site-3008. Site-3008 is to use at least 25% of its land for agricultural purposes. As many D-class as requested by the research team, within reason, are to begin inhabiting the site as civilians.
Phase Five: Site-3008 full capacity
Phase five is to be initiated no earlier than 365 days after the initiation of Phase four. Upon initiation of Phase Five, construction is to begin on a fully functional SCP Foundation Containment Facility. Site-3008 is to extend the entire space previously used for the initial settlement. Following this, the dimensions of the surrounding human habitation should be extended to 25 miles by 25 miles. All individuals, including those at exchange, are to be retrieved from SCP-3008-1's more distant areas if possible.
Dr. Molly Collingwood, Dr. Angela Williams and Dr. Alto Clef have been assigned to Project Diaspora. Work is to begin immediately. To repeat, SCP-2000's loss makes this a situation of the utmost urgency.
Initial Exploration Log
Exploration Video Log Transcript
Date: 7/23/19
Subject: D-class Personnel
Team Lead: Dr. Angela Williams (remote)
Team Members: D-4381, D-4567
[BEGIN LOG]
Dr. Williams: Alright everyone, may I have your attention please. The inside of this anomaly is an infinite IKEA store.
D-4381: Hah! Well, the meatballs sure beat what you feed us 'round here!
Dr. Williams: I think you'll soon find this is no laughing matter. You're equipped with a helmet, light and camera, equipment to set up a tent, flashlights, and hatchets. When you are inside, you will encounter SCP-3008-2, the "staff".
Redacted for length. Briefing continues approximately 13 minutes
Dr. Williams: With that knowledge, please enter the anomaly.
Both D-class enter SCP-3008, break line of site and enter SCP-3008-1. Minutes later, "night" begins. After approximately ten minutes, the D-class encounter an instance of SCP-3008-2.
SCP-3008-2: The store is now closed, please exit the building.
Dr. Williams: Stay calm! Light up the blowtorches and proceed toward SCP-3008-2.
Video shows bright flash as blowtorch lit up, D-4381 attacks SCP-3008-2 instance, disfiguring it and killing it within a few seconds
D-4381: Holy shit!
Dr. Williams: Their bodies attract more of them. Get out of there and set up a tent before reinforcements show up.
D-4567: Will do, doctor!
D-class run down aisle, encountering and killing another SCP-3008-2 instance. D-class establish a tent about three hundred meters away, in a secluded area behind tables.
[END LOG]
Dr. Clef, Collingwood and Williams:
Please be advised that communications are stable. Deployment of MTF Zeta-46 "Armchair Carpenters" is approved to initiate survivability testing within SCP-3008. Deployment begins on your approval.
The following is a log from MTF Zeta-46's entrance into SCP-3008.
[BEGIN LOG]
MTF-1: We're breaking line of sight now. Entrance to SCP-3008-1 initiated.
Dr. Williams (Radio): Entrance confirmed via helmet camera. All directions now manifesting as SCP-3008-1.
MTF-7: It's currently daytime within SCP-3008-1. We have nothing identified yet. MTF-3, 4 and 5 are going forward in the entrance direction, everyone else is holding here for scouting. Awaiting orders.
MTF-3 Helmet Cam shows a section primarily made up of sofas.
MTF-3: Proceeding down the current aisle. As you can see, we have the most comfortable extradimensional space ever up ahead. Ha.
MTF-3 is walking into a department break, an intersection of four large aisles. On the right side of the walkway is a gun on the floor.
MTF-3: MTF-3 to entrance, I've got something you're gonna want to see.
MTF-6: MTF-3, continue.
MTF-3: Please patch me through to Dr. Williams. Keep your ears open. I don't like the look of this.
The radio crackles as MTF-6 sets up a relay connection
Dr. Williams: Please advise. I see a gun on the floor through your helmet cam.
MTF-3: We have something strange going on here. We've got a gun located here on the floor, it appears to be a standard-issue SCP Foundation gun. It's got a logo on it, it sure as hell looks like some variant of the Foundation to me…
MTF-3 holds up the gun for the camera. It is a standard-issue SCP Foundation agent's gun, with what appears to be an SCP Foundation logo, but the ends of the three arrows toward the center are flattened into a T-shape instead of an arrow.
Dr. Williams: I'm taking the most likely explanation here- we already know people from other dimensions got in, so one of them was probably an agent with their Foundation.
MTF-3: Yeah, I'm hoping so. Because the idea of SCP-3008-2 armed is not reassuring.
MTF-4: I'm standing here next to MTF-3 and MTF-5. I can confirm that this gun was here before, so we can rule out one of us dropping it.
MTF-5: Yeah man you'd be on Keter Duty so fast if you made alternate logos…
MTF-4: Not a laughing matter. We have a phantom gun inside an anomaly we're trying to take over. If that doesn't concern you feel free to fall back to entrance.
MTF-3: Let's move in.
Approximately two uneventful hours pass. MTF-3, 4 and 5 begin falling back to entrance camp when night begins. MTF-1, 2, 6, 7, 8 and 9 have assembled a set of tents and floodlights at entrance camp.
MTF-3: Alright guys, night's starting, we're heading back. ETA one hour running.
MTF-4: I'll cover our rear.
MTF-5: Flanking.
MTF-5: VISUAL ON SCP-3008-2!
SCP-3008-2: The store is now closed ple-
Three rounds fired. Helmet cam shows SCP-3008-2 terminated with minimal effort.
MTF-5: Proceeding toward entrance. SCP-3008-2 instance at 4 o' clock!
Alternating movement and gunfire for 56 minutes until arrival near entrance camp.
MTF-5: Visual on entrance camp lights. Proceeding toward camp, hold your fire.
MTF-1: You heard the man. All units hold fire on movement, fire only on verification.
All MTF members have arrived and entered their tents. Occasional gunfire throughout night, SCP-3008-2 instances incinerated via portable furnace in the morning.
MTF-5: Well boys, time to go the other direction! Who wants meatballs? I ordered Keter-ing!
Dr. Williams (Radio): MTF-5, the meatballs are not to be consumed. Please keep your diet restricted to the provided nonperishable foods.
MTF-6: Ah, dammit. Was really in the mood for some Swedish meatballs.
[END LOG]
Notes: Phase Two is approved. Standard Foundation equipment appears able to easily neutralize the threat posed by SCP-3008-2. As of now, we are designating entrance camp and all areas controlled by SCP Personnel as Area-3008 with the possibility of future designation Site-3008.
MEMORANDUM
FROM: O5 Command
*TO: *Dr. Clef', Dr. Collingwood, Dr. Williams:**
Approval Granted to initiate Project Diaspora Phase Two.
PROJECT DIASPORA PHASE TWO LOGS
Note from Dr. Alto Clef: We are sending in three researchers with experience in relevant fields. We've briefed them on the dangers and inability to return. Doctors Alexis Bryant, Terrell Hernandez, and Dr. Xavier Palmer have been approved to enter SCP-3008 and execute Phase Two testing. All logs returned via ScipNet connection are to be entered below until the end of Phase Two.
Dr. Bryant's Testing Log:
TESTING LOG
DAY 1: One standard young oak tree, four feet tall, has been planted in a large planter. The planter has been placed at the center of Area-3008 and is currently serving as decor. SCP-3008's effect on plant life will be assessed. Various vegetable seeds are to be sprouted in standard soil within a planter.
DAY 6: Oak unaffected by SCP-3008 to this point.
DAY 14: Area-3008 has been relocated as per Phase Two procedure. Plants transported uneventfully. No apparent anomalous effect on plant growth.
[END LOG]
Dr. Hernandez's Testing Log:
Day 1: My job is to scout out a new location. Updating progress here.
Day 2: I'm holed up in a temporary base with MTF-4 and MTF-7 here. We've got a potentially sustainable location. I've deployed my instruments here to check for any harmful effects, but this looks like a decent spot. It's secluded behind several rows of bookcases. We could fit about fifty people back here, and once we're done with that we'll have enough resources we won't need a hidden base anyway.
Day 3: My theory worked. Last night we saw one staff and MTF-7 blew it away before it even saw us.
Day 6: I've sent word back to base, this is the safest spot we've ever found. I'd wager it's safer back here than most cities back in base reality. Dr. Palmer is acting strange though. Every time I get him on the radio he's coming up with outrageous plans. Unless Palmer is Dr. Bright and O5 Command suddenly got a sense of humor, I have a bad feeling about this.
Day 15: Phase three starts tomorrow. Dr. Palmer vanished overnight.
Dr. Palmer's Testing Log:
Day 0: Procured a series of relevant items from SCP-294, including a "Cup of SCP-3008-2 Killer." I ain't [expletive] around.
Note from Dr. Clef: Dr. Palmer is under our constant observation. He had been in communication the day before deployment with a number of individuals who will likely enter SCP-3008 during future deployments. He also ordered a number of unknown substances from SCP-294 and poured them into glass bottles without logging them, which he was observed on security footage carrying into SCP-3008 with him on deployment day.
DAY 1: I'm here with a bunch of head cases! MTF-5-J is driving me up the [expletive] wall. [Expletive] your testing log!
After logging, Dr. Palmer disappeared on the night of Day 15. As of filing time he has not been relocated.
MEMO FROM DR. CLEF: O5 Council has agreed to move SCP-294 into SCP-3008. Phase 3 testing is canceled. Initiating Phase Four testing.
LEVEL 4 BRIEFING- 05 COMMAND
Phase Four of Project Diaspora has begun. Under the request of the research team assigned (Dr. Collingwood, Dr. Clef and Dr, Williams), the following have been imported to newly designated Site-3008:
- SCP-294
- Three fully loaded concrete mixer trucks
- Seven hundred miles of barbed wire
- Yellow paint for lane drawing
- Wood as needed for makeshift home construction
- All construction materials needed for standard containment cells.
A small secure facility is being built within Site-3008, which upon initiation of Phase five next year would expand into a full-size Secure Facility. In the document below, all Phase four activities relayed to base will be logged.
PROJECT DIASPORA: PHASE FOUR LOGS- INCIDENTS AND EVENTS:
Director Williams' Notes from Cameras within Site-3008.
DAY 1: Four hundred D-class personnel, numbered sequentially from D-3008-100 to D-3008-500, were assigned to inhabit Site-3008 as civilians as a test of human civilization within SCP-3008. Personnel set up temporary camps within the site as the concrete interior wall was constructed. Protection measures assembled.
DAY 2: Wood box-like structures serving as rudimentary homes constructed for D-class personnel, furnished with readily available IKEA-brand furniture, primarily beds and tables.
DAY 3: SCP-3008-2 instances have been destroyed easily. Site-3008 is now almost entirely secured. 250 wooden box houses have been constructed so far, and expansion continues. We've noted an unexplained increase in enthusiasm among D-class personnel and researchers alike.
DAY 4: D-class personnel reported seeing Dr. Palmer during SCP-3008's last "night" phase. Several claimed to have seen Dr. Palmer interacting with Dr. Bryant. Dr. Bryant denied this interaction on questioning, claiming that she hadn't seen or heard a word about Dr. Palmer since he disappeared. Strangely, when Dr. Clef ordered MTF-7 to question Dr. Bryant on his own, MTF-7 claimed Dr. Bryant was telling the truth, stating that "I know she is". MTF-7 will be subject to disciplinary action in the event of return to base reality.
DAY 5: Dr. Clef ordered MTF personnel to patrol Site-3008 during the next "night" phase. Strangely, MTF-2, MTF-4 and MTF-7 claim to have "lost" their helmet cameras. MTF-3 also disappeared from the site overnight.
Note from Dr. Clef: We're 5 days into a year-long mission. Something is going very wrong. We need to be prepared to shut this down. Dr. Williams, keep O5 Command at arm's length.
DAY 6: All contact has been lost with Site-3008, spare for MTF-3, who re-established contact ranting and raving for ten minutes before self-termination. While his helmet camera is undamaged, it has not shown anything except standard floors. Final video before hidden camera was found showed Dr. Palmer ordering the following from SCP-294:
"A cup of travel between SCP-3008-1 and base reality"
"A cup of intelligence for SCP-1000"
"A cup of leadership"
Note from Dr. Collingwood (SCIPNet:Me): I don't think I need to explain why this is a problem. Alert all staff down to Level 2 that we've got an unspecified threat from 3008 and put the strongest forces we have at the doors.
UNDER ORDER OF O5 COMMAND: PROJECT DIASPORA IS TO BE STOPPED IMMEDIATELY. COMMAND IS CURRENTLY FORMULATING A COURSE OF ACTION.
Drs. Clef, Collingwood and Williams: O5 COMMAND MEMO
It's been a week since we lost contact. A few hours ago, heavily armed agents were sent in to destroy Site-3008 and terminate all surviving Site-3008 personnel when the events that transpired had been determined. For reasons related to what we've discovered within SCP-3008, it is important to note today's date. Today's date is DECEMBER 23, 2019 (11:56 PM).
Agents (NOT MTF Agents- the situation was at this point too risky) came under mostly-lethal fire from MTF-7 and MTF-2, stationed on top of the fence surrounding Site-3008. Troublingly, the Site-3008 main tower was flying the flag of not the foundation, but a modified flag resembling the logo found on the gun located during the phase one exploratory mission.
Second of all, a handful of agents surviving Site-3008 fire scattered into SCP-3008-1. One recovered the body of MTF-3, who was holding a standard SCP File System Drive. Agent 445381, upon finding this, uploaded it to Dr. WIlliams' office. What it contains illustrates an immediate security threat that we may be able to stop tomorrow. Please read the transcript from Ikeanhistory.mp3 below.
This is Dr. Collingwood. It is December 24, 2019. This morning, Dr. Palmer used what he drew from SCP-294 to re-enter our dimension. We woke up to the sound of containment breach alarms and Keters running through the halls. 173, 682, the usual suspects were all out, but it was worse than that. Palmer had also given SCP-1000 the "intelligence" drink, which brought about a horrifying scenario we had long feared of. An hour ago, I fled to SCP-3008. It might just be the last stable home. I don't agree with them, but it appears there was an insurrection- Site-3008 is living on its own with the use of SCP-294. I have no idea why, but the people inside have adopted the flat-arrow flag and the motto, "The store is now closed, please exit the building". That's right, they're co-opting the staff's call. The D-class even scrapped their orange uniforms for IKEA uniforms. It's all but an independent country in here. The IKEAn empire, haha. If anyone ever finds this, if anyone made it through the XK-class scenario without 2000 to save us, know what happened. Maybe 1000 can fix SCP-2000, O5 said it was beyond our technology… oh god… what if… [Computerbatteryfailure.scip]
While this could be a decoy by the "Ikean Empire", this merits your concern tomorrow.
(CURRENT DATE DECEMBER 24, 2019 12:01 AM)
MULTIPLE KETER CLASS BREACHES. PLEASE CLOSE YOUR COMPUTER AND PROCEED WITH RECONTAINMENT.
Wow! You flipped a card and got: Donnydare!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 15:11
Special Containment Procedures: Site-166 has been constructed on top of the area containing SCP-####, site personnel is to guard the entrance and perimeter in case of a civilian entering range of Site-166. Entrance to SCP-#### is to be locked shut at all times, no electrical devices are to be carried into SCP-#### unless an experiment form has been approved by lead researcher —— in which case the device must be examined and decontaminated before passing through SCP-####'s main cell.
Description: SCP-#### Is a 27 meters² underground structure buried about 50 meters from the surface. The walls, floor and roof of SCP-#### are comprised of membranous tissues surrounded by a thin layer of muscle, further investigation concluded the tissue to be a mixture of synovial membranes and bone marrow, experiments with the goal of finding any matching animal tissue have come out inconclusive. an opening is present on the southern wall of SCP-#### which has been used by researchers as a way of accessing the main space of SCP-####.
When an electrical device is brought into SCP-#### it appears to lose all functionality and will not regain it as long as the object stays inside of SCP-####. After the object has been introduced SCP-#### will start to emit a faint buzzing sound comparable to that of a bee, as of the writing of this file there have not been any successful attempts to record or analyze these sounds but they do not appear to have any anomalous properties. when the object comes in contact with the floor thaumaturgic symbols will manifest in the tissue of SCP-####
Addendum ####-1: Experiment logs
| Date approved |
Summary |
Result |
| 20/5/2018 |
cell-content |
cell-content |
| 11/6/2018 |
cell-content |
cell-content |
| 25/6/2018 |
cell-content |
cell-content |
| 15/7/2018 |
cell-content |
cell-content |
| 4/9/2018 |
cell-content |
cell-content |
| 20/5/2018 |
cell-content |
cell-content |
[[footnoteblock]]
Wow! You flipped a card and got: SCP-6160!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 14:45
BY ORDER OF THE OVERSEER COUNCIL
The following file is Level 3/6160 classified. Unauthorized access is forbidden.
6160
Special Containment Procedures: SCP-6160 is to be kept within a specialized 10m x 10m x 10m containment area of which must resemble that of the Caledonian Forest located within Northern highlands of Scotland. The containment must hold a population of healthy mammals (preferably red deer) as testing has shown that SCP-6160 prefers this species the most. Those entering the containment chamber must be decontaminated before entering and must wear a hazmat suit when interacting with SCP-6160.
In the event of all mammals in SCP-6160's containment decaying, SCP-6160 must be given a live D-Class temporarily until more mammals are provided.
In the event of a containment breach, a squadron of Mobile Task Force Beta-7 ("Maz Hatters") are to be sent to recontain SCP-6160. All traces of SCP-6160 are to be decontaminated in the event of a containment breach. Failure to do so will result in evacuation and full site lockdown of Site-82.
Description: SCP-6160 is a hivemind of an infinitely growing bioluminescent algae that is contagious from both touch and inhalation. Upon touch, SCP-6160 infects the brain of the subject through the limbic system, first causing emotional cessation from the subject. From there, SCP-6160 finely modifies the neurochemistry of the host. After this, the host enters a state of extreme psychosis as its mind is slowly invaded by SCP-6160. Then, the host will cease all movement quite literally dying mentally, however, the physical body remains intact although gaining an increased decay rate. The new creature is known as SCP-6160-1.
SCP-6160 then continues to grow around the body of SCP-6160-1 causing a glow starting from the majority of holes in the face (the mouth, the nose, the eyes, rarely ears). The color of this glow is generally a light shade of blue or white. This should be communicated to all Mobile Task Force Beta-7 units as it is vital to the decontamination of SCP-6160 during a containment breach.
SCP-6160 will proceed to feast upon the organs of SCP-6160-1 instances, however, will refuse to devour bone or muscle. It is theorized that this is to keep the motor functions of its host intact as to allow for movement. Mammals consumed by SCP-6160 that are in possession of rhinocerotidae (horns) will be engulfed around the horn area causing an extremely bright glow. It is suspected that SCP-6160-1 gets its glow from ionizing radiation, similar to that from nuclear chain reactions.
After SCP-6160 has overtaken every function of SCP-6160-1, decay will begin causing fur and skin to often green in color. This can often be seen as similar to the typical media depiction of the fictional horror creature known as a "zombie".
Addendum-6160.1: Discovery
SCP-6160 was discovered in Caledonian Forest in northern Scotland, A deer hunter, at the time, was searching for red deer until he stumbled upon a herd of deer, all infected with SCP-6160. The hunter reported his findings to the authorities. This lead to a wide spread use of class-A amnesic through aerial use.
Another finding of SCP-6160 states the mass murder of several tourists visiting the Caledonian Forest due to an outbreak of SCP-6160 through red squirrels and large rats. Another large scale class-A amnesic use through aerial transmission was provided. The red squirrels and rats were terminated through the use of flamethrower weaponry.
Addendum-6160.2: Communication
During a recent interview involving Dr. Smith, It was found that SCP-6160 is capable of communication in terms of gesture rather than speech. This however is generally only seen in human subjects as human bodies are generally able to show more emotion through body language as apposed to that of a red deer. Research studies on 6160-1 victims have shown the following:
| ACTION |
|
| ACTION 1: Door Banging |
This generally means that SCP-6160 is experiencing high stress levels and is taking it out through destructive measures. |
| ACTION 2: Urinating upon the door |
This is largely agreed to be a sign of protest towards containment from SCP-6160. |
| ACTION 3: Gurgling |
This is generally SCP-6160 attempting to commune through decayed vocal cords, however, it is impossible for SCP-6160 to do so as, like mentioned, the vocal cords are extremely decayed and do not function. |
Addendum-6160.3: Interview with Person of Interest
[BEGIN LOG]
Interviewer: Dr. Miller
Interviewee: Thomas Anderson
Interviewer: Can you describe to me what happened during… "the incident".
Interviewee: Well, I was hunting for red deer you see. It's sort of how I make a living. Hunt the deer, sell them to restaurants, you get the whole idea.
Interviewer: Yes I understand, but what did you actually see in the forest.
Interviewee: There was this huge, bright, blue glow. Sort of like the northern lights except with only the color blue. I was excited at first. Maybe I had just discovered a brand new species. The market is always all over that type of thing so I was pretty made up with myself.
Interviewer: Can you go into more detail about the deer?
Interviewee: Of course. These weren't your average deer. it was like something right out of a horror movie. Rotting corpses, exposed bone, this loud… wet(?) noise. Not to mention the glow coming from their antlers.
Interviewer: Have you seen anything like this before?
Interviewee: Never in my life.
Interviewer: Alright. Was there anything else you noticed about them? Remember we just want the best for your community. Nothing bad will happen to you or anyone else for that matter.
Interviewee: Well I did find it strange how they moved in a sort of pattern motion.
Interviewer: Pattern motion? Describe that for me.
Interviewee: It was like they were all connected. Like they were all sharing a brain. They all moved in perfect sync with the same bright, blue eyes as the rest. I'm telling you, this isn't some typical deer virus.
Interviewer: Yes, we are well aware of that. Thank you for your time, Mr. Anderson.
[END LOG]
To: Dr. Miller
From: Dr. Smith
Subject: SEND SOMEBODY PLEASE
Miller they are fucking everywhere. Everybody is fucking dead. That fucking virus got them Miller. It got them. I cant get that damn gargling out of my head. Its driving me insane. Miller please im fucking begging you. Notify someone. Anyone. Site-82 is in fucking ruins and its all my fault. Even if i survive ill be fucking terminated or made into a D-class. Honestly im considering giving up at this point. my fate is fucking inevitably either way.
-Dr. Smith
To: Dr. Smith
From: Dr. Miller
Subject: Re: Stay damn quiet.
Calm down and stay as quiet as possible. Even if it means not typing. They are attracted to sound and fear. Whatever you do, don't give up. If you give up, I'll never forgive you, even if you die by that fucking virus.
-Dr. Miller
Wow! You flipped a card and got: dxvi!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 13:31
test test test test test
Wow! You flipped a card and got: Archived XXXX Documents!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 12:11
Archived Interview Logs:
A similar instance of SCP-XXXX was discovered after a foundation agent was dispatched to inform his mother of Researcher Charlie's death. Following Site Director Light's request, she has agreed to accompany foundation personnel to Site-85 for further testing and observation. The following are the initial interviews done with her instance of SCP-XXXX and her.
Interview Log XXXX.1
Interviewed: SCP-XXXX
Interviewer: Dr. Jonas
Foreword: As SCP-XXXX is incapable of producing any noise, it is allowed to write its' answers on a whiteboard provided.
<Begin Log>
Dr. Jonas: SCP-XXXX, are you able to understand what I am saying?
SCP-XXXX nods its' head.
Dr. Jonas: Are you able to communicate through speech?
SCP-XXXX shakes its' head and makes a writing gesture. Silence follows for approximately thirty seconds as Dr. Jonas searches for, and takes out a whiteboard and marker.
Dr. Jonas: Can you write something on the whiteboard?
SCP-XXXX: Alright.
Dr. Jonas: Can you introduce yourself?
SCP-XXXX: I am Charlie's teddy bear! I was a gift to him for his 3rd birthday and he loved me so much! We spent so much time together and he never left home without me! However, as we grew up, he stopped playing with me as much and he threw me away after leaving to live with his girlfriend.
Dr. Jonas: Are there other instances of you appearing elsewhere?
SCP-XXXX: No, I don't think so.
Dr. Jonas: What happened after you manifested?
SCP-XXXX: I remember that after she noticed me in her bedroom, she got a call. I'm assuming that it was to break the news to her as she fainted after picking it up. When I woke her up, she was muttering about how he couldn't possibly be dead before she started laughing about how stupid she was for believing the call.
Dr. Jonas: She thought that the call from Dr. Agnes was a lie? Did you try to convince her?
SCP-XXXX: She was only on the call for half a minute so I don't think Dr. Agnes had time to convince her or explain. I tried to do it myself but she continued ignoring me until you brought her here, so I waited for the news to settle in.
Dr. Jonas: So, while you were waiting for her to process the news, what did you do?
SCP-XXXX: Seeing as how I couldn't convince her, I observed her daily routine so I could help her fall back into it before she alters it too much when she is grieving.
Dr. Jonas: Why exactly are you so keen on helping her in the first place?
SCP-XXXX scratches its' head.
Dr. Jonas: Would you like me to elaborate?
SCP-XXXX: No, I just need time to think.
Dr. Jonas: Alright, take as much time you need.
SCP-XXXX: I want to provide physical companionship and lend a listening ear to her as she has no one else to grieve to. I don't want her to hurt herself or bottle up any feelings because she has nobody to turn to.
Dr. Jonas: How do you know that she has no one to turn to?
SCP-XXXX: She was living alone in her house and barely went out while I was there so I assume that she doesn't have anybody to reach out to.
Dr. Jonas: I see. Thank you for your time, SCP-XXXX.
SCP-XXXX: Can I keep the whiteboard? It's much easier to use than pieces of paper.
Dr. Jonas: Sure, go ahead.
<End Log>
INTERVIEW LOG XXXX.2
Interviewed: Ms. Upston
Interviewer: Dr. Jonas
[BEGIN LOG]
Dr. Jonas: Good morning, Ms. Upston.
Ms. Upston: Good morning.
Dr. Jonas: I am Dr. Jonas, Mr. Upston's colleague. Where did you find the teddy bear?
Ms. Upston: I saw it sitting on my bed after my morning jog. It freaked me out a little as it could not sit up straight when Charlie had it, and it was thrown away when he moved out.
Dr. Jonas: When did you first notice that something was out-of-the-ordinary?
Ms. Upston: I got a call from someone who I assume to be his colleague telling me that Charlie was dead. I fainted from the shock and woke up on my bed somehow with the bear pressing a wet towel on my face.
Dr. Jonas: What happened after that?
Ms. Upston: I freaked out after realising that it was not a hallucination and threw it out of my window, but when I turned back, it was on my bed. Then, I tried running out of the house, but it was on my dining table when I got to the first floor.
Dr. Jonas: Do you recall your conversation with the caller?
Ms. Upston: How could I forget? It was horrible. I couldn't understand her as she was crying and apologising over and over before I had time to prepare. When I finally asked her what had happened, she told me that Charlie was dead. I fainted and by the time I woke up, she had already hung up on me.
Dr. Jonas: Did you try calling her back?
Ms. Upston: Ms. Upston shakes her head. It was probably a joke so I just didn't bother.
Dr. Jonas: Dr. Jonas sighs. There's no easy way of explaining this…
Ms. Upston: Huh? What do you mean?
Dr. Jonas: It wasn't a joke. I'm so, so sorry, Ms. Upston, but he is gone.
Ms. Upston: What? You… You're lying, right? Why would you say such a thing?
Dr. Jonas: I found his dead body next to Dr. Agnes, the person who called you last week. He was killed when a specimen escaped from our laboratory and broke through one of the walls. Unfortunately, Dr. Upston was standing on the opposite side when it broke free and was killed by it.
Ms. Upston: No, no, no, no, no, he isn't dead. Not after… not after he promised to me that he would keep himself safe after his… his… Ms. Upston begins crying. No! No! He is fine! He's in his office right now! Right? Right?
Ms. Upston stands up and hits the table.
Ms. Upston: Fucking answer me! You people have a lot of fucking nerve to force him to stay back during the Thanksgiving break until the point where he stopped responding to my calls and didn't visit me even after he told me that he took some time off to return!
Dr. Jonas crosses his arms and stares silently at Ms. Upston. Her expression changes as she slowly falls back to her chair.
Oh my… oh my god… Charlie… Charlie, no! CHARLIE! Ms. Upston begins sobbing uncontrollably. CHARLIE! My poor baby… It can't be…
SCP-XXXX manifests next to her and begins to rub her back. It then proceeds to look up at Dr. Jonas and shakes its head. Dr. Jonas sighs, stands up and walks to the camera and turns it off.
[END LOG]
Notes: Following this interview, Ms. Upston became uncooperative with foundation personnel and has refused to partake in further interviews. All attempts at conversation with her that is not from SCP-XXXX has been deemed ineffective.
To: Senior Researcher Nicholas Jonas
From: Site-85 Director Y. Light
Subject: Weekly update
Good evening, Dr. Jonas.
I would like to once again thank you for taking the initiative to volunteer as lead researcher for the examination and study of SCP-XXXX. I'm currently awaiting your weekly report on any new findings and updates.
I'd also like to enquire the current statuses of both Dr. Agnes and Ms. Upston. Are their conditions stable?
Best regards,
Site Director Y. Light
To: Site-85 Director Y. Light
From: Senior Researcher Nicholas Jonas
Subject: Re:Weekly update
Good evening, Mr. Light.
My sincerest apologies for the late reply. Containment procedures have been finalised four days ago and the tracker chips are currently being shipped out to all foundation sites. We've managed to ascertain the nature of their distribution and have shared it with the other sites so they will be able to identify the subjects of SCP-XXXX. Observation of the instances currently in Site-85 show that they manifest towards their subjects when they undergo significant emotional distress. However, this is all we can observe and confirm as Ms. Upston isn't cooperating with our requests.
She isn't doing well and SCP-XXXX has shown reluctance to leave her side for now. It seems that it is the only one able to get through to her, hence I will be attempting to negotiate with it tomorrow evening.
As for Ms. Agnes, her condition is currently stable and she will be dispatched from the infirmary soon.
Yours sincerely,
Dr. Jonas
To: Senior Researcher Nicholas Jonas
From: Site-85 Director Y. Light
Subject: Re:Re:Weekly update
Good evening, Dr. Jonas.
Thank you for updating me on the project and their current situations. Please relay my message to Dr. Agnes that she may take a few days off from work after she has been dispatched. If she'd like to extend her leave she may come meet with me.
Best regards,
Site Director Y. Light
The following is a video log of a negotiation done between SCP-XXXX and Dr. Jonas two days after the events during and following Interview Log XXXX.2.
INTERVIEW LOG XXXX.3
Interviewed: SCP-XXXX
Interviewer: Dr. Jonas
[BEGIN LOG]
Dr. Jonas: Good evening, SCP-XXXX. How is Ms. Upston doing?
SCP-XXXX: Terrible. She has been crying non-stop in her bed for the past two days. I haven't left her side because I am afraid of her hurting herself. But, I managed to get her to fall asleep today.
Dr. Jonas: I am so sorry that I've inconvenienced you like this.
SCP-XXXX: It's alright, I don't blame you. She was bound to find out sooner or later.
Dr. Jonas: Alright… Do you know why I've called you here?
SCP-XXXX shakes its head.
Dr. Jonas: Ms. Upston has been uncooperative to our requests over the past two days and she has refused to talk to anyone that isn't you. So, I am trying to come up with a compromise that will allow us to keep track of her emotional wellbeing while giving her some time alone to grieve.
SCP-XXXX: You could interview me and I could tell you what we've done together!
Dr. Jonas: I've thought of that, but I prefer that she herself tell us her genuine feelings as she could fake it when she is around you. However, if you are able to do so, feel free to tell me.
SCP-XXXX stays silent for a minute before it begins writing its' response.
SCP-XXXX: How about a weekly checkup? Does this place have any therapists?
Dr. Jonas nods his head.
SCP-XXXX: How about she meets with one of them? You can record their sessions and use that instead of interviews.
Dr. Jonas: That sounds like a great idea. I think that will be pretty easy to arrange.
SCP-XXXX: I will still have to confirm with her, though.
Dr. Jonas: That's fine, could you ask her tomorrow?
SCP-XXXX nods.
Dr. Jonas: Great. Thank you so much for helping.
SCP-XXXX: You're welcome.
SCP-XXXX starts climbing down its chair before pausing. It climbs back up the chair and writes something.
SCP-XXXX: But, do you think that she would agree?
Dr. Jonas: What do you mean?
SCP-XXXX: She still blames your foundation for his death. I don't think that she would trust you guys or feel comfortable sharing something so close and private with you.
Dr. Jonas: I see. You can be assured that I will remove any information she isn't comfortable with sharing. I'll probably circulate her logs within my team, her therapist, the director and myself, which totals 9 people. It'll stay completely confidential and I won't be sharing them with those not in my team.
SCP-XXXX: That's great! Thank you for understanding. I will tell her that.
Dr. Jonas: Thank you for your help, SCP-XXXX. See you soon.
SCP-XXXX wipes its whiteboard, jumps off the chair and waves at Dr. Jonas.
[END LOG]
Dr. Jonas has arranged for a meeting between SCP-XXXX and him following SCP-XXXX-1's creation (See fileserv:/S:/XXXX/archived_files/videolog20122020.mp4 for more information). Their interview is logged below.
INTERVIEW LOG XXXX.4:
Interviewed:SCP-XXXX
Interviewer: Dr. Jonas
[BEGIN LOG]
Dr. Jonas: Good evening, SCP-XXXX.
SCP-XXXX: Good evening.
Dr. Jonas: I noticed that you've created something and it seems to be affecting Ms. Upston. What did you do?
SCP-XXXX: I
SCP-XXXX: It forces her to do exactly what I've transcribed on the schedule, but doesn't affect her thoughts.
Dr. Jonas: Why did you do such a thing?
SCP-XXXX: Does it look like I had a choice? She's getting so much worse! She isn't taking any advice and
I don't want to control her!
[END LOG]
Closing Statement: SCP-XXXX-1 has been confiscated for further analysis. Its' contents have been logged below. Dr. Jonas has agreed to monitor SCP-XXXX-1's effects on Ms. Upston for three weeks for any changes to her emotional and physical wellbeing.
11:00 am: Wake up, eat provided breakfast
2:00 pm: Eat provided lunch
7:00 pm: Eat provided dinner
10:30 pm: Go to sleep
12.30 pm, Every Wednesday: Attend therapy session with Dr. Sam
1.30 pm, Every Wednesday: Write and provide Post-Therapy Reflection
Archived Therapy Sessions:
The following is a transcript of a therapy session conducted between Ms. Upston and Dr. Sam a day after her initial agreement.
Therapy Session XXXX.1
[BEGIN LOG]
Dr. Sam: Hello, Ms. Upston.
Ms. Upston: Hi.
Dr. Sam: How are you feeling?
Ms. Upston: <sniff> <sigh> Nothing. It's nothing. I'm fine. I'm feeling fine.
Dr. Sam: If you are feeling uncomfortable at any time, don't hesitate to tell me. We can continue this session at a later date.
Ms. Upston: I understand.
Dr. Sam: Dr. Sam nods. Do you mind telling me when you first heard the news?
Ms. Upston: I received a call about a couple of weeks ago from his colleague. She was… She was crying, screaming apologies, it was just… just awful. After telling her to calm down, she managed to choke out that Charlie was… he was gone. I got a little light-headed from the suddenness of the news and fainted. When I woke up, she had hung up already.
Dr. Sam: I've heard that you thought that it was a joke? Why would you think that it was one?
Ms. Upston: I just didn't want to believe it. I think the suddenness of the call and how I was immediately overwhelmed with her emotions played a part in me not believing it.
Dr. Sam: Did you consider, in any point of time between receiving the call to you being brought here, that the contents of the call might have been true?
Ms. Upston: I did have a small gut feeling that slowly got worse the more I… I… <sighs> I tried to contact him. <silence> It got worse when Thanksgiving came and he didn't visit me like he had promised. When I tried contacting him, he didn't answer my messages or calls, and that was when I seriously considered that he… the worst might have happened. Nevertheless, I tried staying positive and tried convincing myself that he was probably held back over the holidays at work. When I was brought here, though, the dread and worry slowly got worse and worse, even when I was fighting so hard to deny it. It got to a point where I couldn't take it anymore and ended up letting it all out during my initial interview.
Dr. Sam: I see.
Therapy Session XXXX.2
[BEGIN LOG]
Dr. Sam: Good afternoon, Ms. Upston.
Ms. Upston: Good afternoon… Wait, what am I doing here?
Dr. Sam: Hm?
Ms. Upston: I didn't ask for this! Why am I here?
Dr. Sam: You… walked through the door yourself.
Dr. Sam: I received some pictures from that teddy bear of yours who said that you both had a heart-to-heart, so could you tell me more about what transpired that day? (Notes: See fileserv:/S:/XXXX/archived_files/videolog090122020.mp4 for more information.)
Ms. Upston: It… It tried to get me to attend another therapy session with you but I refused. So, it told me that I could instead share what I was feeling with it, and showed me those pictures to get me to open up to it, I guess. We had a look through the pictures, I shared more about Charlie with it and… and… I got a little emotional after seeing one of them.
Dr. Sam hands Ms. Upston the set of photographs.
Dr. Sam: Which one is it?
Ms. Upston looks through the set of photographs and points at the picture of Dr. Upston's graduation.
Ms. Upston: This one.
Dr. Sam: Why is that so?
Ms. Upston: Well, firstly, there was the shock of seeing a picture you thought you'd lost forever suddenly showing up in perfect condition in front of me. Secondly, the two men in the picture are… are… <sighs> my deceased husband and Charlie. It hurts me seeing how happy we looked back then. I can't look at this picture the same anymore without thinking about how the two men I love and treasure the most are gone forever. I can't stomach the fact that two of the three in this picture have passed on in just three years.
Dr. Sam hands Ms. Upston a box of tissues and she dries her tears.
Post-Therapy Reflection
I
We talked about the pictures the teddy bear had shown me previously.
Therapy Session XXXX.3
[BEGIN LOG]
Dr. Sam:
Ms. Upston:
[END LOG]
Therapy Session XXXX.4
[BEGIN LOG]
Dr. Sam:
Ms. Upston:
[END LOG]
Therapy Session XXXX.5
[BEGIN LOG]
Dr. Sam: Good afternoon, Dr. Agnes.
Dr. Agnes: Good afternoon.
Dr. Sam: How are you doing?
Dr. Agnes:
Dr. Sam: Dr. Jonas told me yesterday that you had changed your mind and wanted to meet me, right?
Dr. Agnes: Yes.
Dr. Sam: What made you change your mind?
Dr. Agnes: I… I had a nightmare… about him. (See fileserv:/S:/XXXX/archived_files/videolog23122020.mp4 for more information.) It was… it was just so horrible… he was there, his body was there, right where ████ left him. He was still alive, asking me why I let it do that to him… why I wanted to him to go to my office back then. He was just screaming at me, crying, as he asked me over and over why I let him die, and then everyone who was there joined in, and I just wanted it to stop… <Dr. Agnes starts crying.>
Dr. Sam offers Dr. Agnes a tissue and she cries into it.
[END LOG]
The following is an interaction between Ms. Upston and Dr. Agnes, done during a therapy session arranged by Dr. Jonas. Their conversation is logged below.
Therapy Session XXXX.5
[BEGIN LOG]
Dr. Agnes: Do you think that you're the only person affected by Charlie's death? I had to watch him die in front of me! I can't sleep without my mind replaying how he died! I have nightmares where he blames me for his death! I loved him, Ms. Upston, I loved him! And now I have to deal with the fact he is dead because of me! So, if you want to be mad at someone, be mad at me! Don't blame the foundation, blame me!
Ms. Upston:
The two women stay silent as they weep. Their SCP-XXXX instances stare at each other before turning to Dr. Jonas, who shakes his head.
Dr. Agnes: I’m so sorry, Ms. Upston… Please… Please forgive me… It’s my fault…
Ms. Upston pushes her chair forward and embraces Dr. Agnes. Dr. Agnes sobs into Ms. Upston's chest as Ms. Upston rubs her back and cries with her.
Post-Therapy Session Reflection
[BEGIN LOG]
Ms. Upston: I have to do it, right? I have to pull myself together. Not only for my sake, but for Charlie. I don't think he would like to see what I have become.
SCP-XXXX:
SCP-XXXX: That's okay. I'm here for you and I promise that I'll continue to be here for you, every step of the way.
SCP-XXXX sets down its whiteboard and sits next to Ms. Upston as she cries.
Therapy Session XXXX.6
[BEGIN LOG]
Dr. Sam:
Ms. Upston:
[END LOG]
Therapy Session XXXX.7
[BEGIN LOG]
Dr. Sam:
Ms. Upston:
[END LOG]
Therapy Session XXXX.8
[BEGIN LOG]
Dr. Sam:
Ms. Upston:
Dr. Sam: I hope you will continue to help her out after she's discharged.
SCP-XXXX: I will. I've promised her that I will.
[END LOG]
Post-Therapy Reflection
Today, we had a final roundup
Before her release from Site-85, Dr. Jonas received a letter from Ms. Upston, addressed to Dr. Sam, Dr. Agnes and him. The letter's contents are logged below.
I can't thank you all enough for helping me over the past two months. I hope that
To Dr. Sam, I would like to give my sincerest thanks for your constant help and advice. While I won't be seeing you anymore, I trust that the teddy bear will be able to provide the same help I've received when I was seeing you. My deepest apologies for initially ignoring your advice and deliberately making up excuses to not attend your sessions.
To Dr. Jonas, thank you so much for the flexibility in complying with my uncooperation and
To Dr. Agnes, I hope that you will stop blaming yourself. I wish that I. I can't properly express how sorry I am for immediately taking your call as a joke. I am so, so sorry that I
Archived Miscellaneous Audio/Video Logs
VIDEO LOG XXXX.1
DATE: 9/12/2020
[BEGIN LOG]
11:01 am: SCP-XXXX enters Ms. Upston's room with tray of food. It sets the tray down next to her bed, climbs on top of her and begins shaking her. Ms. Upston groans, turns around, grabs SCP-XXXX and throws it at a wall. She proceeds to cover herself with the blanket as SCP-XXXX climbs onto the bed again and sits down next to her.
11:10 am: SCP-XXXX shakes her back again and she sits up. Ms. Upston: What do you want? SCP-XXXX gestures at the tray and she picks it up. She stares at the food as SCP-XXXX grabs the whiteboard and begins writing.
11:11 am: SCP-XXXX: Good morning! You didn't seem to be eating as much lately, so I went ahead and made some breakfast for you. Ms. Upston picks up a cup from the tray and sips it. Ms. Upston: How… How do you know that I like this type of coffee?
11:12 am: SCP-XXXX: Lucky guess, I suppose. Once you're done, you should really go and shower. Your next therapy session starts in an hour. Ms. Upston sighs, sets the tray down on the bedside table and throws the blanket over herself. Ms. Upston: Tell them I won't be going… I don't feel like continuing the sessions anymore.
11:13 am: SCP-XXXX: What? I can't do that! It's already been confirmed that you would be attending mandatory sessions with Dr. Sam! You can't stop now! Ms. Upston: I can't… I don't feel comfortable talking with him about Charlie.
11:15 am: SCP-XXXX climbs onto the bed and sits down next to Ms. Upston. SCP-XXXX: If you don’t feel comfortable sharing information with the therapist, why don’t you share it with me? Ms. Upston: I don’t think that you’re the best… best… No offense, but I just don't think you've shared much common experiences of Charlie with me.
11:16 am: SCP-XXXX: Of course I haven't, but that doesn't mean that you can't share them with me!
11:17 am: SCP-XXXX reaches behind its back and pulls out a photograph. It hands it over to Ms. Upston before it resumes writing. SCP-XXXX: Could you tell me about this picture?
11:18 am: Ms. Upston: How… How did you get this picture? SCP-XXXX: What do you mean? Ms. Upston: This picture was destroyed during a fire a few years ago! How… Where did you get this from?
11:19 am: SCP-XXXX: I’m not so sure. It just appeared when I reached behind my back. Could you tell me more about what’s in this picture? Ms. Upston: This… This was taken during his first birthday. It was… It was just so amazing. I was so happy and… I guess, relieved? Like I managed to make it past the first year of parenthood without much difficulty. It was just so surprising how quickly he turned 1!
11:21 am: SCP-XXXX: What about this one? Who is she? SCP-XXXX passes another picture to Ms. Upston and points at a girl in it. Ms. Upston: Oh! She's his girlfriend! They grew up together so they were very close. They managed to stay in contact after we moved and they started dating soon after. SCP-XXXX nods and reaches for another picture.
11:22 am: SCP-XXXX: What about him? Ms. Upston looks at the picture from SCP-XXXX. Ms. Upston: That would be his best friend! They met in kindergarten and managed to end up in the same schools together, so they are also very close.
11:23 am: Ms. Upston: Oh no… How do I tell them he's gone? They've got to be so worried. SCP-XXXX: I think that there may be similar versions of me showing up to inform them of their deaths. Ms. Upston: Similar versions?
11:25 am: SCP-XXXX: I saw that there was another me that presumably showed up after his death to someone working here. I saw it comforting her at the infirmary when I was off to get your breakfast. Ms. Upston: Oh.
11:26 am: SCP-XXXX: I'm curious, with you talking about how Charlie met his best friend and girlfriend, how did you meet your husband? Ms. Upston: Oh, me? I first met him as a client for a project at work. After everything was complete, we continued to talk and meet up and we ended up getting together a couple of months. The rest was pretty much history. Ms. Upston stays silent with a small smile on her face.
11:27 am: Ms. Upston: I fell in love, and when Charlie was born, I fell in love again.
11:28 am: Ms. Upston: It was the happiest 19 years of my life… SCP-XXXX: Wasn't Charlie 21 when he passed? Why did you say 19 only? Ms. Upston looks away and stays silent. SCP-XXXX quickly erases its' response and takes out another picture.
11:30 am: SCP-XXXX: What about this picture? Ms. Upston receives the picture from SCP-XXXX and begins tearing up once she looks at it. SCP-XXXX quickly places a hand in hers as she covers her mouth and starts sobbing.
11:33 am: Ms. Upston composes herself and turns to SCP-XXXX. Ms. Upston: This is a picture of… of my husband and Charlie. We looked so happy back then… SCP-XXXX passes a box of tissues to Ms. Upston. Ms. Upston: This was taken during his college graduation and it was one of the happiest days of my life. I was so proud of him!
11:35 am: Ms. Upston: I’d give anything to spend a day with them again… I miss them so much. If only I told him to not go to that party… If only I told him to not accept the job offer here… Maybe they won't be gone… Maybe I won't be here… Ms. Upston begins crying again. Ms. Upston: After his father's death, he promised me he'd never leave me, and that was the one promise I hoped he'd never break, but… Ms. Upston sobs as SCP-XXXX, puts down the photographs and hugs her.
11:40 am: Ms. Upston: I'm sorry, I need some space. Could you tell Dr. Sam that I won't be going for today's session? SCP-XXXX nods and leaves the room.
11:41 am: SCP-XXXX closes the door and leaves Ms. Upston in her room. She sobs silently as she sifts through the photograph. She looks at the graduation picture and touches Dr. Upston's face.
11:43 am: She hugs the stack of pictures as she continues to cry.
12:10 pm: She lies down back down on the bed and covers herself with the blanket. She proceeds to cry herself to sleep.
12:23 pm: SCP-XXXX returns to Ms. Upston's room and notices her lying on the bed. It walks towards her and climbs onto her bed. It gently shakes her for a few seconds before stopping and sits down against her.
[END LOG]
After the events from VIDEO LOG XXXX.1, Ms. Upston has isolated herself from foundation personnel and has refused to attend anymore therapy sessions with Dr. Sam.
After approximately two weeks of isolation and refusal to interact or cooperate with foundation personnel, SCP-XXXX-1 was created. Following its creation, SCP-XXXX has shown signs of significant emotional distress. SCP-XXXX and Ms. Upston's interaction preceding its creation is logged below.
VIDEO LOG XXXX.2
DATE: 20/12/2020
[BEGIN LOG]
11:00 am: SCP-XXXX enters Ms. Upston's sleeping quarters with another tray of food. It climbs onto her bed gently shakes her. Ms. Upston wakes up, notices SCP-XXXX and rubs her eyes. Ms. Upston: What do you want now?
11:01 am: SCP-XXXX: I'm worried for you. You haven't been eating a lot and everyone's been concerned. When was the last time you showered? Ms. Upston: Why do you care so much?
11:XX am: SCP-XXXX: Dr. Sam has been asking where you've been. I can't keep making excuses for you. Please, meet him. Ms. Upston swats the whiteboard away from SCP-XXXX. Ms. Upston: Why are you so fucking adamant about me meeting him? No amount of therapy is going to get my son back! SCP-XXXX turns to her as she continues. Ms. Upston: No amount of help you try to provide for me will get my son back. You don't know shit about how I am feeling, and it's fucking pathetic how you try to empathise with me. You're nothing but a soft toy. Just leave me alone. Ms. Upston throws the blanket over her. Ms. Upston: Leave.
11:XY am: SCP-XXXX hesitates and writes something on its whiteboard. SCP-XXXX: I'm sorry about this. You're right, I can't tell how you're feeling, so you have to tell them yourself. I'm really sorry. SCP-XXXX leaves the whiteboard against her bedside drawer and leaves her sleeping quarters.
VIDEO LOG XXXX.3:
1:02 am: Dr. Agnes thrashes in her bed and screams. Dr. Agnes: Charlie! Charlie! No! I'm sorry! I'm sorry! SCP-XXXX manifests inside her room and attempts to wake her up, but fails. It demanifests, presumably remanifesting in Dr. Jonas' office.
1:04 am: Dr. Jonas runs into Dr. Agnes' sleeping quarters, turns the light on and shakes her awake. Dr. Jonas: Agnes! Wake up! Wake up! Dr. Agnes opens her eyes, notices Dr. Jonas and begins crying.
1:10 am: Dr. Jonas: Agnes, what happened? Dr. Agnes: I saw him… I saw him… he was blaming me for his death! Dr. Jonas rubs her back as she retches and coughs while SCP-XXXX remanifests next to her with a glass of cold water. She takes the glass from SCP-XXXX and attempts to drink from it, but drops and shatters it.
1:11 am: Dr. Agnes: I'm sorry… I'm sorry! She resumes crying as Dr. Jonas sighs and calls for a medical personnel.
1:14 am: The on-site medical personnel arrives and brings Dr. Agnes to the infirmary. SCP-XXXX follows after her.
AUDIO LOG XXXX.1
Dr. Jonas: Good afternoon, Ms. Upston. How are you doing?
Ms. Upston: I'm doing fine.
Dr. Jonas: Good to hear. Before we release you tomorrow, I need to go through some administrative stuff.
Ms. Upston: Alright.
Dr. Jonas: Firstly, I must instruct that you keep your experiences here over the last two months a secret. Our foundation is doing its best to maintain its veil of secrecy from the general public, so I can't stress enough how important it is that you not share these encounters with them.
Ms. Upston: I understand.
Dr. Jonas: This also goes for the teddy bear. I must ask that you hide it away from the public and inform us if you are taking it outside. If anybody sees it moving, appearing or disappearing, inform us immediately.
<Ms. Upston nods.>
Secondly, you are to submit weekly reports of the teddy bear to me. Just tell me if there have been any behavioural changes you observed as well as a summary of what you two did together, like places you visited, what activities you did together, et cetera. Do you understand?
Ms. Upston: Yes. How long do I have to do this for?
Dr. Jonas: I'm currently uncertain, so I ask you do this for about a month first so we can see how it goes.
Ms. Upston: Okay.
Archived Weekly Reports of SCP-XXXX
After her discharge from Site-85, she has been tasked with sending weekly reports of SCP-XXXX's behaviour to Dr. Jonas.
To: Senior Researcher Nicholas Jonas
From: Ms. Lily Upston
Subject: Weekly report DD/MM/2021
Good afternoon Mr. Jonas,
When we got home, I realised that the teddy bear had stopped teleporting to my immediate location when I leave it on its own. I did a little test of my own where I placed the bear inside my bedroom and left the house, and it didn't follow me. Like what you emphasised about keeping everything I've experienced a secret, I bought some curtains immediately after so it wouldn't be caught moving around.
It seems that while it does still help out with the chores and continues to try to help me, its' help is slowly decreasing as I slowly get back on my own two feet. It still provides me company when I'm eating and when I'm sleeping, though.
However, something major also happened this morning. When I went to the supermarket to buy some food for myself, I just started to cry. I'm not sure whether it is me realising I'd never be able to cook for him anymore or what, but when I did so, the teddy bear immediately appeared in front of me and began to comfort me. I'm sure there were a few witnesses following its' appearance, so I rushed home as quick as I could to send this to you. Sorry in advance for any inconvenience caused.
Sincerely,
Lily Upston
Notes: All secondhand witnesses have been traced down and treated as per the procedures specified in the Special Containment Procedures above.
To: Senior Resarcher Nicholas Jonas
From: Ms. Lily Upston
Subject: Weekly report DD/MM/2021
Good evening Mr. Jonas,
I recently met up with his girlfriend and best friend following some advice from the teddy bear. We talked about Charlie and what he meant to us, and that was when I learnt they had similar teddy bears who had informed them about, and were also helping them cope with his death.
There aren't any major changes in its behaviour since my last report. It still provides company and is constantly checking up on me. It also comforted me after I cried again following my visits to his girlfriend's and best friend's.
Sincerely,
Lily Upston
Notes: Following this weekly report and further information provided by Ms. Upston, tracker chips and instructions have been mailed out to them.
To: Senior Researcher Nicholas Jonas
From: Ms. Lily Upston
Subject: Weekly report DD/MM/2021
Good evening Mr. Jonas,
The teddy bear has been recently encouraging me to try out a new hobby. We had a little talk about what I could do to distract myself from the pain, but I just don't feel comfortable trying anything new for now.
It has also been doing its' hardest to help me fall back to my regular routine even after it stopped putting me on its' schedule. I've been trying my best to follow its' advice and slowly readjust my life.
There aren't any major changes in its' behaviour that I've observed since I sent my last report.
Sincerely,
Lily Upston
To: Senior Resarcher Nicholas Jonas
From: Ms. Lily Upston
Subject: Weekly report DD/MM/2021
Good evening Mr. Jonas,
I finally visited Charlie's grave today. It was fairly quiet at the cemetery, with only the teddy bear accompanying me. It was nice to see his grave covered in flowers and cards, that gives me some assurance that he had met a lot of wonderful people when he was still alive.
The hole in my heart left by Charlie is still there, and while it can heal over time, it will never go back to how it was originally. The emptiness will still be there.
I really miss him.
There is nothing about the teddy's bear behaviour that has changed since last week, but I realised we have grown a lot more closer following my release.
I've also decided to name the teddy bear after him.
Sincerely,
Lily Upston
[[footnoteblock]]
Wow! You flipped a card and got: Adkcjcj!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 09:31
Wow! You flipped a card and got: Bedroom_Brain's Fun Box!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 08:46
Item #: SCP-XXXX
Object Class: Safe
Special Containment Procedures: SCP-XXXX is to always be contained within the confines of Dr. Remem's desktop inside a folder containing a counter-memetic image to outdo SCP-XXXX's anomalous effects. In the case of a containment Breach, all affected individuals must perceive the counter-memetic image. No other special containment procedures are necessary.
Description: SCP-XXXX is a memetic image. It depicts SCP-2351 staring at a camera, surrounded within a black box alongside text reading "POV you are the meme". The entire image is flipped, creating humour within the idea that the meme is perceiving the individual viewing the image.
When SCP-XXXX is viewed by an individual, a 2D plane (Designated SCP-XXXX-1) will instantaneously manifest approximately 10cm away from the subject's face, SCP-XXXX-1's width and height will adjust accordingly to the subject's head width and height. SCP-XXXX-1 will also move accordingly to where the affected subject's head is. SCP-XXXX-1 is in appearance similar to the black box within SCP-XXXX. The text differs from SCP-XXXX however, instead reading "I AM the meme", alongside with SCP-XXXX-1 not being a flipped image. SCP-XXXX-1 will be just within the peripheral vision of the affected individual.
When an unaffected individual views an individual affected by SCP-XXXX-1. The before unaffected individual will instantaneously after be affected SCP-XXXX-1. SCP-XXXX-1 demanifests when the affected individual perceives SCP-XXXX's Countermeme, there are no other known methods to counter-effect SCP-XXXX and SCP-XXXX-1.
Discovery: SCP-XXXX was created when a breach at Area 32 caused all three instances of SCP-2351 to escape containment. An escaped Class-D personnel obtained a camera and took multiple pictures, including a picture of SCP-2351-3.
Once all SCP-2351 instances were recovered, Dr. Remem recovered the camera and brought it back to Area 32.
When Dr. Remem connected the camera to his computer, the screen turned to static for approximately four seconds. After which SCP-XXXX appeared on Dr. Remem's desktop. How SCP-XXXX became anomalous and how the picture graphically edited itself is still unknown.
Characters Present: [Dr. Remem]
<Begin Log, 13:31>
[Dr. Remem seats onto his office chair before connecting the camera to his computer. Dr. Remem shrieks once his screen turns to a vibrant static, creating a constant distorted white noise]
Dr .Remem: umm..
[After the static ends, Dr. Remem leans forward as the computer turns on, soon noticing SCP-XXXX on his desktop. Dr. Remem opens the file, viewing SCP-XXXX. Then becoming affected by SCP-XXXX-1.]
Dr. Remem: What the actual fuck.
<End Log, 13:40>
Shortly after the discovery of SCP-XXXX, a meeting was called by Dr. Remem to discuss about SCP-XXXX and how it should be contained.
Characters Present: [Dr. Remem, Dr. Freda, Dr. Harvey, Dr. Chatsworth and Dr. Ochoa]
<Begin Log, 14:30>
Dr. Remem: Today, this meeting was called as they're has been a quite recent anomaly.
[All characters present are arguing with one another, all individuals present affected by SCP-XXXX-1]
Dr. Remem: Can you all shut up! Please! All of you just be quiet!
Dr. Harvey: You have a good bit of explaining to fucking do Remem.
Dr. Remem: First of all, I do not want language like that in this room. Secondly, it may seem that this anomaly passes onto other unaffected people. I wasn't knowing of this and I feel as if this needs to be said. Sorry. I wouldn't have called this meeting if I knew this were to be the case.
[The room is silent. Dr. Freda lets out a laugh]
Dr. Remem: What's so funny, Freda?
Dr. Chatsworth: Yeah. What is so funny?
[Dr. Chatsworth and Dr. Ochea both laugh. Dr. Remem throws his left fist onto the desk in anger]
Dr. Remem: We are dealing with a goddamn anomaly! We have to take this seriously! I don't care if you find this funny or aggravating! We are dealing with an anomaly either way and you all have to sit up straight and focus!
[All characters present focus onto Dr. Remem.]
Dr. Remem: Thank you, now. I've called this meeting as we need to find a way to get rid of this thing in front of our face-
Dr. Harvey: You haven't even found a way to get rid of this thing?
Dr. Remem: No that's why I called the meeting!
Dr. Harvey: Okay that makes sense.
Dr. Remem: What do you have a better idea?
Dr. Harvey: I wasn't being sarcastic.
Dr. Remem: It really sounded like you were.
Dr. Harvey: I'm telling you now I wasn't!
Dr. Remem: You still haven't answered my question!
Dr. Freya: Just answer the question Harvey.
Dr. Harvey: I wasn't being sarcastic! I don't have an ans-
Dr. Remem: Just What I tho-
Dr. Freya: You don't have to be such an ass Remem.
Dr. Remem: I'm not being an ass!
Dr. Freya and Dr. Harvey: Yeah you are.
Dr. Remem: I am being very civil abo-
[Dr. Remem, Dr. Freya and Dr Harvey's argument devolve into loud shouting to the point where it is not understandable.]
Dr. Chatsworth: So, how are we gonna deal with this?
Frame taken of all individuals during meeting XXXX.1
Dr. Ochoa: Not too sure, this is memetic right?
Dr. Chatsworth: Both the source of these black box thingies and the actual black box thingies, yes.
Dr. Ochoa: [chuckles] Right, so wouldn't the most obvious thing to do just be a counter-meme? Wouldn't that make the most sense?
Dr. Chatsworth: depends really, maybe the thing in the actual meme is an anomaly?
Dr. Ochoa: Maybe, but we can't just go round killin' anomalies to kill other anomalies. Besides, this one isn't even even a quarter as bad as some other ones.
Dr. Chatsworth: You're right, a counter is probably the best way to go.
Dr. Ochoa: Right.
[Both Dr. Chatsworth and Dr. Ochoa turn to Dr. Harvey, Dr. Remem and Dr. Freda to see them all still arguing. The two let out a light laugh.]
Dr. Chatsworth.: Will the counter-meme get rid of this darn black box?
Dr. Ochoa: [chuckles] hopefully.
[Dr. Chatsworth pulls out a small notepad and a pencil, pulls a page out and jots down a few words. Getting out of his chair and walks up to Dr. Remem, nudging him on the shoulder.]
Dr. Remem: Huh?
Dr. Chatsworth: Here's our idea.
[Dr. Chatsworth puts the not into Dr. Remem's top blazer pocket. Dr. Chatsworth sits back into his seat. Dr. Remem falls back onto his chair, taking out the note and quickly reading it.]
Dr. Remem: [Looks up at both Chatsworth and Ochoa] that's why you two are hired!
Dr. Ochoa: Can you just get that counter-meme made, please?
[Dr. Remem hesitates]
Dr. Remem: Alright.
<End Log, [14:17]>
Closing Statement: [All five individuals stayed within the meeting room until an emergency counter-meme was created]
To: Emergency Containment Team Head
From: Dr. Remem
Subject: Emergency Counter-Meme
Hello, me and four other staff members are currently affected by an anomalous real life meme that was created by existing on a camera. I know I shouldn't have plugged in that camera but the curiosity got the better of me and I had no clue that something like that was going to happen. There is a memetic image file on my desktop and if you look at it you get a black box around your face. You also get the black box if other people look at you too. I need a counter-meme for me and my colleagues that gets rid of this black box because it might become a problem. I'm sorry for this its really stupid and I won't let something like this happen again. Get it done ASAP!!!!
To: Dr. Remem
From: Emergency Containment Team Head
Subject: Emergency Counter-Meme
Hello Dr. Remem
You're right, something like this should not happen. You are working in the SCP Foundation. Anything can be anomalous. But scolding you isn't what is important right now. The attachment in this file is the counter-meme. All you and your colleagues need to do is look at the image and the black boxes your talking about should disappear. Don't let something like this happen again. You could've put people in danger.
~ Emergency Containment Team Head
[[footnoteblock]]
Wow! You flipped a card and got: (draft belongs to William gamesss)!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 07:34
WARNING: THE FOLLOWING FILE IS LEVEL #5/6885 CLASSIFIED
ANY ATTEMPT TO ACCESS THIS FILE WITHOUT LEVEL 5/6885 AUTHORIZATION WILL BE LOGGED AND WILL LEAD TO IMMEDIATE DISCIPLINARY ACTION.
Item #: SCP-6885
Object Class: Apollyon
Special Containment Procedures: (No containment procedures have worked on Dr.Rosenburg)
Description: Dr.Rosenburg is a level 4 Senior Researcher and work in the intelligence Agency even though no one know how he got there especially with his behavior that be more explained later on.Dr.Rosenburg doesn't age he has the appearance of a young 26 year old version of himself.Dr.Rosenburg is mainly wearing a suit with a top hat, depending on the individual the suit will change there's no reason why his suit changes but the colores remain, his suit are purple,red,blue,silver and gold the suit is mainly purple red is used on buttons blue is the shirt underneath silver are the stripes and gold are for the tie and the one stripe on his top hat. These colors will never change place pointed out by everyone who has had a interaction with him. He has a lack of human empathy and will any to get to determined goal weather it's cost the lives of class d,guards,scp's and other staff members and is rarely ever talks about himself.
Dr.Rosenburg is immune to any effect by any other scp weather it's a entitie(s) or item
It's theorized that Dr.Rosenburg more abilities like having the possibility to have more abilities in the after life test have been conducted to prove or denie it, communicating with other scp's possiblity making do his work hence the reason he's doesn't get affect by any scp's.It's possible that Dr.Rosenburg is working for another organization
Any other clothing besides his suit will change color with time
For example (If he changes his suit and puts on a guard suit the colors will change, same colors as noted eailer. Also to note the Dr.Rosenburg has a P90, this P90 come to appear whenever he desires even if there's no space for it to somehow to be there and he pulls said P90 out from his back. Said P90 infinite ammo and is made of some unknown material, same goes for the bullets but his P90 colors are gold,silver,red,pink (no specific order His P90 colors have no consistently).
Last note No picture or video of Dr.Rosenburg face exist it's either cut out, picture is corrupted,etc. Dr.Rosenburg connection to are questionable, he questions alot about the foundation and Dr.Rosenburg doesn't like to talk about his past and how he came to foundation it's proven that he is older than the foundation itself by cave paintings, documents and images he hasn't removed himself that all have been. (Possible that he has some control of the foundation probably by abilities noted earlier or more that we don't know of as of this moment)
Addendum:Here is a description of his known abilities
imortality:He's comes back from the dead depends from the scenerio. If he's is shot and his body is still in view,he will come back via an area that not in view by anyone or anything. If he is completely vaporized,burned,crushed or desintagrated the same rules apply. (This rule could be applied to any other scenerio) He's claims to come back on his own Accord).
Teleportation:His teleportation is simple he teleports in 2 ways, Either by getting out of view of anything or just fade away quickly only leaving a pink mist.
Mind reading:His mind reading or mind control has no known limits if his both of these powers are just limited to this dimension,realms,universes most likely not since he was 'cuaght' contacting other beings and said beings have not Been located.
Unnturally aware of everything:Unnatural aware of everything his awareness to everything even to entities that can't be seen or heard by humans.
Informed about everything:He is fully informed about subjects even if it's a subject he shouldn't know (No further test have been conducted).
:Being able to inserted or remove himself into or from media or memories:He is able to add or remove himself from memories,photos and video(s) the only way this had been document is the help of other scp's. It's theorized that on purpose
footnote:
1.That Dr.Rosenburg predates the foundation itself
2.acts questionable, not always compliante with staff or scp's.
3.He has abilities that are not limited to anything or anywhere.
4.possible that he may be working with other organizations.
5.possible that Dr.rosenburg has some control of the foundation or scp's with the use of his abilities noted eailer.
6.proof of more abilities like (duplication, changing memory of being without them known like inserting truama into some replacing part of their lives, reality bending,possible of causing an XL class end of the world scenario) even though he Denise that he has said abilities since he has been cought after he helped D-████ ██████ ███ ██████████ ██████ ██ ████ ██ ████ .
testing with Dr.Rosenburg has been put into a halt for unknown reasons as of yet.
Wow! You flipped a card and got: The reality egg (Joke scp)!!! You ca reload the page or go to the next.
DATE: 21 Jul 2021 06:15
BY ORDER OF THE OVERSEER COUNCIL
The following file is Level 6 classified. Unauthorized access is forbidden.
Please plog in to continue
[[/div]]
Special Containment Procedures: Any person reading this document must take class A amnestica after reading including 05 council. SCP-XXXX is to be kept in a sealed chamber in the middle of █████████████. The cell of SCP-XXXX is padded and buried. If this article must be edited then the editor must be willing to be terminated after editing this article. If SCP-XXXX is to breach containment then several MTF willing to be terminated after this mission will be sent out to retrieve SCP-XXXX and put it inside the containment chamber. After this the MTF are to be terminated.
Description: SCP-XXXX is a standard egg. Any person that knows of SCP-XXXX feels a need to break it. After testing it has been realized the SCP-XXXX is the containment for the universe and breaking it will cause the universe to consume itself.
| TEST XXXX/1 |
|
| Subject |
D/XXXX/1 |
| Protocol |
D/XXXX/1 was told that SCP-XXXX is an egg. D/XXXX/1 was then locked in a steel room with researchers watching him at all times |
| Results |
D/XXXX/1 brole several bones to try and open or break the door. D/XXXX/1 repeated the phrase “I need SCP-XXXX, I need the egg!” up until termination. |
NOTICE FROM THE 05 COUNCIL
The researchers that observed TEST XXXX/1 were also affected by SCP-XXXX. There is to be no further testing
— 05-7