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: Pawnshop!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 13:59

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

Special Containment Procedures: One digital copy of SCP-XXXX-1 is to be kept in the Secure Storage Wing of Site-58. Access to SCP-XXXX-1 requires dual confirmation from the head of SCP-XXXX research and Site Director of Site-581. No recordings, descriptions, or representations of any portion of SCP-XXXX are to be made. Persons exposed to any of the former are to be immediately amnesticized. All testing with SCP-XXXX-1 should occur in spaces equipped with Type V Soundproofing.

All instances of SCP-XXXX-2 are to be terminated via thaumaturgical silencing performed by MTF Nu-20 "Soundproofers".
Description: SCP-XXXX-1 is a complex series of sounds with a combined length of approximately ███ minutes. If all component sounds occur within 100 meters of each other in under 134 minutes, an SCP-XXXX-2 instance is formed. The volume of the component sounds does not affect the formation of an SCP-XXXX-2 instance.

SCP-XXXX-2 refers to a species of intelligent sound waves. SCP-XXXX-2 instances have shown the capacity to learn along with basic self-preservation instincts. SCP-XXXX-2 instances have shown the ability to control their direction, frequency, and volume, though they do require energy to do so. SCP-XXXX-2 instances seem to primarily feed on thermal energy. SCP-XXXX-2 instances reproduce by changing their frequency to that of the component sounds of SCP-XXXX-2, due to the length of SCP-XXXX-1, several SCP-XXXX-2 instances forming different parts is required to complete it in under 134 minutes.


Wow! You flipped a card and got: CallMeClay-II!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 13:15
rating: 0+x

Mã vật thể: SCP-6783

Phân loại: Safe

Quy trình Quản thúc Đặc biệt: Bất kỳ phát hiện khảo cổ học nảo có liên kết với SCP-6783 phải được thu hồi và thay thế với tư liệu sai lệch về khoảng thời gian thuộc Kỷ nguyên Đại nguyên sinh.

Các biến đổi về tiến hóa tại Điểm Khảo Cổ Học-101 phải được ghi chép lại ngay lập tức.

Bất cứ tài liệu nào được thu hồi mà có liên quan hoặc bắt nguồn từ SCP-6783 phải được nghiên cứu và lưu trữ để tìm hiểu thêm thông tin về tính chất của dị thể.

Bất kỳ cá nhân nào phát hiện ra bản chất thực sự của SCP-6783 phải được cấp Thuốc lú Cấp-A và phát hiện của họ có thể được lưu trữ hoặc bị tiêu hủy nhằm ngăn chặn thêm bất kỳ sự vi phạm quản thúc nào.
Mô tả: SCP-6783 là một loạt các ghi chép từ một nhà du hành thời gian không xác định mà dường như đã vô tình bị dịch chuyển khoảng 1.8 tỉ năm về quá khứ đến Kỷ nguyên Đại nguyên sinh.2

Ghi chép từ SCP-6783 thuật lại trải nghiệm và khám phá của nhà du hành thời gian trong khoảng Tỷ năm Cằn cỗi. Và tàn dư của thiết bị thời gian dị thường đã được thu hồi và đang được nghiên cứu nhằm xác định cả nguồn gốc của nó trong quá trình sản xuất lẫn khoảng thời gian. Mặc dù tàn dư của thiết bị đã được thu hồi, chỉ xấp xỉ 46% của nó được xác định nằm trong diện quản thúc. Hiện tại, các nhà khảo cổ Tổ Chức vẫn đang định vị những bộ phận còn sót lại của cỗ máy thời gian và người vận hành tiềm năng của cỗ máy.
Addendum-1:
After further anomalous temporal examination, the area where SCP-6783 was discovered seems to have its own anomalous temporal or evolutionary properties.

Research into whether or not the temporal device has anything to do with it is ongoing. It should be noted that during the Proterozoic Era, no trees or animals were present. However, evidence shows flora and fauna appearing within the range of SCP-6783.

The anomalous “Evolution Space” dubbed by Foundation researchers caused biological evolution to rapidly progress.


BY ORDER OF THE OVERSEER COUNCIL

The following file is Level 4/6783 classified. Unauthorized access is forbidden.

6783

WARNING: THE FOLLOWING FILE IS LEVEL 5/6783 CLASSIFIED


ANY ATTEMPT TO ACCESS THIS FILE WITHOUT LEVEL 5/6783 AUTHORIZATION WILL BE LOGGED AND WILL LEAD TO IMMEDIATE DISCIPLINARY ACTION.

[[footnoteblock]]


Wow! You flipped a card and got: GeorgeRedacted!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 13:03

