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: Northern Dawn!!! You ca reload the page or go to the next.
DATE: 21 May 2021 16:43

rating: 0+x
: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)); }
}

Virmalised_18.03.15_%284%29.jpg

An instance of SCP XXXX-1

Special Containment Procedures: Due to the unpredictable and intangible nature of SCP-XXXX, priority has been altered from physical containment to information control and risk management, as the two have been determined to be intrinsically linked. The SCP foundation is to maintain constant observation of any area with regularly occurring instances of SCP XXXX-1. This area is to be constricted by default to the auroral zone, where most instances of SCP XXXX-1 develop, but may be reassessed depending on current observations. This space is to be fitted with foundation observation posts, equipped with weather radars, weather balloons and telescopes, at regular intervals of no less than 250 km apart, in accordance with the local Russian, Canadian, and Norwegian governments.

In the event of a geomagnetic storm, during which total surveillance of SCP XXXX-1 becomes a logistical impossibility, local weather beacons in the affected areas are to be consulted to address any informational uncertanties, and any suspected statistical or observational anomalies are to be thoroughly investigated.

Any mention or speculation on SCP XXXX described in any scientific or meteorological journal is to be redacted preceding publication, whereupon all attempted study on the subject is to be discontinued, any findings are to be disposed of, and any individual suspected to have been exposed to these findings is to be administered class-B amnestics.


Description: SCP XXXX is a phenomenon that occurs in conjunction with the solar disturbances in the Earths magnetic field usually referred to as Aurora Borealis, which are denoted as SCP XXXX-1 when referenced in the context of SCP XXXX.

SCP XXXX is a regularly occurring discolouration in SCP XXXX-1, whereby the wavelengths of light emitted from instances of SCP XXXX-1 deviate by a fixed value of approximately 1.732 nanometers lower than the values predicted by quantum physics. This deviation has been measurably confirmed for every frequency of light expected to be emitted in instances of SCP XXXX-1. The cause of SCP XXXX is unknown, but has been preliminarily ascribed the designation SCP XXXX-2.

Due to the fact that many aspects of SCP XXXX-2 remain largely uncertain to the foundation, the only effect of SCP XXXX-2 which is demonstrably and consistently anomalous is SCP XXXX. However, there are many other anomalous events that have been credited to SCP XXXX-2 over the years. As these events and the speculation on them have been decisive in the frequent reclassifications and reevaluations of SCP XXXX, they have been documented as far as has been possible in the logs below.

Please note that many of the claims and conclusions in these logs are speculative in nature, and that the only consistently reproducible anomalous feature of SCP XXXX-2 is SCP XXXX.


Addendum: [Optional additional paragraphs]


Wow! You flipped a card and got: Coolbert!!! You ca reload the page or go to the next.
DATE: 21 May 2021 15:29
rating: 0+x
warning.png
Assigned Site Site Director Research Head Assigned Task Force
Area-xxxx Dr. █████████ Dr. █████████ MTF Alpha-16 aka "Uncle Mike's"

Special Containment Procedures: Following laws set out in Title 45 Code of Federal Regulations, Part 46 (45 CFR 46), often referred to as the Common Rule, SCP-xxxx is to be held inside a secure, insulated, 13m x 10m room with UL-752 Level 8 bullet-resistant glass windows that look out onto a projected view of a digitally rendered “outside world” to keep SCP-xxxx from deteriorating mentally. SCP-xxxx should be monitored with 24-hour surveillance through security cameras hidden inside this room.

SCP-xxxx is to have access to a single mattress and bedding, a digital clock fixed to the wall, a table and chair fixed to the floor, a toilet, and a speaker which plays music into the room to keep SCP-xxxx's mood in check, along with being able to allow staff to communicate with the subject. SCP-xxxx is to have regularly scheduled meals throughout each day, along with regularly scheduled times for washing and exercise, and in the evenings the subject's meal is to be laced with Butabarbital to ensure a regular sleep cycle. Due to the laws created by the Ethics Committee in Title 45 Code of Federal Regulations, Part 46, SCP-xxxx must have signed a consent form before any test is to be carried out on SCP-xxxx.

