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: SCP-XXXX RBM!!! You ca reload the page or go to the next.
DATE: 06 May 2021 16:30

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)); }
}


Mary

SCP-XXXX during a walk

Special Containment Procedures:

Description:


Wow! You flipped a card and got: Khuutsag!!! You ca reload the page or go to the next.
DATE: 06 May 2021 15:24

Wow! You flipped a card and got: JAcerStriker!!! You ca reload the page or go to the next.
DATE: 06 May 2021 12:09

rating: 0+x

Item #: SCP-5943

Object Class: Euclid


Special Containment Procedures


SCP 5943 is to be housed in a lead-lined container within special airtight containment cell in Site (idk). All instances of 5943-1 found/created are to be incinerated within 48 hours. Any violin is not permitted within 50 metres of an instance of 5943-1. In case of a containment breach, MTF Eta-11 ("Savage Beasts") is to be deployed for immediate reacquisition of the anomaly.
Unauthorised access of SCP 5943 or 5943-1 will lead to detainment and/or termination

SCP%205943%20new.jpg

SCP 5943, in its dormant state


Description


SCP 5943 consists of a 4.2 cm by 4.2 cm by 2.3 cm white box containing a solid form of resin or 'Rosin', a component used to lubricate bows used to play violins, a 4.9 cm by 1.8 cm by 4.9 cm hollow red box open at one end and a small orange cloth. The white box has a Maker's Insignia on its bottom, titled 'The Instrumentalist' (See interview 5943-1 for more information). The anomalous properties of this object is limited to the 'Rosin' contained inside the box.

5943, despite a normal chemical make-up, induces an abnormal emotional reaction based on a subject's proximity, universally causing a mild fear reflex in human subjects. The red and white boxes act as a 'sink' for 5943's passive ability.
Upon lubricating a bow using 5943, it is designated as 5493-1. A violin played using 5943-1 is capable of controlling human emotions. Note that the anomalous properties lie in the bow(5943-1) itself and not in the violin played.
Tests conducted reveal that the frequency or thickness of a string as well as the note played do not affect the degree and nature of the emotion that is affected. The loudness of string and the particular string played- G.D,A or E(1,2,3 or 4 from the left respectively) affect these two factors, respectively. Given below is a comprehensive list of the emotions manipulated by 5943-

Serial Number Strings Used Emotions altered Notes
1 G Happiness Subjects were observed to smile uncontrollably and laugh spontaneously.
Depressive tendencies of subjects reduced greatly.
All effects were temporary, lasting for upto 30 minutes after playing was ceased.
2 D Anger Subjects showed aggressive tendencies.
Multiple subjects started shouting at foundation operatives and demanding to be released.
3 A Sadness Subject were observed to become extremely dejected
dejected and show depressive tendencies.
Interestingly, depressed subjects showed no changes on being affected by the A string
4 E Fear Subjects were observed to cower and scream on high exposure.
Multiple subjects attempted to take their life out of fear.
5 G,D Sexual Desire [DATA EXPUNGED]
6 G,A Longing Subjects were observed to break down hysterically and
showed aggressive tendencies. All subjects subsequently demanded to be released.
7 G,E Hope Subjects showed no visible changes at the time of testing.
Subjects attempted to escape containment after testing concluded.
8 D,A Hate Subjects show increasing hostility towards one-another.
Subjects observed to attack a fellow D class inmates.
9 D,E Hysteria Subjects were observed to show extremely violent and destructive
tendencies and exhibit a 'mob-mentality'.
10 A,E Despair No visible change in subjects. Compliance of subjects increased greatly.
11 G,D,A Trust
12 G,D,E Pride
13 G,A,E Shame
14 D,A,E Love

It is believed that 'The Instrumentalist' was able to distribute several instances of 5943-1., many of which are in possession of various terrorist groups, responsible for their high recruitment as well as high instability in their areas of operation.


Discovery