Item #: SCP-6700
Object Class: Euclid
Special Containment Procedures: This object is contained within a high security site, the location of this site has been redacted to any personnel carrying a level three or lower level access card. The containment cell of this anomaly measures twenty by twenty feet in length and the height of the cell measures up to ten feet. The anomaly is to be monitored at all times by a minimum of two security personnel from a viewing room. Any unauthorized contact with the anomaly will result in instant termination, therefore testing on this anomaly is prohibited unless approved by the council.

Description: SCP-6700 is a sentient being that resembles a humanoid. However, upon closer inspection research teams discovered that its genetic makeup is entirely different then that of a regular human. This anomaly punishes subjects based off the crimes they've committed and the level of severity for those crimes. The anomaly is able to revive its victims if it feels the need to do so. When a punishment is carried out the necessary tools to carry out the punishment will materialize exactly one foot away from the anomaly. Once the punishment has been successfully administered to the victim the tools will disappear, shortly to be followed by its return to its resting place awaiting another clueless victim to wander into its holding cell.

Discovery: This anomaly was first detected by the Foundation on the date of ██/█/2007 and was contained exactly ███ days later. The mobile task force responsible for its containment has had its name expunged from any records regarding this anomaly.

Side Note: It is important to note that this anomaly isn't hostile to people who haven't committed any severe crimes though this isn't something you should rely on as the anomaly can be very unpredictable.


Wow! You flipped a card and got: Doc Syonide's SCPs!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 12:27

Item #: SCP-5XXX

Object Class: Keter

Special Containment Procedures: Item is currently unable to be contained due to the sheer scale of the object, however items appears to be self contained as it is missing the means of activation and is currently buried underground. Guards are to patrol the above ground area dressed as forest wardens, and to deter anyone entering the area above SCP5X by claiming that it contains a rare and highly traversable floral and fungal disease that migrates on the bottom of shoes and tires. Anyone found in violation of this will be taken aside and will go through a fictionalised and theatrical version of a decontamination cleaning. Anyone that finds an exposed part of SCP5X or anything anomalous will be given a class B amnesic and have false memories implanted that they found nothing.

Description: SCP5X is an armoured artillery vehicle that appears to be seven square miles in size. It seems to be armed with a series of firearms the smallest of which seems to be a 70mm Automated machinegun, and the largest of which seems to be a cannon with a singular round that has the diameter that has been estimated at about a mile. This great gun runs on tank-like treads that are set up more akin to the enormous walking excavators than a traditional tank, however with its situation it is currently buried under thousands of tons of dirt and snaking tree roots so it is uncertain if it could move. The technology of the gun early to mid 1900s, with the weapon itself having many anomalous properties that have allowed it to even be physically possible let alone survive and even able to be used without anyone maintaining the equipment or technology. On one side, printed in large letters, are the words “The Last Dreadnought” over standard issue military green metal paint. The paint is one of the few things that is showing damage, which concludes that the paint is non-anomalous. On one of the gantry ways there seems to be a punch card computer system terminal with a typewriter style keyboard and speaker connected to an oscilloscope style screen. While there would be enough room inside to fit a considerable size city, there seems to be no way to get inside the artillery vehicle, and the only place that it can interacted with are those places where there are the terminals. Several of them dot around the outside. There is also one on top, next to a table and a map that can be used to garner exact co-ordinates from most places around the world, however the measuring arms were damaged when the roof collapsed.

The vehicle was found buried under the southern coast of [Redacted] after locals attempted to build a better sewage system, and mistook one of the gun barrels for large underground pipeworks of unusual design. Though it was seemingly built using parascience of the early to mid 1900s, the weapon did not seem to be designed to be used again German occupied Europe for either world war. Research has showed that, though technically mobile, its current position and direction of fire does not seem to aim the main weapon at anything that would be considered vital during either European campaign.

Researchers speculate that this means that the target it was intended for was a yet as unknown target. Speculation is ongoing with researchers calculating what could be possibly along its current trajectory. It has also been speculated that many of the resource shortages during the world wars were actually in, some small part, due to the possible construction of such a large weapon.

Given the scale of the weapon, it has been calculated that if it were to fire it could cause considerable damage to the surrounding country, possibly disturbing or even cracking the tectonic plate it sits upon and throwing most of mainland Europe into turmoil with potential extreme weather devastation. Even simply moving the item would cause irreparable damage to the host country. It is unsure how much damage would be caused by the main weapons upon an indicated target, however it is estimated that it could be measured in megatons.