Description: SCP-xxxx appears to be a white human male approximately 31 years old and 1.81 meters tall (≈5ft 9in). SCP-xxxx has auburn hair kept quite short, blue eyes, and lentigines on the skin, along with acute signs of atopic eczema. SCP-xxxx is physically in good health, having a healthy weight for his presumed age and height, weighing 66.67kg (147lbs), and a full blood count revealed no underlying health conditions at the time of testing (eczema not included).

However, the subject’s mental state does appear more abnormal. SCP-xxxx seemingly believes, as he claims, that his name is Roger Pelinos, despite facial recognition software and documents obtained from multiple public records services proving SCP-xxxx's name to be, in fact, Bill █████, a man born in Lincoln, Nebraska to an █████ and ██████████, both unable to be contacted due to being deceased. Despite this information, SCP-xxxx does not recognize the name Bill █████ and insists on being called Roger Pelinos, even going to such lengths as listing off the names of the schools he believes Roger Pelinos went to along with the street he lived on as a child to prove that he is, in fact, Roger Pelinos. Some of the names provided do happen to exist, however, nobody by the name of Roger Pelinos has any connection to those places.

Multiple psychiatric evaluations of SCP-xxxx have not been able to assess whether this is a form of DID (dissociative identity disorder) or if there is another reason why SCP-xxxx believes his name to be Roger Pelinos, yet it does not appear as though SCP-xxxx is purposely lying or trying to mislead/manipulate others with this information as he is not pretending to be one of the 71 already existing Roger Pelinos’.

SCP-xxxx also exhibits unusual behavior once per day at around 20:12 for approximately 5 to 10 minutes when he is alone and thinks he cannot be seen. SCP-xxxx will pull off one finger from each hand, detaching them as if they were a building toy, and swap them by plugging them into the opposite hand to the one they were removed from. Biologically speaking, SCP-xxxx should not be able to do this. Further studies of SCP-xxxx have found that the subject will only do this when he believes the time to be 20:12, and manually changing the time on clocks, and other devices displaying the time to SCP-xxxx, can affect when he performs this action, along with removing any way of telling what time it is entirely, which will cause the subject to just guess.

Addendum xxxx.1: Audio transcript from an interview with SCP-xxxx taken with psychologist Dr █████████ on 07/15/████.

<Begin Log, [20:00, 07/15/████]>

SCP-xxxx: A bit late, this, wouldn't you say?

Dr █████████: Yeah, sorry about that. Shall we get started? Please state your name for the record.

SCP-xxxx: Really? Every time, huh?

Dr █████████: For the recording, yes.

SCP-xxxx: Roger Pelinos.

SCP-xxxx: What?

Dr █████████: And how are we doing today, Mr. Pelinos?

SCP-xxxx: Good.

Dr █████████: Is there anything you wanted to discuss with me?

SCP-xxxx: Um… don't think so. Oh, I need fresh pillows.

Dr █████████: You… you'll need to inform one of the people who brings you your food I think.

SCP-xxxx: Could you not do that?

Dr █████████: No.

SCP-xxxx: No, you can't or-

Dr █████████: It's not my job.

SCP-xxxx: Do you not remember that?

Dr █████████: What?

SCP-xxxx: You said that to me on our first session.

Dr █████████: I said what?

SCP-xxxx: No, you can't or no, you won't.

Dr █████████: What were you not doing?

SCP-xxxx: Um… oh, it was about that joke I made about my names during sex.

Dr █████████: I'm not sure I'm following.

SCP-xxxx: You asked if I went by any other names, and I said "Only to the honeys, if you catch my meaning", and you said you didn't, and I said like women, and you asked if I could list those other names and I said no, to which you asked, "No, you can't or-"

Dr █████████: I remember now, thank you.

SCP-xxxx: So are we done for today?

Dr █████████: We haven't discussed anything.

SCP-xxxx: We've been talking for ages.

Dr █████████: We've been talking for ten minutes.

SCP-xxxx: Just feels late is all.

Dr █████████: Is this about your thing?

SCP-xxxx: My what?

Dr █████████: Your fingers.

Dr █████████: For the record, SCP-xxxx is not answering.

<Log cuts out at [20:11…] and resumes at [20:14…]>

Dr █████████: SCP-xxxx has left the interview room and has been escorted back to their room.

<End Log, [20:14, 07/15/████]>

[[footnoteblock]]


