SCP-XXXX
: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)); } }
Item#: XXXX
Level4
Containment Class:
esoteric
Secondary Class:
drygioni
Disruption Class:
amida
Risk Class:
danger
The location where 05-7 was later found to be in during the event
Special Containment Procedures1:
[CONTAINMENT PROCEDURES NOT REQUIRED | INVESTIGATION BY OVERSEER COUNCIL]
Description: SCP-XXXX refers to an event that took place on 5/11/20██ in which the Chaos Insurgency initiated a global assault on the Foundation, beginning with the kidnapping of 05-7 during a visit to Site-██. The event resulted in an estimated 3,400 Foundation casualties and 12,000 civilian casualties while Chaos Insurgency losses are unknown but could be anywhere from [redacted] to [redacted]. During the event, the Chaos Insurgency attacked a total of 14 Foundation facilities (See Addendum XXXX-1). It is unknown why the Chaos Insurgency did not attack all Foundation sites, but it is believed by some members of the Overseer Council that the Chaos Insurgency either had no knowledge of the remainder of the facilities or only attacked facilities that they believed were vital to the Foundation.
The anomalous nature of the event is that all CI2 soldiers involved seemed to be in a trance-like state, often having emotionless expressions unless speaking. The tactics the Chaos Insurgency used during the events were also strange. In some cases, CI agents would attempt to breach the facility in un-natural locations. In other cases, CI agents also chose to take personnel hostage instead of terminating them, which were otherwise unseen actions taken by CI agents.
Event Timeline:
Day 1:
Addendum XXXX-1:
[ IN ORDER FROM FIRST ATTACKED TO LAST | SEE TIMELINE ]
| Affected Location: | Description of Events: | Personnel Casualties: | Damage Level: |
|---|---|---|---|
| Site-06-3 | A group of CI agents totaling around 25 breached the main entrance using explosives and proceeded to kill the initial security force guarding the gate. They then entered the facility and began killing every Foundation personnel they found. They were eventually dispatched by the automated security protocols, resulting in the deaths of all remaining personnel and assailants in the facility. No containment breaches occurred. | 177 Personnel | Medium |
| Site-11 | A large force of approximately 400-500 CI agents entered Section B of Site-11 (See Site-11 Dossier) and began firing upon everyone they could see, eventually pushing through site security and entering Section C. Further casualties were inflicted and the hostile agents were able to take control of Section C before the Foundation could respond. A large response force made up of agents from MTF Nu-7 ("Hammer Down") and MTF Epsilon-11 ("Nine Tailed Fox") were sent to Site-11 to re-secure it (See Event Timeline). The force were successful in re-securing Site-11. SCP-4332 was released but no harm was done to it. | 856 Personnel | High |
| Site-45 | 9 boats of varying types and makes were spotted moving towards the Off-Shore Platform (See Site-15 Dossier) at high speeds. The active defense systems were activated and 5 of the 9 boats were destroyed along with their occupants, but 4 were able to reach the Platform. The large group, now identified as CI agents, began pushing into the lower sections of the facility. The assailants were eventually dispatched by the automated security systems as well as the remaining security personnel. No containment breaches occurred. | 123 Personnel | Low |
| [data expunged] | [data expunged] | 509 Personnel | High |
| Site-17 | A large group of CI agents breached Sector █ via detonating the entrance to the drainage tunnel. They then proceeded to push into Sector █, releasing all D-class personnel from their containment and initiating a riot. They then moved through the facility, killing all personnel they came across while taking Site Director ██████ ████████ and Assistant Site Director █████ ████ hostage. A response force of 151 agents from MTF Nu-7 ("Hammer Down") and 34 agents from MTF Nu-11 ("Death's Veil") were stationed outside of the facility. Two high-ranking agents from MTF Alpha-1 ("Red Right Hand") were also sent in to oversee the operation. Although the response force were able to resecure the facility after 8 hours, it did result in the death of the Site Director. Since none of the hostiles were able to acquire a keycard with high enough clearance, no containment breaches occured. (See Event Timeline) | 431 Personnel | High |
| Site-81 | Although no hostile assailants were spotted during the attack, several explosives were detonated around the facility, collapsing most of the subterranean section of the facility, causing the deaths of most personnel. It is believed that a small of team of elite soldiers, likely CI agents, snuck into the facility somehow and planted the explosives. The nature of this is being investigated. No containment breaches occurred, although recovering all contained SCPs at the site proved difficult. | 466 Personnel | High |
| Site-77 | A small group of researchers entered the facility, making their way to the research wing and proceeded to take ██ personnel hostage. 35 agents from MTF Epsilon-11 ("Nine Tailed Fox") were sent to handle the situation (See Event Timeline). The hostiles were dispatched and later identified as CI agents. No containment breaches occurred. | 189 Personnel | Low |
| Area-14 | A force of CI agents began detonating explosives on the mountainside presumably in an attempt to breach the facility, they were dispatched by on-site security and close air support. No containment breaches occurred. | 2 Personnel | Low |
| Site-91 | A plane was spotted flying approximately 1250 meters above the facility. A large number of people were spotted jumping from the plane and deploying parachutes where they then proceeded to move towards the facility. The on-site defenses were activated and a majority of the group were terminated in the air, but the remaining hostiles were able to land on the facility grounds. The remaining hostiles were terminated by on-site Mobile Task Force and Security personnel. No containment breaches occured. | 9 Personnel | Low |
| Area-27 | A wall in A-Wing was breached by explosives via a man-made tunnel. Several hostiles came from the hole and began firing upon all personnel present. They then made their way to D-Wing and barricaded the entrance. Because of the nature of D-Wing, a small team of 8 agents, made up of operatives from MTF Beta-1 ("Cauterizers") and MTF Gamma-1 ("Search and Destroy") were sent in to terminate the hostiles (See Event Timeline). They were successful in terminating the hostiles and the facility was subsequently re-secured. No containment breaches occurred. | 89 Personnel | Medium |
| Area-12 | [Data Expunged] | 112 Personnel | Medium |
| Site-05 | Section A of the facility was subjected to a large amount of artillery fire, later identified to be coming from the nearby mountainside. Then, a large force of CI agents, totaling around 400 to 700 hostiles, entered through the main gate an assault into Section B. After one hour, 3 A10 Thunderbolt Close Air Support Aircraft were deployed by MTF Sigma-9 ("Valkyries"). They proceeded to bombard the facility for ██ minutes. The aircraft were recalled due to low fuel, where then a large force of over 300 agents from MTF Nu-7 ("Hammer Down") were sent in via airdrop to terminate the remaining hostiles. 6 containment breaches occurred, although all escaped objects were recontained. | 899 Personnel | Very High |
| Site-64 | On █:██ , the on-site nuclear warhead was activated and the facility was destroyed. It is believed a group of hostiles were able to infiltrate the facility and activate the warhead. A force of 120 agents from MTF Epsilon-11 ("Nine Tailed Fox"), 67 agents from MTF Nu-7 ("Hammer Down"), and 21 agents from MTF Beta-1 ("Cauterizers") were sent to secure the area and attempt to re-contain all surviving objects of the detonation. Multiple SCPs were neutralized during the detonation, but most survived due to their containment units. | 299 Personnel | Very High |
| Site-88 | 3 unidentified fighter jets were spotted flying at an altitude of approximately 8,350 meters, the pilots failed to identify themselves. At ██:██, two of the jets suddenly began diving towards the facility. The on-site anti-air defenses were activated and both jets were destroyed while still diving. Before it was destroyed, one of the jets were able to activate 2 laser-guided missiles and send them towards the facility. One of the missiles hit Reactor 1 and nearly destroyed it while the second missile hit one of the non-anomalous storage units. The wreckage of the jets causes further damage, causing structural instability in Reactor 2. No containment breachers occurred, although nearly everything in the affected in the storage unit were destroyed. | 221 | Medium |
Addendum XXXX-2:
Time of Event: 5/11/20██ - ██:██






Per 


