scp-000000000

WELCOME TO THE LONGEST SCP ARTICLE ON THE PLANET! HERE YOU CAN SEE ALL KINDS OF SCP ARTICLES TO CRITIQUE ON, NO SEARCH REQUIRED.

Wow! You flipped a card and got: QueenoftheVoid!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 18:54

: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)); }
}
voidqueen.png
SCP-7322-01.

SCP-7322 is a anomalous constant effect that affects all members of a discord server named Purrfect Apawcalypse Hub. SCP-7322 will not take effect until a member of the Hub is on their deathbed or is about to meet their end. Time will freeze from their perspective as a door appear in front of them, SCP-7322-01 will walk out.

SCP-7322-01 is a anthropomorphic bloodhound mutt approximately 6’3 feet tall. SCP-7322-01 has the ability to control its weight, being able to become light as a feather, or as heavy as a boulder. SCP-7322-01 is impervious to damage, seemingly able to deflect all objects that come within a 2 feet radius. Any object the subjects interacts with while is time frozen will temporarily unfreeze, then freeze again upon letting go. It's believed that SCP-7322-01 is a member from the Hub known as Canna, in 2021, she stated being 23, her true age is believed to be billions of years since the creation of the universe.

'Canna' will tell the subject that it's time for their tea party, opening the door for them to reveal a world of debris and void. Upon a rock lies a picnic cloth, two cups of drinks as well, the drink meant for the subject will always be what their favorite drink in life was. After a meanwhile discussion, 'Canna' will offer the subject one last day in the void, or the option to move on immediately. If a subject is revived during this time, they'll be taken out of the void and wake up.

SCP-7322-01 is believed to be the only living being within the void

Addendum-2021-05/21/21: A second being has been described to be living within the void alongside SCP-7322-01, for the time being he is known as a member from the Hub known as sHiiNe, or SCP-7322-02. SCP-7322-02 and SCP-7322-01 are believed to be in a romantic relationship due to certain descriptions and interactions observed by subjects.


Interview Logs


The following log was conducted on 2/3/2021, after member of the Hub, Miles 'Boo' Quartz was shot at 11:21AM on the 2nd of Feburary by Timothy 'Patch' Iron, pronouncing him clinically dead for 5 minutes. Upon revival, Miles was interviewed by the foundation and soon administered Class C amnestics afterwards.

Interviewed: Miles Quartz

Interviewer: Dr. Samuel Granite

Foreword: Dr. Samuel Granite was chosen to interview Miles as he's the closest to the Hub and it's members, being a creation of Hub member Nutella.



[BEGIN LOG]

Dr. Samuel Granite opens the door, sitting down onto his chair and looking at Miles.

Dr. Samuel: Miles Quartz, correct? We'd like to.. talk about your death experience you had last night.

Wow! You flipped a card and got: A Normal City!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 18:14

rating: 0+x

[[include :scp-wiki:component:anomaly-class-bar-source

|item-number= XXXX

|clearance= 2

|container-class= euclid

|secondary-class= none

|disruption-class= keneq

|risk-class= warning

]]

Item #: SCP-XXXX

Object Class: Safe Euclid
Special Containment Procedures: No special procedures. SCP XXXX is to be completely isolated at all times. A perimeter of 30 kilometers around XXXX is to be kept entirely clean of any living organisms and any non-naturally occurring inorganic materials aside from the road. MTF Gamma-9 (”Cerdos”) is to disguise as Highway Patrol and disrupt any kind of traffic that would be directed through SCP XXXX under a standard road reconstruction cover story. Under no circumstances are the roads to XXXX to be blocked for any reasons whatsoever. Under no circumstances is any one to be allowed into XXXX, foundation members included. Gamma-9 has full discretion on how to stop people from entering the perimeter and what to do with anyone found trespassing, but recommendation is full amnesticisation, keeping only core components of personality, followed by an observation period of no less than 20 days, MTF Tau-17 (”Voyeurs”) is responsible for observation.
Special attention is to be taken by all stationed MTF members during the Sporophyte Period, lasting around 10 days with seemingly random intervals in between them but occurring no less than once every 4 months (see addendum XXXX-B-Biology for more information, including a full list of recorded Sporophyte Periods and their estimated length), when breaches are more common.