SCP 5943 was first identified following multiple reports of human trafficking in the state of Gujarat in India, carried out by a "man/woman with a violin". MTF Eta-11 ("Savage Beasts") was deployed to ██████ district of the city of Ahmedabad. SCP 5943 was tracked to a
abandoned warehouse with 5 hostages and █ bodies. Following items were recovered at the location-
•Personal belongings of hostages
•Food and water
•25 instances of 5943-1
•A locked safe, containing 5943
•A video camera


Addendum-01



Wow! You flipped a card and got: JuiceNotJava's Corner of Procrastination!!! You ca reload the page or go to the next.
DATE: 06 May 2021 12:00

Welcome, to nothing yet. Don't mind me, I'm messing around with Wiki Syntax, because, well, you know.


Wow! You flipped a card and got: plexus-6k-new!!! You ca reload the page or go to the next.
DATE: 06 May 2021 07:56
rating: 0+x

2048px-Pyh%C3%A4j%C3%A4rvi_panorama_%2832872886484%29.jpg

The lake where Site-6000-P is located. Picture taken before full construction.


Special Containment Procedures: The SCP foundation has done an agreement with the Finnish government to keep SCP-6000 out of the public's knowledge. The O5 council has agreed to provide SCP-6000 with proper housing, food and water, in exchange for their cooperation.

Containment of SCP-6000-A is to be entirely overseen by SCP-6000. A chamber has been established around a lake located in Finland, designated Site-6000-P. All personnel are to wear "wizard clothes", like the ones worn by SCP-6000. SCP-6000 haven't given reasoning, but they demand the specific clothing is worn by all staff.

No plant life is permitted in or around Site-6000-P. Paper and other materials made with plant material are to be confiscated. All reports of SCP-6000 written in Site-6000-P are to be in digital format.

In the event of a breach, SCP-6000's members are to be evacuated immediately by MTF Upsilon-17 ("Bush Bashers"). Following SCP-6000's evacuation, MTF Upsilon-17 are to then begin evacuating the area of personnel. When no personnel are left in Site-6000-P, the air-tight entrance gate is to be closed. All personnel, including SCP-6000's members are to be sent to the relatively close Site-11 and treated of any injuries and disease they may have gotten during the breach.

Description: SCP-6000 is a set of humanoid entities of finnish descent calling themselves "The Elemental Wizard Council of Environment Protection" (EWCEP). All members of the said organization have been designated SCP-6000-1 through 10 91. All of SCP-6000's members are able to cast "force fields", spheres of an unknown material which are impossible to break without enough external force, as well as repairing environment damaged by fire, floods or SCP-6000-A. SCP-6000-1 is designated the CEO of EWCEP, so he can often be seen wearing a distinct green robe.

SCP-6000-A is a 2.7m tall humanoid entity of unknown descent. SCP-6000-A's skin is colorless, but gives off a red glow any time it is touched. SCP-6000-A has 2 horns similar to that of a bull coming out of its forehead. The horns are always at 100℃, not changing even in temperatures as low as -107℃. All plant life near SCP-6000-A begins to burn, which can create a chain reaction with potentially devastating consequences. SCP-6000 have shown great knowledge of SCP-6000-A's capabilities, which has lead the foundation to let them create containment procedures


Addendum 6000.1: Discovery

SCP-6000 was discovered on 4/12/2020 during a major wildfire in the area. The foundation launched an investigation and discovered the source. MTF Lev-90, which was stationed in Tampere, Finland quickly investigated while the amnestic & suppression department made sure there was no evidence of the event. A temporary facility was established around the current perimeters of Site-6000-P.

Later that day, a group of individuals calling themselves "wizards" demanded they were allowed to see SCP-6000-A, who they referred to as "Nordin". SCP-6000 were questioned before entry, but after an explanation by SCP-6000-1, SCP-6000 were allowed to enter.

TRANSCRIPT

Participants: SCP-6000-1, Agent [REDACTED]


[BEGIN LOG]

SCP-6000-1: Hello, friend. Please let me and my fellows enter.