Wow! You flipped a card and got: more.!!! You ca reload the page or go to the next.
DATE: 21 May 2021 13:59
rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX ['Why do I not get a no?']

Object Class: ???? ['How about just about Human?']

Special Containment Procedures: Kill him No matter the circumstances, the subject must not be put under any form of stress; emotional or physical. ['Yeah, don't do that. It doesn't work for ANYONE ONE.']

Description: My anamolous property is FEAR. ['Just that.'] No matter the person, object, thing; no one can ever see me eye to eye. Any thing that may look at me regardless of distance or even think of me years from now will immediately understand the word "Fear" in its utter and total devastating form i.e a life worse than death.
Thankfully it depends on their intentions and view count, if someone sees me in a non-hostile manner for the first time for just for a second and then forgets about me then all they will fell is chills and a sudden heart rate spikes.
If they don't do it exactly as above, for non-anamolous personel irrational "Fear" will consume them which if left untreated will lead to Death.
For Anamolous things or objects, I haven't been tested against them. yet.
Another thing is that this effect is permanent which means the use of amnestics will only hide this effect not delete it. ['That's why I don't try to leave. I have done enough damage as is.']
This effect is passive in normal situations but if anyone tries to harm me intentionally or unintentionally, regardless of distance, regardless if they know about me or not, regardless if I exist in that place or not, they will immediately die and any attacks launched or shot will..well..start fearing me if that makes sense.