Description: SCP XXXX is a city pseudo-organism (see addendum XXXX-B-Biology for more information on the classification controversies surrounding XXXX) in Argentina near █████████ (██°██’w ██°██’s). Of unknown origins, XXXX looks and acts like a normal medium-sized city of the area, including people, buildings and infrastructure. It’s pseudo-inorganic components (buildings, furniture, pipes, dirt, air, etc.) are designated XXXX-1, while it’s pseudo-organic components (citizens, trees, animals, micro-organisms etc.) are designated XXXX-2. It’s only readily apparent anomalous characteristic is the fact that the city is constantly immersed in night-like darkness, this effect can only be seen from within it’s zone of influence, the cause for it is unknown, Doctor █████████ theorized that ████████████████████████████████████.
XXXX was discovered after a plant in local government noticed an unnamed, unfunded and apparently inexistent city in the archives. A squadron specialized in anti-memetics and cognito-harzards — comprised of members of MTF Psi-9 (”Provender”) and researcher Marion — was dispatched to look for the city, see addendum XXXX-A for more information.
Everything naturally inside XXXX is a part of a single cluster-organism. Foreign elements, when placed into the dead-zone (see addendum XXXX-B-Biology) will slowly be colonized and converted by XXXX, becoming a part of it, designated XXXX-3. It is not known the exact length of exposure required for this effect to take place, but the average incubation period of said colonization is two weeks, with the ninety-ninth percentile cases falling in just over 20 days.
XXXX-3s are distinguished from XXXX-1s and XXXX-2s in that they have a lot more freedom of movement and interest, even being able to be removed from the dead-zone without immediately entering decomposition. If sapient, they retain most the of characteristics of personality present in them before conversion, making them functionally indistinguishable from regular people, their appearance too, remains unchanged. Autopsies of XXXX-3s bodies revealed that their bodies seem normal1. Attempted DNA analysis on formerly human XXXX-3s has revealed that ████████████████████████████████████████████████████████████████████. For more information see addendum B.
XXXX-3s are the only currently known way for XXXX to spread.
XXXX appears to have some kind memetic property, which is more active during it’s Sporophyte Period. Interviews with several XXXX-3s has revealed an element of compulsion which drew them into the city. Most admitted to having weird dreams right before they felt the need to relocate to the affected area. The reach of said effect is unknown, with victims ranging from locals to people from █████████, █████████ and █████████. There is some internal dispute about whether or not the effect displayed by XXXX should count as memetic, for more information on it check Addendum B-Memetic Research. A full log of interviews can be found on Addendum C.

Addendum A:

Interviewee: XXXX-3-A

Interviewer: Dr. Perez

Foreword: Interview 1 with XXXX-3-A about initial incursion into the anomaly by MTF Psi-9. Realized remotely by Doctor Perez, following the Anomalous Biohazard Protocol. Translated for Convenience.

<Begin Log>