Agent: This is a military base. I cannot let you enter.

SCP-6000-1: It is not a military base. It is a dangerous area, and you are playing with fire by occupying it. Your foundation can't contain Nordin… without us.

Agent: *sigh* You are entering Site-6000-P. What are you looking for?

SCP-6000-1: I am Kenjaal. I demand you move away and let me meet with Nordin.

Agent: What are you talking about?

SCP-6000-1: Nordin. He is the great reaper, tumor of the earth. He is responsible for the fires and famines amongst the trees and the crops and the death of entire forests.

Agent: Excuse me, I think the person you are looking for is not located here. Here is contained a-

SCP-6000-1: I know. I need to enter along with the rest of my council.

Agent: I cannot just let you in like that.

SCP-6000-1: But you must. You cant contain him permanently. Only we can.

Agent: *sigh* Fine. I will contact my overseers. If they don't let you in however, I will not stop them.

[END LOG]

When SCP-6000 were allowed to enter they were stopped to be interviewed. They resisted at first, but were forced to comply.

Dr. Pesta: What do you know about the entity contained here?

SCP-6000-1: Ah, Nordin? I know all about him. What do you need?

Dr. Pesta: First, what is your group about? Why are you looking for this place?

SCP-6000-4: We are a group dedicated to protecting the environment of our planet. We are called "The Wizard Council of Environment Protection".

Dr. Pesta: Why do you call yourself wizards?

SCP-6000-1: Because we are wizards. You might not call it that, but that is what we are.

Dr. Pesta: Okay. Can you tell me, why do you need to be here? What is Nordin?

SCP-6000-1: Of course. Nordin is an ancient being, born long before time had a name. He ravaged and destroyed anything that his eye lands on. Before him, our kind was everywhere, but after him, the surface of our planet was only a molten, red world. After he was trapped by a survivor, he was punished for his crime. We were created to keep him imprisoned, and now, you have been temporarily doing that. But it wont last for long and we need to be let back in.

Dr. Pesta: Now it kind of makes sense. How do you know who we are?

SCP-6000-1: Because we know everything about this place. We know what enters and what exits, even if we are on the other side of the galaxy.

Dr. Pesta How do you actually keep him in check?

SCP-6000-1: That is a secret I cannot tell you. What I can tell you is that you can watch the results. You don't want me to demonstrate how he escapes his prison when he isn't supervised by us.

Dr. Pesta: You've got a point, however, you should also tell us what we have to do to help you keep him contained.

SCP-6000-1: We don't need much, just give us living quarters, food and water.

[[footnoteblock]]


Wow! You flipped a card and got: chinkeeyong!!! You ca reload the page or go to the next.
DATE: 06 May 2021 06:27
rating: 0+x

Item #: SCP-XXXX

Object Class: Euclid

Special Containment Procedures: SCP-XXXX-1 and its grounds have been purchased by Foundation front company FIS2 and designated Provisional Site-XXXX. Standard disinformation and security protocols have been enacted under Cover Story 419 ("Private Property"). Additionally, modifications have been made to the structure of SCP-XXXX-1 to facilitate containment.3

SCP-XXXX-A initiation is restricted to researchers with 4/XXXX clearance or higher and must be approved by unanimous consent of the SCP-XXXX Project Board. Researchers must have been exposed to SCP-2140 and are required to pass a monthly psychological evaluation.4 All uses of SCP-XXXX are to be recorded (see Addendum XXXX-04). Unauthorized intrusion into SCP-XXXX-1 is to be repelled with lethal force.

Foundation webcrawler I/O-HILDEGARD is to monitor news media and online traffic for evidence of uncontained SCP-XXXX-N instances. In the event of a confirmed SCP-XXXX-A event, Foundation agents are to secure the SCP-XXXX-N instance pending classification and Provisional Site designation.