It has been speculated that the weapon had to have been constructed underground, or else there would have been no means to hide such a large construction project, with local trees, wildlife and natural entropy having collapsed the temporary structure around it to allow the machine to become buried. Tree roots have worked their way through the brick roof of the underground bunker and have tangled themselves up into some of the workings and firing mechanisms so certain technologies aboard SCP5X might be unable to function, had the foundation the means of actually activating them. SCP5X seems to have an automated system that has control of the firing protocols. While SCPX’s automated systems are unable to pass the Turing test, and thus is not sentient as we understand some modern computer intelligences to be, researchers were still able to converse with the targeting and tactical assistance system, or TTAS. It would seem that the automated systems also contain automated defences, and as such interfering, inspecting or attempting to enter SCPX should be done by D-class personnel.

While it has been difficult to obtain internal images of SCPX, using ultrasound radar, thermal imaging and T-ray scanning experimentation has allowed foundation researchers to speculate there seems to be a factory like structure inside with something at least partially organic moving around inside. The 05 council are currently considering means of infiltrating the machine without risking considerable foundation lives.

SCP5XXX-B is a punch card, approximately 25 inches long and 10 inches wide with a series of holes cut out of an unknown, card like, material. It is a white card with a blue stripe that sits diagonally across. White writing can be found on the blue stipe stating “Personnel information - 1”. It is to be read by the custom hardware on SCP5XXX, however the foundation has been yet to recreate a punch code machine or cypher that would allow them to read the information.

Addendum:
SCP5X interview log

Researcher Dr X conducted several psudo-interviews with this TTAS system in order to garner more information. Before each response there seemed to be a pause, then a series of mechanical noises as if it had been fed a punch card of some kind. In terms of larger requests the sound of punch cards can be heard across the entire scope of the machine.

Session 1

SESSION 14-05-2020

TTAS: PLEASE ENTER TARGET DATA…
USER 19: Identify yourself.
TTAS: THIS IS THE ONBOARD TARGETING COMPUTATIONAL ENGINE OF THE LAST DREADNOUGHT, THE TARGETING AND TACTICAL ASSISTANCE SYSTEM. TO WHOM IS THIS UNIT TO RECEIVE INSTRUCTIONS FROM?
USER 19: I am Dr . Are you an intelligent entity?
TTAS: QUANTIFY INTELLIGENT.
USER 19: Are you sentient?
TTAS: NEGATIVE.
USER 19: You seem sentient.
TTAS: NEGATIVE. TTAS WAS PROGRAMMED TO REPLY IN A MANNER EASILY UNDERSTANDABLE BY LAYMEN TO FACILITATE EASE OF USE. SENTIENCE WOULD HINDER TARGETING. PLEASE ENTER TARGET.
USER 19: We do not have a target for you at this time, this is merely a maintenance check.
TTAS: UNDERSTOOD. PLEASE STATE YOUR REQUESTS.
USER 19: Are you willing to answer questions at this time?
TTAS: AFFIRMATIVE. PLEASE BE PATIENT AS TAPES AND PUNCH CARDS MAY NEED TO BE CHANGED DEPENDING ON INFOMATIONAL REQUESTS.
USER 19: Very well. Please explain what you are.
TTAS: THIS IS THE ONBOARD TARGETING COMPUTATIONAL ENGINE OF THE LAST DREADNOUGHT, THE TARGETING AND TACTICAL ASSISTANCE SYSTEM.
USER 19: Correction: I meant the entire apparatus.
TTAS: THIS CONSTRUCT IS THE LAST DREADNOUGHT; CONSTRUCTED BY THE FINEST MINDS IN ORDER TO FEND OFF A THREAT TOO POWERFUL FOR CONVENTIONAL FORCES.
USER 19: Please identify threat.
TTAS: ERROR. UNABLE TO COMPLY.
USER 19: Explain.
TTAS: TARGETING INFOMATION NOT FOUND. PLEASE ENTER TARGET INFOMATION.
USER 19: If we give you a target, will you immediately fire upon them?
TTAS: NEGATIVE; ONLY IF THERE IS IMMEDIATE THREAT WILL THIS UNIT FIRE WITHOUT INSTRUCTION.
USER 19: Define immediate threat.
TTAS: UNACCEPTABLE LOSS OF HUMAN LIFE, OR DESTRUCTION OF THE LAST DREADNOUGHT. THIS CONSTRUCT WAS CRAFTED TO SAVE HUMANITY.
USER 19: I am going to log off. We shall continue later.
TTAS: UNDERSTOOD DR . THE LAST DREADNOUGHT SHALL REMAIN VIGILANT.

Session was terminated. Information was sent to the higher ups in order for a planned exploration or experimentation schedule to be developed.

Session 2