Doctor: Good morning XXXX-3-A
-A: Martin… Doctor…
[Pause]
No, never mind…
Doctor: You’d rather I use your former identification?
-A: Yes? No? Maybe…
Dr.: Yes or no?
-A: No, I guess not. Good morning, Doctor.
[Brief pause in which -A takes a deep breath]
I suppose, you’d like the full story, huh? Well there’s not much to it, but that’s still why we’re here after all, little automatons documenting humanity’s desperate attempts at staving off the inescapable…
[Pause]
Sorry, the people here… They aren’t always great conversationalists. I suppose if you called me a -3 that would also make them -3s? Wait, no, they can’t be, so are they -1s or -2s?
[Silence, Doctor Perez does not respond]
-A: You can’t answer that, of course, sorry I asked.
Where to start? Let me see…
[Brief pause, where -A massages their temples]
Ah, yes. Well when we first approached the town, I’m sure you guys at home base noticed, but at some point the sky turned dark, not in a rainy sort of way, but like it had turned into night. This is already where I get a little confused. I’m sure you people have a much better understanding than us, being able to review the footage and all…
Dr.: What do you mean by confused?
-A: It’s just that… Well, I’m not really sure when it got darker, kind of like falling sleep you know? Like it wasn’t dark and then it was and it’s hard to pin-point an exact turning point.
[Pause]
But that wasn’t really the start was it? No, I don’t think so. I guess it started much earlier, when I volunteered for the expedition… I’m still not sure why I did it…
Dr.: You think you were compelled?
-A: No… Not in as much, I’ve worked with plenty of anomalies that compel people, from cognito-hazards to memetic agents, to other, weirder, stuff. My masters degree was on it you know? Puppet String Theory, I called it, as a little joke. But I don’t know, it’s hard to say… Someone had to do it, right?
Dr.: Usually we have researchers specialized in off-site work do this kind of thing, it wasn’t your responsibility.
-A: Yeah, I guess you’re right. It’s just… I don’t know how to explain it, I wasn’t compelled like the poor fools I’ve seen dealing with SCP REDACTED or REDACTED. It felt a lot more… Organic than that, it wasn’t like there was some alien will superimposing my own. I didn’t lose control, I didn’t feel dread, it just felt like the obvious thing to do, like tying your laces or making a cup of coffee.
Dr.: So you felt nothing?
-A: Right, there was no tell-tale sign of outside control.
Dr.: And yet…
-A: And yet it is odd, isn’t it? I had no reason to do it and I did it anyway.
[Brief pause]
Sorry, I’m just stalling now… So, it got dark as soon as we got into the city. We didn’t have much info, almost nothing, truth be told. We thought it was just going to be some slightly quirky anti-memetic town, even then the MTF guys were pretty on edge. Have you ever talked to one of those guys? And thought I was paranoid…
Dr.: -A… Please…
-A: Right, sorry, I’m rambling again. So we arrived and the town was just normal, extremely normal, aside from the fact that it was 1400 and already dark as a moonless night. So that’s it, right? Slap a Safe classification and move on. But… I don’t know, it’s kind of hard to explain… it felt wrong. Not in any definitive sense, it just felt weird to leave the town when we’d gone there because there was no info on it anywhere, go back basically empty-handed.
It didn’t feel like any anti-meme I’d ever seen, we had a couple of people on high-grade mnestics, just to make sure nothing would get by us and they just confirmed that there was nothing wrong. Mishra, the MTF leader, wanted to have a look around, just to make sure we weren’t missing anything.
So we had a look around and sure enough there was nothing wrong. No one was acting very surprised by the fact that it was night, but I guess people had just gotten used to it by now or something. Their accent fit into the North perfectly, people were walking around normally, nothing that called too much attention to itself. The strange part was that there was a town-hall, so the municipality should have been registered. We even scoped it a bit and again, found it normal and boring.
Dr.: When did you notice that something was wrong?
-A: We didn’t. There was nothing wrong, I know it’s hard to believe, hurts the pride and whatnot, but there was NOTHING wrong. So we scheduled to go back, that’s when we sent the preliminary results. The only thing I distinctively remember from that day — or night, whatever — was some kind of graffiti, right by the border of the town, practically in the first building that could be said to be in it: said some edgy teenager shit like “What do you do when the Void calls?”. I remember it because it set me on edge, it had that thing where it was weird, but not the bad kind you know? It didn’t really feel like it belonged to the city, like it was put there by someone else, as if it somehow superseded reality, does that make any sense? I don’t think it does, but that’s kind of how it felt…
Dr.: Sorry for circling around to this again but are you sure it wasn’t some kind of cognitohazard?
-A: No, I’m pretty sure it wasn’t. The MTF people didn’t even throw it a second glance and they were… Are?… way more qualified than me in identifying that kind of thing in an instant.
Dr.: Okay, go on.
-A: So we were about to go back and during our short stay some kind of fly or something had gotten into the car. It was buzzing around the van, being annoying. I remember it landing on the back of a seat, right in front of me then… well, then it kind of disappeared. No, that’s a bad way to describe it. It didn’t disappear it… crumbled, like it was made of charcoal, and then the screaming started…
[Long Pause]
Dr.: Screaming?
-A: I don’t know who it was, some MTF, maybe? I didn’t know them very well.
I hadn’t even realized when we’d first gotten in, but there were no cars on the road, at any point, no one seemed to enter or leave the town. I guess since we thought it was anti-memetic it didn’t even register, but now we knew it probably wasn’t and we saw the first car in the entire trip.
And whoever the fuck was still screaming. The car swerved, right in front of us, like drunk person trying to walk. The driver on our van hit the breaks. To avoid a collision we were driven off the road, the smell of burning rubber was overpowering, the engine died.
[Long Pause]
Funny thing is, whatever or whoever was in that car? It just might have saved us all.
Dr.: I see… What then?
-A: Well by that point I think Reyes called you and asked for extraction or at least another vehicle. For whatever reason the van had died, it wouldn’t even make a noise, like the engine had vanished. I was feeling pretty bad by that point, like a totalizing feeling of discomfort. Everything felt weird and unreal, like someone had exchanged all of my organs while I was still awake, but I hadn’t even noticed t until now.
Dr.: Did the others feel like this too?
-A: We weren’t talking much, honestly, but they all looked worse for wear.
Dr.: Can’t you… know… it?
-A: I don’t think I can, we aren’t a hive mind you know…
Dr.: Well, it was worth the question.
-A: Sure.
[Pause]
There were some more cars coming through now. No one was leaving the city but every once in a while a car would speed by. We decided to walk back to town, it was dark, we didn’t want to stay in the dark. It took us a couple of hours, but was simple enough, just walking in a straight line.
I… I think there was a temporal anomaly of some kind at play… I hadn’t thought of it until now, but if it took us a couple of hours to walk back into town, then we would have heard from the extraction team in that time, no?
Dr.: So far things seem…
-A: Normal? Yeah, they were, normal and boring.
[Pause]
[The Doctor Sounds Vexed]
Dr.: Were there any more cars on your way back?
-A: No, no more cars, if had to guess, I’d say that we’d seen about 6 or 7 cars going into the town, total.
Dr.: And none coming back.
-A: And none coming back.
Dr.: Were you afraid?
-A: No, not then. We had a fully equipped MTF on our side. I just didn’t know what to expect, I guess we never do.
When we got to the town, there was no one on the streets. The watch said 1800 or 1900, the streets were fully deserted and completely silent. All very eerie.
If I stood still and concentrated I could almost make myself believe I could hear some enormous breathing, as if the city was… Something. It was bullshit of course, I couldn’t hear shit, there was nothing to hear, just the sounds of our beating hearts and our shallow breaths.
We had a look around, the city wasn’t small, so there was no way we’d be doing a full sweep on foot. We got lucky, I guess, found a bunch of parked vehicles right in front of… something, I’m not sure what it was, looked almost like a construction site, but more organized, less provisional. It was ominous looking, we didn’t have as much gear as we maybe should, but curiosity killed the cat.
-A: Yeah, we didn’t even have to talk, really. It just felt natural, didn’t even have to lie. We’d come looking for odd and odd we found, maybe not in the way we were expecting, but still…
Dr.: Going in was… unwise…
-A: Yeah, we got lucky.
Dr.: Which we are you talking about?
-A: Ha! Isn’t that the question, Boss?
[Brief Pause]
But yeah, we went in, the MTF was just about done with bullshit, guns blazing. If those people were feeling half as bad as I was… I’m just surprised it wasn’t even worse. The construction site thing went into the ground, like they were digging a subway line or something.
Dr.: Can you tell us what happened in there?
-A: Don’t you have the footage?
Dr.: We have parts of it.
-A: Huh, weird. I don’t remember much, either. I we went in quietly, I was holding that big flashlight-thing, never used a gun and thought at least that way I’d be useful. There was nothing, just a vaguely dank smell.
I remember a hole, like it was carved out of reality, like it just went on and on and on. I remember some other girl, I can almost recall her face, she seemed so serene, so familiar… She talked about her dreams, both literal and metaphorical, I think at some point her face got all screwy, I don’t know. I could suddenly feel my insides twisting and turning, as if I were testing a muscle I didn’t know I had.
Then Reyes jumped and as he did, I swear there was something… I don’t know… It’s hard to say…
[Audible shudder, Long Pause]
Do you think we could try mnestics?
Dr.: I doubt it would be safe, you are hardly human anymore.
-A: Figured I could at least ask. Well, thing is, I don’t like not remembering, but whenever > I try to think about it… It’s like my mind falls into the hole all over again, just a black expanse of nothing all around, growing and growing and growing. There was something there I’m sure of it, then there were the mushrooms…
[Pause]
Dr.: Can you elaborate on that, -A.
-A: I don’t think I can… It’s like… it’s there, but it’s not there. The next thing I remember, > I was jump-starting a car with some people I didn’t recognize, but the car evaporated into thin air as we crossed the city’s limit. They weren’t afraid, I don’t think.
Dr.: What about the MTF, can you tell us what happened to them?
-A: I’m not… I’m not sure.
Dr.: Can you feel any of them?
-A: We are not a hive-mind…
Dr.: Can you?
-A: I… I think I can find Reyes… maybe…
Dr.: What about the others? These people you tried to flee with?
-A: I think they are still here, somewhere…
Dr.: You convinced them to stay?
-A: Maybe… I think they never wanted to leave in the first place, I don’t know…
[Long Pause]
Is… is that it?
Dr.: I guess so, at least for now.
[Brief Pause]
Wait, one more thing -A. Your dreams, were they weird at all before you volunteered for the mission?
-A: ███████████████████████████████████████████████████████████████