Description: SCP-XXXX is a conceptual thaumaturgical language. Unlike conventional spoken and written languages, SCP-XXXX is primarily expressed through the medium of consciousness. An SCP-XXXX message consists of a fixed sequence of qualia which may carry information corresponding to a set of data, instructions, or both. When correctly expressed in the form of SCP-XXXX-A, SCP-XXXX messages induce anomalous effects in baseline reality.

All current findings pertaining to the structure and vocabulary of SCP-XXXX messages can be found in Document SCP-XXXX-26, "Results of Project LOGOS." An illustrative sample of SCP-XXXX vocabulary is provided here.

Quale Description Reconstructed Meaning Foundation Standard Transcription
The experience of attempting communication with a higher power Unknown; required for successful SCP-XXXX transmission PING
The experience of placing the tip of one's left thumb into a body of cold water The number 16 16
The experience of listening to the musical tone F6 A command to generate matter WRITE
The experience of falling into a dark void A command to perform a different specified instruction GOTO
The experience of saying the word "Amen" or "Amin" A command which causes all further message content to be disregarded RETURN
The experience of separating one's palms from each other A command to transmit a completed SCP-XXXX message SEND

SCP-XXXX-1 is ███████ Monastery, an Eastern Orthodox monastery in ███████, Bulgaria. SCP-XXXX-1 and its grounds exhibit an unusual Akiva-rich environment5 which is theorized to naturally occur at certain points in space and time (SCP-XXXX-N instances) [1]. At this time, SCP-XXXX-1 is the only confirmed SCP-XXXX-N instance and the only known location in which SCP-XXXX messages can be transmitted and received.

SCP-XXXX-A refers to the ritual by which SCP-XXXX messages are transmitted. SCP-XXXX-A consists of the following steps:

  1. A subject enters the chancel of SCP-XXXX-1 alone.
  2. The subject meditates on the quale PING.
  3. The subject meditates on the quale BREAK.
  4. The subject meditates on the desired SCP-XXXX message to transmit.
  5. The subject meditates on the quale SEND.

SCP-XXXX-B refers to the anomalous effects produced upon the successful transmission of a SCP-XXXX message. SCP-XXXX-B typically involves vivid hallucinations of qualia in the subject corresponding to a SCP-XXXX response, and may involve a wide range of additional ectoentropic effects.

[[footnoteblock]]

Bibliography
1. Soon, Hwang. (2016) "Akiva Confluence Extrapolation in Higher Dimensions", The Foundation Science Review 308, no.4 (Spring 2016): 15-21, scip://doi.fsir.net/10.XXXX/273933.

Wow! You flipped a card and got: SCP-9000 107SPO!!! You ca reload the page or go to the next.
DATE: 06 May 2021 06:08

l
l
l
l
l
ll
l
l
l
l


BY ORDER OF THE OVERSEER COUNCIL

The following file is Level 5/9000 classified. Unauthorized access is forbidden.

GoI 291


Wow! You flipped a card and got: Srachkeix!!! You ca reload the page or go to the next.
DATE: 06 May 2021 04:26

l
l
l
l
l
l
l
l
l

Wow! You flipped a card and got: Hellbyte3!!! You ca reload the page or go to the next.
DATE: 06 May 2021 00:43

IIR - 2/10/20

Subject: Initial Recovery of the Great Three

Report: Heavy response team 12

Results:

Analysis:


Wow! You flipped a card and got: !!! You ca reload the page or go to the next.
DATE: 05 May 2021 22:24
rating: 0+x
4448348608_0a3795e671_c.jpg

Photographs of SCP-6XXX-16 and SCP-6XXX-24

Item #: SCP-6XXX

Object Class: Safe Euclid [Following Incident 6XXX-37-A; See Addendum 6XXX-C]