Addendum:
1. Testing weapons ['IT was kinda cool!']
[ 1.1 : A guy wearing named D- 23599 ['Weird name'] was told to shoot me from a distance of 10 meters with a blind fold on. He held a standard foundation approved handgun Glock

[[footnoteblock]]


Wow! You flipped a card and got: thefourthlick!!! You ca reload the page or go to the next.
DATE: 21 May 2021 13:00
rating: 0+x

(This entry is meant to be a story similar to Lord of the Flies, and contains a multitude of references to it. I would like to know if the references are excessive or too explicit)

█████ wept for the end of innocence, the darkness of man's heart, and the fall through the air of the true, wise friend called █████.


image.jpg

SCP-6000.


Special Containment Procedures: Containment of SCP-6000 is, at the present time, no longer necessary. To prevent . While this series of events has occurred only once in recorded history, several criteria have been proposed to identify other possible locations that are to be monitored for anomalous activity. To avoid Such criteria include:

  • At least 20 acres of wooded land
  • Hiking trails that are visited by no less than 1,000 people each day
  • Noticeably large concentrations of [DATA EXPUNGED]
  • Location within countries, states, or other subdivisions of land in which religion is held to a high degree of importance.
  • Large uptick in reports of mental illness

Description: SCP-6000 designates a portion of the Blue Hills Reservation in Milton, Massachusetts. Based on eyewitness reports of this event from the outside, the area of land vanished instantaneously, leaving a [DATA EXPUNGED] in its place. Those viewing it during the events would disappear and appear in SCP-6000-2. Immediately following the events, SCP-6000-1 reappeared in the same state it had been prior to disappearance. Notably, a severed pig's head impaled by a stake was found standing at its center, which was proved to be entirely non-anomalous.

After reviewing all video, audio, and journals obtained from SCP-6000-1, at least 57 civilians and one Foundation member were present during

SCP-6000-1 refers to the events that occurred from 13/7/2010 to 13/10/2011. These events were marked by the appearance of a multitude of anomalous entities, some of which were believed to have been within Foundation custody, in addition to the appearance several new entities (See Addendum XXXX). While the presence of these entities during the events is well-documented, none were able to be located following the conclusion of the documented events.

SCP-6000-2 is a pocket dimension where SCP-6000-1 was believed to have been located. (Not sure if the floating island should be in a pocket dimension or somewhere on earth)

Addendum: Several entities were known to have inhabited the area that was under the effects of SCP-6000. Additionally, no instances listed below were identified in recovered video logs recorded during SCP-6000.

Designation Description Behavior
SCP-6000-A

Canine teeth

Any individual within an undetermined range of SCP-6000-A reports feelings of dread and unease, reporting a "beast" lurking nearby. Across all video recordings, this instance was mentioned 23 times.
SCP-6000-B

Unknown

No physical description of this instance was provided in any recovered video, but several individuals that witnessed the events of SCP-6000-B reported hearing voices in the back of their head. This could indicate the presence of a memetic effect whose point of origin is unidentifiable due to its cessation.
DATE

DATA

EFFECTS
DATE

DATA

EFFECTS
SCP-682

See SCP-682's file for a detailed description

The instance was reported by only one individual, Dr. ███████ █████████,

(Narrative will show those in SCP-6000-2 in their attempts to survive as long as they can, or until they are able to return home. Mental states deteriorate, creating conflict and pushing individuals to murder each other to stay alive, similar to LOTF)

VIDEO LOG


DATE: 13/7/2010

NOTE: Appears to have been recorded minutes after SCP-6000 activating.


[BEGIN LOG]

TIME: 00:01 Video begins. The face of the individual recording is first shown, who then turns their camera towards the sky, which appears to be entirely dark and clear despite the cloudy weather reported in the area at the time of disappearance.

TIME: EVENT

TIME: EVENT


[END LOG]

VIDEO LOG


DATE:

NOTE:


[BEGIN LOG]

TIME: EVENT

TIME: EVENT

TIME: EVENT


[END LOG]

[[footnoteblock]]


Wow! You flipped a card and got: ThisGuyNamedLoki 3!!! You ca reload the page or go to the next.
DATE: 21 May 2021 12:05

Special Containment Procedures: Reports of SCP-XXXX events are to be responded to by MTF Sigma-103 ("Red Rain"). SCP-XXXX-0 is to be locked down until SCP-XXXX has been successfully terminated. Individuals who attempt to enter or leave SCP-XXXX-0 are to be terminated by sharpshooters situated approximately 800 meters from the initial "border" to SCP-XXXX-0.

Sigma-103 operatives are to never use firearms when entering SCP-XXXX-0 to terminate SCP-XXXX-1. Operatives are to enter in groups of three (3), each equipped with an AN/PRC-126 radio, a bodycamera and an Imalent MS18 flashlight.

Operatives are to also wear a FAST helmet, a PMK-3 gas mask, PVS 31A night vision and thick fully-covering clothing to avoid exposure to SCP-XXXX-2.

Operatives exposed to SCP-XXXX-2 are to be put in an enclosed space1 and only recovered after the event is over.

Sigma-103 operatives are to be trained in surpressing emotions whilst operating in SCP-XXXX-0. Any operatives showing feelings are to be knocked out by receiving a hit to the head. This is expected to be done profesionally and failure to do so may result in the death of an operative.

After the event has been terminated, all non-foundation survivors are to be given Class C amnestics and other individuals who have acknowledged about SCP-XXXX are to be tracked down and also given amnestic treatment.

Description: SCP-XXXX is an event in which all clouds in an area turns completely blood red and start moving closer to each other, blocking off all natural light from entering the area, now designated SCP-XXXX-0. Furthermore, a fog of the same color will appear. This fog is extremely dangerous to inhale and to come in contact with, as this fog is extremely basic with a pH of around 17.

In addition to this, rain and lightning will also appear, both of these are in the color of blood red.

SCP-XXXX events occur in intervals of 5-9 days and can happen anywhere in the world. SCP-XXXX events can not be stopped or predicted where or exactly when it will occur. SCP-XXXX events often end after 24-36 hours.

Anyone who leaves SCP-XXXX-0 during an event will start to feel extreme emotional distress, and will commit suicide shortly after leaving.

During an SCP-XXXX event, humanoid shadow figures, designated SCP-XXXX-1, will manifest. These instances variate in height and body type, but they always have completely white eyes and no hair. SCP-XXXX-1 instances can pass through any solid material with ease and firearms have proven completely ineffective against the instances.

SCP-XXXX-1 instances are hostile and attack by appearently consuming their prey into their own body upon physical contact. This does not seem to affect the instances' size or strength in any way.

SCP-XXXX-1 instances are extremely photophobic and seem to grow weaker and start to vanish if they come in contact with light. To where is unknown but there have been no reports that they reappear somewhere else, thereby rendering this the most useful method of neutralization2.

360_F_288703427_Ss6uJgppY41dWdXWDhIMZkHgsEOrInjb.jpg

SCP-XXXX event in a forest in [DATA EXPUNGED]. Notice instance of SCP-XXXX-1 in attack state. Prey unknown.

[[footnoteblock]]


Wow! You flipped a card and got: gr-ape!!!! You ca reload the page or go to the next.
DATE: 21 May 2021 11:59
/*
    None CSS with Left Beef
    [2019 Wikidot Theme]
    Created by stormbreath.
*/
 
/* LINKS */
a {
    color: #0645AD;
}
 
a.newpage {
    color: #CC2200;
}
 
 a:visited {
     color: #0B0080;
}
 
#side-bar a {
     color: black
}
 