<End Log>

UNKNOWN ERROR DETECTED, PLEASE CONTACT SITE SECURITY

Dr.: Wait, one more thing -A. Does the phrase: "God-shaped hole", mean anything to you?
-A: Along the deep darkness that dwells in the in-between, that occupies the space the beneath. Along the tall rivers that defy time and space. Along the waterfalls that accept no gravity.
Dr.: -A?
-A: There’s to be found nothing. Nothing that could not be found anywhere else.
[Feed cut.]

No hazards found.

Scanning for memetic-hazards.

for a full report check file XXXX-██████████

-A: Because there is Nothing, not even void. Just us and us and us. Calling from and for the void. From and for the darkness. We are Nothing, you are Nothing, in the rotting corpse of a transient infinity of our own making.
<End Log>
Closing Statement: Well that was certainly unenlightening. Got a lot less than I was expecting. What surprised me more was that I knew -A before the colonization, and I don't think I'd have noticed anything different about them. For now our main preocupattion is still in containing it. - Dr. Perez

Other Addenda

Access Denied. Requires Secret-XXXX level Clearance, talk to Doctor Perez for more information.

If you are receiving this message by mistake contact site ██████████ security.


Wow! You flipped a card and got: bonesewer icy weeb!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 10:29
rating: 0+x
IMG_20210714_081226