Special Containment Procedures: Due to the nature of SCP-6XXX, Foundation Site 63 has been established directly outside the western boundary of SCP-6XXX for quick response and analysis of all new occurrences. SCP-6XXX’s anomalous zone is to be surrounded in a 60-foot lead-lined barrier wall with no fewer than three layers of barbed wire, 50 MegaVolt electric deterrence wire, and constant armed patrol from Mobile Task Force Δ-14 (Delta Fourteen). The top of the barrier wall must be covered in laser-grid sensors and motion-detecting cameras at all times. The control tower, terminal, hangars, lounge, and aristrips of SCP-6XXX are to be constantly monitored by surveillance cameras 24/7, with at least 2 active observers at Site 63. No personnel with clearance lower than 6XXX/15 are to be allowed past the barrier wall and onto the premises under any circumstance.

All air traffic is to be diverted at least 30 miles east or west from SCP-6XXX to prevent additional incidents. Any aircraft unwilling to change direction will be intercepted by MTF Δ-14 F/A-18 Super Hornet fighter aircraft and forced to change direction. If target aircraft is still noncompliant, lethal force is authorized to prevent the aircraft from entering the zone.

MTF Δ-14 is to run constant long-range surveillance of the airspace using Boeing 707 AWACS (Airborne Warning And Control System) reconnaissance aircraft. Should any anomaly be detected by an AWACS aircraft, data is to be coordinated to Site 63 Control and monitored from the moment of first contact to the moment of the crash.

In the event of a third 6XXX-37-A Incident occur, MTF Δ-14 is to immediately enact the "

Description: SCP-6XXX encompasses about 50 square miles of barren desert near , Arizona. In the southeast corner of the zone is a small-sized airport with two runways, one measuring 6,456 feet in length and bearing the number 22L, and the other measuring 7,654 feet and bearing the number 22R. This airport does not appear on any aviation maps or airport code books, and the only indication that it exists are satellite images. (Satellite images on public map sites have been blurred and removed following object reclassification). The airport also contains 4 medium-sized hangars for mid-range passenger aircraft, 2 small hangars for private prop-driven aircraft and regional jets, a main terminal building with 6 standard jet bridge gates, a standard air traffic control tower, a refueling area on the north side of the airport, and a lounge adjacent to the main terminal. A sign on the entrance of the main terminal denotes the airport as International Airport. The terminal is in the very early stages of decay, showing minor signs of age such as faded paint and upholstery. The terminal features a check-in desk with standard kiosks, a conveyor belt behind the counters for loading checked baggage, and several different lines for major airlines of the time period. The lounge shows the same stage of decay. The hangars contain assorted aircraft parts and components ranging from under-wing engine fan blades to pistons from early combustion aircraft.

The airport served from 1993 to 2001, when an accident involving a fully-loaded passenger aircraft forced its closure on September .The wreckage of said aircraft, designated SCP-6XXX-1, is located approximately 5 miles north of runway 22L. The airport was left abandoned until around 2011, when it came under the Foundations radar after hearing local rumors of a ghost plane crashing near the abandoned airport. The Foundation quickly stepped in and launched a disinformation campaign, debunking the rumors as military explosive testing, and cordoning off the site. The aforementioned ghost plane did indeed crash, landing 2 miles northeast of SCP-6XXX-1. The new wreckage was identified as a Helios Airways Boeing 737-300. Further analysis and examination matched the wreckage to Helios Airways Flight 522, registration number 5B-DBY, an aircraft that crashed near Athens, Greece in 2005. There were no bodies or remains inside the wreckage, and the Flight Data Recorder showed only the past 10 minutes, about the time when the aircraft was said to appear.

Since 2011, there have been 36 different instances of “ghost planes” appearing at the south end of the zone, overflying the airport by a varying distance, suffering a fatal error or malfunction, and subsequently crashing into the terrain north of the field. The full extent of the anomalous properties are not known, but it is understood that the zone can manifest any aircraft from history, including decommissioned, scrapped, crashed, and current aircraft. Instances of SCP-6XXX-# are not limited to any timeframe or period, the only criteria being that the aircraft in question is of a model that can sustain reliable flight. The list below is an ongoing log of all instances of SCP-6XXX-1 through 6XXX-36.

Addendums:

[[footnoteblock]]