#side-bar a:visited {
     color: black;
}
 
/* REMAKE THE HEADER */
h1, #page-title {
    color: black;
}
 
#page-title {
    border-color: black;
}
 
div#container-wrap {
    background: none;
}
 
div#extra-div-1 {
    height: 22px;
    width: 100%;
    top: 140px;
    position: absolute;
    background: black;
}
 
#header {
    background-image: url('https://scp-wiki.wdfiles.com/local--files/theme%3Aminimal/minimal.svg');
    background-size: 6rem;
}
@media (max-width: 580px) and (min-width: 480px) {
    #header {
        background-position: 0.5em 4.5em;
        background-size: 66px 66px;
    }
}
 
@media (max-width: 479px) {
    #header {
        background-position: 0 5.5em;
        background-size: 55px 55px;
    }
}
 
#header h1 a {
    color: transparent;
    text-shadow: none;
}
 
#header h1 a::before {
    content: "SCP Foundation";
    color: black;
}
 
#header h2 span {
    color: transparent;
    text-shadow: none;
}
#header h2 span::before {
    content: "Secure, Contain, Protect";
    color: black;
}
 
/* SIDE-BAR */
#side-bar .side-block {
    background-color: white !important;
    border-color: transparent;
    border-radius: 0px;
    box-shadow: none;
}
 
#side-bar .heading {
    color: black;
    border-bottom: solid 1px black;
}
 
@media (max-width: 767px) {   
    #side-bar {
         background-color: white;
    }
 
    #side-bar:target .close-menu {
         background: none;
    }
}
 
#side-bar .collapsible-block-folded {
    background-image: url(https://scp-wiki.wdfiles.com/local--files/theme%3Aminimal/expand.png);
}
 
#side-bar .collapsible-block-unfolded-link {
    border-bottom: solid 1px black;
}
#side-bar .collapsible-block-unfolded-link .collapsible-block-link,
#side-bar .collapsible-block-unfolded-link .collapsible-block-link:hover {
    color: black;
}
 
#side-bar img,
iframe.scpnet-interwiki-frame {
    filter: grayscale(100%) saturate(0%);
    -webkit-filter: grayscale(100%) saturate(0%);
}
 
/* TOP-BAR */
#top-bar ul li ul {
    border: solid 1px black;
}
#top-bar ul li.sfhover ul li a,
#top-bar ul li:hover ul li a {
    border-top: 1px solid white;
}
 
#top-bar ul li.sfhover a,
#top-bar ul li:hover a {
    background: white;
    color: black;
}
#top-bar ul li ul a, #top-bar a:hover {
    color: black;
}
#top-bar ul li.sfhover a:hover,
#top-bar ul li:hover a:hover {
    background: black;
    color: white; /* top bar hover background color */
}
 
/* RATING MODULE */
.page-rate-widget-box .rate-points {
    background-color: black !important;
    border: solid 1px black;
    text-transform: capitalize;
}
 
.page-rate-widget-box .rateup,
.page-rate-widget-box .ratedown {
    background-color: black;
    border-top: solid 1px black;
    border-bottom: solid 1px black;
}
 
.page-rate-widget-box .rateup a,
.page-rate-widget-box .ratedown a {
    background: transparent;
    color: white;
}
 
.page-rate-widget-box .rateup a:hover,
.page-rate-widget-box .ratedown a:hover {
    background: white;
    color: black;
}
 
.page-rate-widget-box .cancel {
    background-color: black;
    border: solid 1px black;
}
 
.page-rate-widget-box .cancel a {
    color: white;
}
 
.page-rate-widget-box .cancel a:hover {
    background: white;
    color: black;
}
 
#page-content .rate-box-with-credit-button {
    background-color: black;
    border: 1px solid black;
    border-radius: 5px !important;
    box-shadow: 1px 1px 3px rgba(0,0,0,.5);
}
 