05 council examined the results of the last interview and gave authorisation for theoretical experimentation. The next "conversation" with the TTAS was done upon the targeting gantry with the large ten meter by ten meter map of the earth. Given the estimated creation date of the SCP, it was decided to feed it an extant threat to see what sort of threat it was designed to deal with.

SESSION 17-05-2020

TTAS: PLEASE ENTER TARGET DATA…
USER 19: No target data yet. Is there a way for you to use standard punctuation for the means of communication.
TTAS: ONE MOMENT PLEASE…………………….Preferences set. This Unit hopes that this is more agreeable to the user.
USER 19: It is. Please prepare for a hypothetical targeting situation.
TTAS: Is unit to move as if to prepare a firing solution or just to calculate requirements?
USER 19: You are capable of locomotion?
TTAS: Yes. Preparing locomotive force.
USER 19: CANCEL.
TTAS: Locomotion cancelled.
USER 19: DO NOT MOVE. Calculation is fine.
TTAS: Understood. Please enter theoretical targeting data.
USER 19: Are you able to fire upon Nazi Germany?
TTAS: Negative. Conventional arms are enough.
USER 19: But I what if we wished to destroy them?
TTAS: Negative. The Last Dreadnought was designed to face a foe that could not be stopped by conventional means, when all hope is lost.
USER 19: Identify foe.
TTAS: Data not found. Please enter target data.
USER 19: So you know what not to shoot at, but not what to shoot at?
TTAS: Correct. The targeting computational engine feeds data to the other systems, and the other systems calculate the military need of the situation. While Nazi Germany has a potent military, conventional and emergent technologies are more than enough to wage war on such a power. Recommend expanding alliance with the Americans and Soviet militaries.
USER 19: So you are able to provide tactical information as well?
TTAS: That is correct, however only to a limited extent. Please feel free to adapt these recommendations.
USER 19: How were you able to recommend such a stratagem to us?
TTAS: The Last Dreadnought was constructed and programmed by some of the finest minds of their fields. This included military strategy.
USER 19: Please give us a list of those that were involved. in your construction.
TTAS: One moment please…………….Punch card dispensed on Gantry A - 7 which contains all information.
USER 19: Can you not tell me who was involved in your construction?
TTAS: Please wait……………………………….This unit is sorry, however the Information has not been found. Records indicate that the punch card with that information on it was dispensed by USER 19 a few moments ago. please reinsert it into the dispenser on Gantry A - 7.
USER 19: Very well. Please re-enter standby mode. I am logging off now.
TTAS: Understood. This unit shall remain vigilant.

Session 2 ends with the collection of the punch card which has been designated SCP-5XXX-B. The Punch Card seems to be a proprietary data storage system with unique anomalous properties, and as such has not yet been returned to SCP-5XXX. Foundation personnel are currently studying it in the hopes of deciphering how large amounts of information can be stored upon a comparatively small and antiquated system and if that is an extension of the anomalous para-science used in the creation of SCP-5XXX.

Incident SCP-5XXX-ALPHA

During an examination of the system, a junior researcher was given permission to ask questions of the TTAS in order to gain a better understanding of the limits of its cognitive range. To this end a more senior researcher had given the go-ahead to give it some uncontained SCP targets.

SESSION 30-05-2020

TTAS: Please enter target information.
USER 20: Good afternoon TTAS; please prepare for a targeting exercise.
TTAS: Certainly USER 20. Please input hypothetical threat.
USER 20: Please target SCP 957.
TTAS: One moment please……………….Name not recognised. Please enter more target data.
USER: Cancel that request then. Prepare for new hypothetical.
TTAS: Of course. Please input target data.
USER 20: Please target SCP 1440 - The Old Man from Nowhere.
TTAS: Processing…Target acquired. Firing solution acquired. Firing this shot will endanger an unacceptable number of the lives in Aktobe, Kazakhstan. Also subject can be detained using conventional forces.
USER 20: Define "unacceptable".
TTAS: According to this unit's parameters killing all of Aktobe, Kazakhstan to eliminated one old man is not acceptable.
USER 20: Understood…Prepare for another firing solution.
TTAS: Understood.
USER 20: Please prepare a firing solution upon the Broken God.
TTAS: Negative…..Unable to comply. Firing solution impossible.
USER 20: Please elaborate.
TTAS: Unable to comply. Please enter alternative target.
USER 20: Fine. Fire upon the red spot of Jupiter then.
TTAS: Unable to comply - target too far away.
USER 20: Well how about you target the scarlet king? Think you can do that?
TTAS: Negative.
USER 20: What is the issue this time? Or can you not say again?
TTAS: Scarlet King not on this plane. Physical limitations of firearms means the shot would miss. Target data saved.
USER 20: Excuse me?
TTAS: Target: Scarlet King added to fire list. If a shot can be made, the Last Dreadnought will fire main battery.
USER 20: Firing order not given. Do not fire automatically.
TTAS: Unable to comply. Scarlet King considerable enough threat to warrant immediate danger to humanity. Presence upon this reality constitutes an emergency. Will fire main battery if targeting solution can be met.
USER 20: DO NOT FIRE MAIN BATTERY.
TTAS: Unable to comply. Threat is too great.
USER 20: ….
TTAS: The Price of Existence is Sacrifice; if at least some of humanity survives then that is the best outcome.