SCP-XXXX

Item #: SCP-XXXX

Object Class: Euclid

Special Containment Procedures:SCP-XXXX is currently contained within a standard humanoid containment cell of dimensions 20mx20m in Site 6-3. SCP-XXXX's containment cell must contain a robust drainage and water filtration system.The containment cell is to be checked bi-weekly for the presence of cracks and other faults.

The entrance to SCP-XXXX's containment cell must be kept illuminated by a 150W Phillips brand flood light.In case of a power failure a low power 12V Phillips brand flood light will be used instead.The containment cell must be kept at an ambient temperature of 40°C and must be devoid of any light.Temperature sensors have been installed within the walls of the container and around the perimeter of the container.A single flash camera has been installed to facilitate research, however usage must be kept to a bare minimum to minimize damage done to SCP-XXXX's skin.

Personnel are prohibited from entering SCP-XXXX's containment cell for prolonged periods of time.Personnel must conduct a HAM A test prior to entering and after leaving SCP-XXXX's containment cell. A 10mx10m area around SCP-XXXX's containment cell must be kept vacated and well lit.Any personnel showing signs of frostbite and declining mental health must report to the medical ward within 2 days of first symptoms.If an individual exhibits advanced stages of frostbite or reports the disease after 2 days they are to be terminated.The corpses are to be incinerated and the ashes to be kept in a vacuum sealed box to prevent contact with other individuals. ]