.rate-box-with-credit-button .page-rate-widget-box .cancel a:hover {
    border-radius: 0;
}
 
#page-content .rate-box-with-credit-button .creditButton p a {
    border-left-color: transparent;
}
 
#page-content .rate-box-with-credit-button .fa-info:hover {
     color: black;
     background-color: white;
}
 
#page-content .modalbox {
    box-shadow: 0 2px 6px rgba(102, 102, 102, .5);
}
 
.close-credits,
.credit-back {
    filter: hue-rotate(260deg);
}
 
/* PAGE ELEMENTS */
blockquote,
div.blockquote,
#toc,
.code {
     background-color: white;
}
 
.scp-image-block {
    border: solid 1px black;
    box-shadow: none;
}
.scp-image-block .scp-image-caption {
    background-color: white !important;
    border-top: solid 1px black !important;
    color: black;
}
 
/* RECOLOR THE SEARCH BAR */
#search-top-box-input {
    border-color: black;
    color: black !important;
    background-color: white;
}
 
#search-top-box-input:hover,
#search-top-box-input:focus {
    background-color: white;
    border-color: black;
}
 
#search-top-box-form input[type=submit] {
    border: solid 1px black;
    color: black;
    background-color: white;
    background: white;
}
 
#search-top-box-form input[type=submit]:hover,
#search-top-box-form input[type=submit]:focus {
    border: solid 1px black;
    background-color: white;
    background: white;
    color: black;
}
 
/* LOGIN STUFF */
#login-status {
    color: black;
    filter: grayscale(100%) saturate(0%);
    -webkit-filter: grayscale(100%) saturate(0%);
}
 
#login-status a {
    color: black;
}
 
#login-status ul a {
    color: black;
}
 
#account-topbutton {
     background: #ccc;
     color: black;
}
 
/* HOVER THINGIES */
.hovertip {
     background: white !important;
}
 
/* FOOTER  */
#footer {
    background: black;
    color: white;
}
 
/* TABS */
.yui-navset .yui-nav,
.yui-navset .yui-navset-top .yui-nav {
    border-color: transparent; /* color between tab list and content */
}
 
.yui-navset .yui-nav a,
.yui-navset .yui-navset-top .yui-nav a {
    background: white; /* tab background */
    border-color: white;
    color: black;
    transition: 0.125s;
}
 
.yui-navset .yui-nav a em {
    background: white;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.7);
    border-color: white;
}
 
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav .selected a:focus,
.yui-navset .yui-nav .selected a:hover {
    background: white; /* selected tab background */
    color: black;
}
 
.yui-navset .yui-nav a:hover,
.yui-navset .yui-nav a:focus {
    background: white;
}
 
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav .selected a em {
    border-color: transparent;
    box-shadow: 0px 1px 2px 0.5px rgba(0,0,0,0.5);
    background: white;
}
 
.yui-navset .yui-content {
    background: transparent; /* content background color */
}
 
.yui-navset .yui-content,
.yui-navset .yui-navset-top .yui-content {
    border-color: transparent; /* content border */
    border-top-color: transparent; /* different border color */
}
 
.yui-navset-left .yui-content {
    border-left-color: #b7a9a9; /* different border color */
}
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        top: 0.5em;
        left: 0.5em;
        z-index: 5;
        font-family: 'Nanum Gothic', san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888;
        background-color: #fff;
        border-radius: 3em;
        color: #888;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block!important;
        position: fixed;
        top: 0;
        left: -19em;
        width: 17em;
        height: 100%;
        margin: 0;
        overflow-y: auto;
        z-index: 10;
        padding: 0.3em 0.675em;
        background-color: rgba(0,0,0,0.1);
        transition: left 0.5s ease-in-out;
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        z-index: 10;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
 
    #top-bar .open-menu a:hover {
        text-decoration: none;
    }
 
    .close-menu {
        margin-left: 19em;
        opacity: 0;
    }
}
warning.png

Special Containment Procedures:

Description: SCP-XXXX is an extremely hostile humanoid entity. SCP-XXXX targets youth ages 3-17, and produces an infohazardous effect towards individuals 18 and up, making them believe SCP-XXXX is simply imaginaned by the individual SCP-XXXX is targeting, even if the entity is right in front of them or if the targeted individual has been injured by SCP-XXXX. The effect lasts until SCP-XXXX fully terminates its target.