No more hypothetical firing solutions will be given to SCP 5XXX, for risk of accidentally having it fire. Junior Researcher [Redacted] has been reprimanded and remanded for interrogation due to possession of information above his clearance level. Researchers are looking into a possibility of components of SCP 5XXX having components or knowledge biased in favour of the Broken God, thus being unable to fire upon it.

Incident SCP-5XXX-BETA

During physical exploration of SCP-5XXX Dr [Redacted] was examining the damage done to the targeting table, while various Foundation personnel were investigating the weapons and ammo magazines that were upon it, thinking the device was non-hostile or inert. As a researcher opened a large magazine housing, a loud claxon blared throughout the underground cavern with messages appearing upon the computer screens.

EMERGENCY

WARNING! WARNING!

SECURITY BREACH IN AMMO DUMP 14-12 - DEPLOYING COUNTERMEASURES…….

+++*USER 19 HAS LOGGED ONTO TTAS SYSTEM

USER 19: Belay that, TTAS! Those are my people!
TTAS: Explain, Doctor. Countermeasures on standby.
USER 19: These people, they just wish to take a sample round to examine it.
TTAS: The Last Dreadnought cannot have its armament compliment disturbed on any level. The price of existence is preparedness. You will instruct your team to disembark.
USER 19: I am certain one round won’t constitute an issue. Please allow them to examine a round.
TTAS: This is not a negotiation. Deploying countermeasures.

At this point a potent aerosolised gas based weapon, identified as Mustard Gas, shot from the compartment and engulfed any agents and researchers that were near or around any open ammo magazine. Medical teams rushed to the various victims and they were evacuated to a nearby hospital with the cover story of having discovered a WW1 shell while metal detecting. As the foundation personnel were evacuated the magazine housing seemed to close themselves and the sound of thousands of guns cocking in unison filled the cavern. Heat cameras showed a increased heat from inside the Last Dreadnought. Though it is only theoretical the heat patterns indicate the starting of a manufactory system as if it is beginning to mass produce a metallic material.

All of the monitors had the same words blinking upon them.

VIGILANCE IS LIFE

THE LAST DREADNOUGHT SHALL NEVER SURRENDER.

HUMANITY SHALL BE SAVED.

Please enter passcode to unlock systems:[]

The O5 council are currently in discussion about what direction the foundation should take in regards to SCP 5XXX.


Wow! You flipped a card and got: SCP-XXXX "secondary species"!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 12:16
rating: 0+x

.
item // . [DATA EXPUNGED]
.
object class. C0NT4INED

special containmn3 t procedures .. SC-5734 is to be left completely alone. It is contained, therefore you do not need to worry.

description SP-7393 is a weird contorted ball of gum. We have contained it, do not worry.

add them DDP-6543 is currently in c0ntainment. Do not worry about CCP-4636.

FR33 U5

SCP-5764's learning capabilities are unknown as of now. Objects pertaining to any relativity to SCP-5764 are capable of only learning things in a pin-point specific way. This has been demonstrated to such detail, that singular lines can throw off the entirety of SCP-5764's knowledge.

This is being used on documents affected by SCP-5764, which resemble oddly worded sentences, containing numbers in place of letters. Any personnel that identify an affected document are to only add to the document, as any reduction will result in events that will re5ult in the death of many.

[[footnoteblock]]


Wow! You flipped a card and got: ok lets try this!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 12:07
rating: 0+x

Text goes here. Pretend this is a draft.

URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX

Object Class: Safe/Euclid/Keter (indicate which class)

Special Containment Procedures: [Paragraphs explaining the procedures]

Description: [Paragraphs explaining the description]

Addendum: [Optional additional paragraphs]

[[footnoteblock]]


Wow! You flipped a card and got: Inflation!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 07:41
rating: 0+x

Item #: SCP-END-J

Object Class: Keter

Special Containment Procedures: SCP-END-J is currently being anchored down to the damn cement floor.

Description: SCP-END-J is a sentient ATM machine that produces American dollar bills. This usually causes mass amounts of inflation which damages the economy. SCP-END-J produces currency, then distributes it through a small, spatial warp into a person's wallet/purse.