Description: [SCP-XXXX is a humanoid entity who appears to be South Asian descent. The entity has what appears to be tire marks and bruises located on the skin.It lacks 2 fingers on its left hand which it seems to have lost to frostbite.It appears to constantly shiver, regardless of the surrounding temperature.Its sclera is tinged red and it appears to have a constant grimace.Furthermore it seems to be mute or unwilling to communicate.

The entity shows signs of necrosis and frostbite around its fingers and toes. The entity has been reported to have a foul smell by D-class and research personnel. The entity causes an acute dip in temperature in a 20m radius around it.This effect lasts for around 1-2 days after its removal from the location.The entity does not seem to need food. It is unknown as to how it obtains energy. It appears to show severe distress when brought in contact with light.

The entity is usually docile however it becomes extremely agitated in the presence of light.The SCP-XXXX is capable of "infecting" other living beings creating entities known as SCP-XXXX-A for human beings, SCP-XXXX-B for animals, SCP-XXXX-C for plants. These entities are capable of "infecting" other living beings although the mechanism used or this process is currently unkown.Any entity which comes into a 20mx20m radius of SCP-XXXX is at risk of being infected.

Addendum XXXX-A-001:Dated:██/██/2011, MTF-Epsilon-6 was sent to the █████ district in India following reports of a sudden dip in temperature in a local village and rise is suicides.

•MTF Epsilon-6 after assembling all the townsfolk at the town hall noted that the ambient temperature was -2°C.
•Following the relocation of the townsfolk to site-██ MTF Epsilon-6 conducted a thorough search of the village.
•MTF Epsilon-6 found what appeared to be a corpse of a human child lying on a paddy field.It is of note that the nearby plants were completely frozen over and at this time many of the members of the MTF expressed feeling severe discomfort.
source

[[footnoteblock]]


Wow! You flipped a card and got: ResearcherRowan!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 09:25
rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-%

Object Class: Euclid

Special Containment Procedures: SCP-% is contained at ██°████████"N ██°████████"W, in a 19th century farmhouse which has been spatially anchored at 4 internal points. The farmhouse must be guarded by no less than 4 agents at all times, and the spatial stability must be checked every 8 hours to ensure it is between █████ █████████ and ████ ██████████. Any deviation from these parameters must be reported back to Dr. ███████ immediately.

Description: [Paragraphs explaining the description]

Addendum: [Optional additional paragraphs]

[[footnoteblock]]


Wow! You flipped a card and got: Researchernebula!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 07:55
rating: 0+x
geometric-facades-residential-building_294094-27.jpg?size=626&ext=jpg

Exterior Image of SCP-XXXX

Item #: SCP-XXXX (Collegiate Convolution)

Object Class: Euclid

Special Containment Procedures: [Paragraphs explaining the procedures]

Description: SCP-XXXX is a large, collegiate fine arts building on the campus of [REDACTED] Community College, in [REDACTED], Arizona. The total square footage of the building according to blueprints puts the structure at 180,000 square feet, with two surface-level floors, and three subterranean floors, all of which are accessed via a single staircase; there are no other access points to the lower levels. So far as has been observed, only the subterranean floors of SCP-XXXX are anomalous at this time. For all intents and purposes, further mention of SCP-XXXX past this point will be referring strictly to these three floors.

The anomalous period of SCP-XXXX occurs on a very strict time schedule, overlapping exactly with the Community College's service hours. SCP-XXXX will only display its anomalous nature during what would be the closed hours of the building, from 6pm until 7:30am. During the non-anomalous hours between 7:30am and 6pm, on-site personnel are allowed to enter SCP-XXXX for probing and observation. However, entering SCP-XXXX within one hour of its active period must be approved by two class-3 personnel. All personnel entering SCP-XXXX must be equipped with a specially designed timepiece which alerts researchers of the time of day, in 15 minute intervals. (In the event that this timepiece becomes disabled or ceases function for any other reason, personnel are advised to immediately vacate SCP-XXXX to prevent accidents)

During the anomalous phase of SCP-XXXX, due to the seemingly random alterations that occur, currently there is no means of properly mapping and calculating the size. There is also no way to transmit signals of any kind from SCP-XXXX to the outside world. All attempts to transmit signals are deadened inside the anomaly. So far as has been observed, there are no anomalous entities - humanoid or otherwise - that have appeared as a result of SCP-XXXX's anomalous phase.

Addendum: [Optional additional paragraphs]

[[footnoteblock]]


Wow! You flipped a card and got: Cloverz84!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 05:46
rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX

Object Class: Euclid

Special Containment Procedures: All instances of SCP-XXXX detected are to be found and obtained by foundation personnel. All news sources are to be watched for news on individuals with extreme luck rates, as well as winners of jackpots and rare survival scenarios are to be watched by foundation for abnormal green eyes as well as a instance of SCP-XXXX located on them

In the event of SCP-XXXX being discovered on a person, Foundation personnel will be sent to obtain the instance of SCP-XXXX as well as the person who had possession of it, who from this point on will be referred to as SCP-XXXX-1. All close connections shall be administered amnestics.

Instances of SCP-XXXX-1 are to be placed in a standard humanoid containment cell, with basic amenities as well as 3 items of their choice. If it asks for access to a device that can access the internet, heavy restrictions are to be placed on said Internet device.

Description: [Paragraphs explaining the description]

Addendum: [Optional additional paragraphs]

[[footnoteblock]]


Wow! You flipped a card and got: L.A.D. - With Mr.Clementine!!!! You ca reload the page or go to the next.
DATE: 17 Jul 2021 00:46
rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX

Object Class: Safe

Special Containment Procedures:

Description: SCP-XXXX is a video game titled "L.A.D. - With Mr.Clementine!", located on an unlisted itch.io page, supposedly created by the user "MembranicAir". SCP-XXXX only has one notable character; Mr.Clementine!.

When SCP-XXXX is played by an individual, a cadaver will materialize within 10 meters of the user, notably, always out of their direct line of sight. Regardless of whether they continue to play SCP-XXXX or not, the user will remain unaware of the cadaver. Within 10 minutes of SCP-XXXX being opened, the cadaver will dematerialize.

SCP-XXXX: L.A.D. - With Mr.Clementine (IN DEVELOPMENT)

[[footnoteblock]]


Wow! You flipped a card and got: Coalescence of the Sorcerers!!! You ca reload the page or go to the next.
DATE: 16 Jul 2021 23:49
: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)); }
}
Assigned Site Site Director HMCL Supervisor Research Head Assigned Task Force
USMILA-Site-19 Tilda Moose Dr. Justine Everwood Dr. Everett Mann MTF ω-12 "Achillees heel"