Wow! You flipped a card and got: SCP-8776!!! You ca reload the page or go to the next.
DATE: 21 May 2021 04:00

l

l

ll
l

l
l

Wow! You flipped a card and got: Giuseppe Esposito!!! You ca reload the page or go to the next.
DATE: 21 May 2021 03:46

Name: Giuseppe Esposito
Age: 38
Personality:

Giuseppe a soft voiced individual, who comes off as kind, luring, and not intrusive. These traits are exactly what got him recruited into MC&D. He is filled with jokes, quiet, but gleeful. He loves talking casually, even if it is dis-encouraged by his employers, even with potential customers.

Appearance:

The most obvious appearance he has is the mask wrapped around his face, only not covering his eyes. However, the mask doesn't look like a average mask, it appears to be a long strip of cloth, wrapped around his face. Other than that he wears a dark purple suit, with a bowlers cap, similar to Mr. Marshall.

Affiliation: Marshall, Carter, And Dark
Rank: Field Agent

Weaponry: He is equipped with a silenced pistol, that is all that is required for a MC&D agent.

Additional Equipment: As well as the pistol, he also carries a: pocket watch, radio communications, and a briefcase containing various things, that will vary depending on the roleplay.

Backstory:

Giuseppe Esposito was recruited into MC&D after showing absolute outstanding abilities as a auctioneer. He was given the standard orientation and given a Acquisition. Site-98. A large site housing hundreds of SCP items. With a tiny bit of the near endless resources MC&D possesses, he was inserted into the site, to retrieve, sell, and much more.
Wow! You flipped a card and got: Dr Krisimos!!! You ca reload the page or go to the next.
DATE: 21 May 2021 02:36

Name: Diakritiko Krisimos
Age: 41
Personality: Most of the time, they are working on the paperwork that is given when being chosen for the ethics committee, but when they are not..

Krisimos is a kind man, as many recall. He is understanding. A protector to the protector. The foundation is cold, not heartless, and he is one to enforce that. While many seem to think having the role that he possesses would require a stern attitude, but again, people think the ethics committee has no power. Krisimos knows of the secret of many restricted class SCP objects. This of course comes with many draw-backs. With knowing these secrets, such as Procedure-110-Montuak, to name one, Krisimos is extremely volatile to being completely broken down from a mention to something relating to a disturbing story. On the lighter side of Krisimos, he love to subtely mention redacted info, as a way to pass time.
"Ah, hello Cimmerian, how are you. Flowers are blooming quite a bit today, wouldn't you say?" "Diakritiko, this is the third time this week you have referenced Lilys Proposal, its getting old." He even does this to unauthorized personnel on rare occurrences, just for laughs to himself later that night.

Appearance: Krisimos is a grey haired man, who is tall, and slender. He wears a fedora hat, that casts a shade over his eyes. His eyes are dark brown, almost black. He has a grey and black striped uniform, which is what he will almost always be wearing, unless going out for a casual stroll. His hands are sharp in nature, not literally of course, but metaphorically. They don't have curves. His hands are always cold to the touch, even in warm environments.

Role: Ethics Committee
Clearance: Level 4
Class: Class B

Backstory: It is off records on how he was originally recruited into the foundation, as it is with most committee members, but there are some on how he was recruited into the Ethics Committee. He was noticed by the higher ups of the Ethics Committee when working on SCP-5934, which helped the document reform into its current status. Because of how much potential he held, instead of giving standard class C amnestics, they brought him in, and here he is now.

Notes: I am using this canon on how the ethics committee works, I strongly suggest reading it before interacting with my character at all. (Click on the word 'this')
Wow! You flipped a card and got: Scp XXXX Pianobia!!! You ca reload the page or go to the next.
DATE: 20 May 2021 19:45

rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX

Object Class: Euclid

Special Containment Procedures: XXXX must be contained at site 56 in a special containment cell. The cell must be an almost exact repilaca of a 18th century theater. XXXX will become very hostile if it is not contained with these procedures.

Staff must attend, on the 13th day of every month, an orchestral performance done by XXXX. If any negative emotion from the audience, XXXX will become hostile. Visting XXXX

Description: [Paragraphs explaining the description]

Addendum: [Optional additional paragraphs]

[[footnoteblock]]