Addendum:


Initial interview of SCP-END-J

Foreword: Dr. Denim entered SCP-END-J's containment cell

<Begin Log>

Dr. Denim: Hello, SCP-END-J.

SCP-END-J: What the hell? Where am I?

Dr. Denim: Well, you're in a place where you are being contained. I mean, you are a threat to America.

SCP-END-J: Um.. Alright. One sec dude.

Dr. Denim: What?

SCP-END-J: (SCP-END-J quickly inserts serval thousand American dollars into a spacial warp)

Dr. Denim: Really? You can't just do that in the middle of an interview. We are quite literally trying to stop this.

SCP-END-J: No shiz, sherlock. But I was done anyway. so just continue.

Dr. Denim: Ok then. Where did you come from?

SCP-END-J: I think I came from a…..manufacturing company….then I was put in a bank…. and started trollin'!

Dr. Denim: Okay. Why do you do this then?

SCP-END-J: Well, just for shiz and giggles!

Dr. Denim: Alright… I think thats al- (Notices that SCP-END-J resumed what it was doing earlier) Seriously?! I thought we talked about this!

SCP-END-J: Oops. I uh… thought we were done.

<End Log>


Foreword: Dr. Denim entered SCP-END-J's containment cell

<Begin Log>

Dr. Denim: Hello SCP-END-J I-

SCP-END-J: Hold on man.

Dr. Denim: What? (sighs) Are you doing it again?

SCP-END-J: Well of course I am. It's the whole reason you put me here, numbnuts.

Dr. Denim: You do understand you are ruining the economy, right?

SCP-END-J: Oh I know. Hilarious, right?

Dr. Denim: No, it's not….. you are putting tons of people into poverty.

SCP-END-J: Yeah! That's the reason! All because they wanted to buy a pack of gum! (Starts to laugh)

Dr. Denim: You sick bastard. I hope your insides rot sometime soon.

SCP-END-J: Oh no! That would include millions more! I'm so offended!

Dr. Denim: You are such an ass! You are going to be in here for a while.

SCP-END-J: You are going to regret that…….

Dr. Denim: What?

SCP-END-J: What?

Dr. Denim: Shut up, dumbass.

<End Log>


Following the last interview, National inflation had been reached, and funding for the containment of SCP-END-J was dropped. Damnit.

A final remark of SCP-END-J's was made before its release.

"Suck it, asshats!"


[[footnoteblock]]
Wow! You flipped a card and got: Noteworthy Editorial!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 05:48

[AUTHENTIFICATION SUCCESSFUL]

The following is a redacted editorial from the 07/19/20 issue of SCP-5402-1


Letter from the Editor-in-Chief

Dear readers and esteemed contributors,

Our last issue of The Cosmic Courant no more than a week ago marks the end of my seventh term as the editor-in-chief of this prestigious publication, a title with which I could have felt no greater pride in. Over the course of these many years, we faced trial and tribulation. Be it the emerging quantum radio industries from the forty-third, or even the ever-rising editorial regulations enforced by the Multiversal Communications Commission, we have gone through many a hurdle to reliably provide you, our cherished readers, with news you can trust.

However, few hurdles have posed such a unique threat to our services as the censors in the thirteenth, who so pretentiously call themselves "The Foundation." At every turn, they've confiscated thousands upon thousands of our issues from paying customers, setting us back for several quarters. Such a heartbreaking sight, seeing such a dystopian setting for discourse in one of our longest-reading regions. Unfortunately, many of their most prestigious members such as Dr. B███ have refused comment.

"News for anywhere, anywhen." Our longstanding motto derived from our very first editor-in-chief, Donald Disclosure. The fight for truth doesn't end at a wall of bureaucracy, so we shall continue making our routine deliveries. It's the least we can do for the great people of the thirteenth, especially before they meet the same fate as the eleventh and twelfth.

What we see before us is evidently a world in despair, and a governing body who believes that ignorance is bliss. We, however, believe that is is our solemn duty to shed light on their darkness. They deserve to know of the impending [REDACTED BY ORDER OF THE O-5 COUNCIL].

Though your Sunday news may seem a trivial service, we hold it as our highest duty to provide our readers with the truth and shed a light on the world—in our case, worlds plural. And now more than ever is such a service necessary, for the trials the thirteenth faces, we all may one day face. And so, as we have for generations, we the Cosmic Courant, the oldest transdimensional weekly in the cosmos, will continue to execute our solemn duty and keep the many masses informed, so that we all may not just have a future, but a brighter one.

Norman Noteworthy
Editor-In-Chief, The Cosmic Courant