Description


SCP-#### is a set of reality restructuring events that reinforce cultural ideas and beliefs. These restructurings can extend to a global scale and often have retroactive effects on past events.

Tactical Theology Note Note


The term 'pluripotent' is a an obscure piece of the Foundation lexicon that has gradualy made it's way into the limelight. The original use of term is in biology, referring to the ability to give rise to multiple different cell types, but in our case, it refers to the anomalous effects that manifest based around beliefs.

The anomalous influence of faith takes many forms, on many scales. On the smallest scale is Akiva radiation(abbreviated as Á in SI units such as 1 hÁ, representing 1 hecto-Akiva, equivalent to 1 hectojoule of mundane energy) measured through the Brandon-Spencer Piety Scale. This energy is emitted by holy relics and other revered items, and shifts reality based on belief.

When faith is strong, the subject of that faith grows stronger. One of the clearest examples of this is SCP-2440, whose ontokinetic power has a very clear causal relationship with it's social and psychological presence. Of course, deities are accompanied by countless other mythical characters. These are categorized by the a set of "tiers".

  • Apex-Tier
  • Nadir-Tier
  • Hadean-Tier
  • Reliquary-Tier

-Dr. Leslie Yolas, Director of the Ontokinetics Division.

SCP-####-א‎

SCP-####-א is an anomalous ritual that causes a set of 108 practitioners to become coterminous with SCP-####. Practitioners must be figures of authority within a unique organization that is not directly controlled by any other practitioner or their subordinates. The effects of this ritual are the basis of the Global Occult Coalition and it's Council of 108.
Wow! You flipped a card and got: PizzaCougar’s Epic SCP Article Drafts!!! You ca reload the page or go to the next.
DATE: 16 Jul 2021 21:50