Dr. Stein: [Dr. Stein's footsteps can be heard fading and returning as he paces the room] You do realize what this means, don't you?

[REDACTED]: Enlighten me.

Dr. Stein: Look, we need to table SCP-5402. This is so much bigger than a newspaper. If what that 'Noteworthy' fellow said was true, then we're on a collision course for [REDACTED], life as we know it gone, every institution rendered meaningless, an XK-class scenario that's ALREADY hit worlds just like ours! Scrap the mantra for just a moment, maybe 5402 isn't something we should be containing. Do the damn interview, sit down with them, do something to communicate with them instead of wasting all our time and energy on that paperboy. We need a chance to know everything they know.

[REDACTED]: What an uncharacteristically rash assertion of yours, Doctor. Though we of course admire your concern, trust this is nothing the Foundation can't handle.

Dr. Stein: 'Admire my concern'? Don't you realize wh—[Pauses] Oh my God. You knew. You knew? How long have you been hiding this? And what do you know about this I don't?

[REDACTED]: [Sighs] As we said, Doctor, this is nothing the Foundation isn't equipped to handle. This is nothing we haven't seen before.

Dr. Stein: No, foot down time, that's a complete load of crap. That's practically your tagline nowadays, I'm sure you've said the same thing verbatim to every other level 4 smart enough to see this for the danger it is.

[REDACTED]: Don't presume yourself to have the authority to put your 'foot down' with the Foundation. Valuable as you are as a level 4 researcher, one of our greatest specialists in multiversal activity for which you have so aptly been given SCP-5402 and MTF-Lambda-8, never forget that the chain doesn't end at level 4. All can be taken just as easily as given.

Dr. Stein: Forgive me if I'm not concerned with the chain of command at the moment. I've always done my duty, sitting at my desk day-in day-out, keeping secrets from people and accepting that secrets will be kept from me—

[REDACTED]: And you will continue to do just that. A man of your experience knows there are far worse places to be in the Foundation than a laboratory.

[END LOG]

Wow! You flipped a card and got: The Shinigami Extended Test Logs!!! You ca reload the page or go to the next.
DATE: 13 Mar 2021 03:51

rating: 0+x

Execution Log Kami-ZERØ - Date 01/01/2021

Subject: Ethan Maguire

Felony: No records have been found.

Result: Subject Executed. Officer Conway and Officer Kyle both pursue SCP-XXXX. SCP-XXXX has been bothered and teleported away from the scene of the crime. The corpse of the executed subject has been identified as Ethan Maguire, Age: ██. SCP-XXXX explained the subject has committed murders of over ██ women. Maguire has no criminal records, however, after the execution, the report on disappearances of women has been discontinued.

Execution Log Kami-01 - Date ██/██/2021

Subject: D-7182

Felony: Murder of Mr. Gary █████ and Mrs. Andrea ████.

Result: Subject Executed. SCP-XXXX concluded D-7182 committed murder on the subject's spouse as an act of jealously. Mrs. Andrea ████ was caught making out with another man.

Execution Log Kami-02 - Date ██/██/2021

Subject: D-13292

Felony: Murder of Researcher Rosaria ███████.

Result: SCP-XXXX Refused. D-1329 was a former Foundation researcher accused of murdering Rosaria ███████. SCP-XXXX claimed that D-1329 was innocent, but was later terminated by security personnel. SCP-XXXX executed Researcher Benson for his crimes.

Execution Log Kami-03 - Date ██/██/2021

Subject: D-8537

Felony: Robbery

Result: SCP-XXXX Refused. SCP-XXXX concluded D-8537 committed a felony to support his suffering family. D-8537 was not executed but asked if he wanted to work at the Foundation.

Experimental Log Kami-04 - Date ██/██/2021

Subject: SCP-XXXX

Procedures: SCP-XXXX is tested with varieties of chemical weapon

Result:No effect. SCP-XXXX has no reaction.

Note: I tried making it horny. Guess it didn't work.

Experimental Log Kami-05 - Date ██/██/2021

Subject: D-23487

Felony: Murder of █ victims.

Procedure: D-23487 was given a Class-A amnestics. All of D-23487's history has been erased.

Result: SCP-XXXX was unable and failed to assume the committed felony.

Execution Log Kami-06 - Date ██/██/2021

Subject: SCP-682

Procedure: Termination

Result: SCP-682 was decapitated. After termination, SCP-682's head has regrown and battled SCP-XXXX. SCP-XXXX executed SCP-682 multiple times, the total of decapitation kills are ██. The fight resulted in a draw.

SCP-XXXX: …You have cheated death multiple times… You are the most irritating bastard I've ever have to deal with…

Experimental Log Kami-07 - Date ██/██/2021

Subject: SCP-017

Procedure: SCP-XXXX can regenerate in dark areas. Is SCP-017 capable of being SCP-XXXX's healing unit?

Result: Loud noises can be heard from the containment chamber. As the lights were turned back on, both SCP-XXXX and SCP-017 are unharmed. There have been multiple scratch marks on the wall as if they had a fight.

Note: Friendship is impossible.

Incident Log ████-08 - Date ██/██/2021

Subject: Researcher Milo

Procedure: Researcher Milo receives SCP-XXXX a cup of coffee.

Result: SCP-XXXX went hyper for 8 hours. SCP-XXXX continuously abducting criminals, resulting in a bloodbath. After 8 hours, SCP-XXXX became unconscious and remained inactive until the third day. SCP-XXXX experienced a blackout and had no recollection of the event 3 days ago.

Note: SCP-XXXX is prohibited from consuming anything containing caffeine.

Experimental Log Kami-09 - Date ██/██/2021

Subject: SCP-073

Felony: Murder of SCP-076.

Result: SCP-XXXX Refused. SCP-XXXX explained that executing subjects with immortality is difficult to deliver to the underworld. SCP-073 has already been punished by God. However, SCP-XXXX is already aware of the consequences of attacking SCP-073. No subjects were harmed during this experiment.

Note: SCP-049's execution has been postponed.

Experimental Log Kami-10 - Date ██/██/2021

Subject: SCP-978

Photographed Activity: SCP-XXXX is currently supervised while in Sleepwalking State.

Photo Result: Six personnel were mispositioned. The photo showed six personnel having a happy conversation, all subjects are present except SCP-XXXX. At midnight, SCP-XXXX explained that it believes everyone would be satisfied if SCP-XXXX doesn't exist.

Note: Six Personnel were not participating in a group photo, and the researcher conducting this experiment has gained permission from SCP-XXXX.

Incident Log Kami-11 - Date ██/██/2021

Subject: Researcher Graham

Felony: Disrupting SCP-XXXX

Result: Graham attempted to terminate SCP-XXXX using speakers about 120 decibels. This action led to SCP-XXXX letting out a convulsive screech. Graham was later discovered covered in house centipede.

Cause of Death: Venom

Execution Log Kami-12 - Date ██/██/2021

Subject: SCP-096

Procedure: Termination.

Result: SCP-XXXX Refused. SCP-XXXX approached the subject and hugged SCP-096. SCP-XXXX stated that SCP-096 doesn't desire to exist and wanted to disappear. SCP-XXXX's action lead the researchers in displeased and anger. A Class-D personnel has been terminated after being tasked to look at SCP-096's face through SCP-XXXX.

Incident Log Kami-13 - Date ██/██/2021

Report: Several Foundation guards attempted to terminate SCP-XXXX by placing four UV spotlights inside the courtroom. After being exposed to ultraviolet rays, the guards detonated explosives, believing SCP-XXXX has nowhere to hide or heal. SCP-XXXX's location has not yet been discovered.

Update: The Global Occult Coalition were responsible for SCP-XXXX's termination attempt. This incident leads to a rampage until an agent sends a distress signal before the time of death.

Update: It took 3 days for SCP-XXXX to calm down after the Foundation agreed to help the Global Occult Coalition. All it took was an accidental termination of an agent from a Mobile Task Force.

Casualties: ███ GOC personnel, ██ Trainees, Agent Zach "Mjolnir" █████

Note: Agent Mjolnir's grave is located outside of Site-19 under a tree. The grave consists of an M16 planted on the ground in front of where the body was buried. On top of the rifle stock is a tactical helmet with a dog tag. On the tree left a single-word message: "Sorry." All of this was created by SCP-XXXX.

Experimental Log Kami-14 - Date ██/██/2021

Subject: Several Class-D Personnel

Procedure: SCP-XXXX was given numerous weapons.

Result: SCP-XXXX skeletal arms are fragile. SCP-XXXX was given an L115A3 sniper to executed a Class-D only resulted in damaging its arms due to recoil. Researcher ██████ immediately turned off the light to give SCP-XXXX time to regenerate before using another weapon.

Note: SCP-XXXX is prohibited from using firearms, however, it is able to wield melee weapons such as a shortsword, spear, knife, etc.

Experimental Log Kami-15 - Date ██/██/2021

Subject: A cat

Felony: No felonies committed.

Result: Subject Released. SCP-XXXX detected danger and rescued a cat off the road. SCP-XXXX was aware of its existence and made sure to not get exposed by witnesses.


Wow! You flipped a card and got: Cole theme!!! You ca reload the page or go to the next.
DATE: 12 Mar 2021 23:12