This page is dedicated to my SCP article drafts. Enjoy!


Wow! You flipped a card and got: Living Blood!!! You ca reload the page or go to the next.
DATE: 16 Jul 2021 21:28
    • _


    bloodfalls.jpg

    Fig. 1.1. SCP-XXXX-1, as photographed by Dr. ██████. Circa. July 29th, 2006.


    livingblood2.jpg

    Fig. 1.2. SCP-XXXX-1, as photographed by Dr. ██████. Circa. August 3rd, 2006.

    Special Containment Procedures:

    McMurdo station posing as an antarctic research base but its actually an scp site looking over the falls at a distance

    several guards are positioned around, misinformation is spread

    Description:

    is literally blood, misinformation about iron oxides or whatever has been spread, preliminary exploration by research REDACTED caused him to fall into a cavern filled with blood and flesh, a large 'capillarie', which swept him away. we thought he was dead, and sealed off the area for further investigation w/ drones, which were rejected violently. then, his backpack and equipment suddenly shot out containing a notebook w/ photos and videos of his 'adventure'.

    basically this fleshy cavern extends deep within Antarctica, miles at least. he very rapidly loses his mind, evident by the notes, talking about how the nerves in the walls keep trying to connect to him when he stops, how it pushes him farther down (meaning he has no choice but to venture down), how when he gets too connected to the nerves he starts to 'feel' things miles away

    eventually he gives in to the psionic/telepathic 'voices' trying to get him to 'join' this flesh and winds up revealing that the flesh is alive. his notes end cryptically. a terminally ill foundation member determines that the flesh rejects machinery, and it wants more people, and volunteers to lead an expedition into the flesh tunnel w/ equipment to gather as much science as possible.

    his journey is broadcast back, and ends with the slow build-up of a 'thumping' noise as he went deeper and farther, which eventually starts to sound like a heartbeat. he doesn't quite reach the heart, but he does send back the information that this 'creature' is buried under the Antarctic ice and the Heart is at least twenty five miles deep. it ends with the implication that this 'creature' has MULTIPLE hearts, and that it only gets bigger the deeper you go, that it is sentient, and that it extends many hundreds of miles beneath the earth's crust.