LuSoloLu
: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)); }
}
:root {
    --posX: calc(50% - 358px - 12rem);
}
 
/*--- Footnote Auto-counter --*/
#page-content {
    counter-reset: megacount;
}
 
/*--- Footnote Superscript Number --*/
.fnnum {
    display: inline-block;
    text-indent: calc(-1% - 0.1em);
    overflow: hidden;
    line-height: 83%;
    text-decoration: none;
    font-weight: bold;
    font-style: initial;
    color: transparent;
    position: relative; top: -0.25em; font-size: 82%;
    padding: .15em calc(.21em - 0.4px) .12em calc(.11em - 1px);
    margin-left: -0.06em;
    margin-right: -0.25em;
    counter-increment: megacount;
    user-select: none;
}
.fnnum::after {
    content: "" counter(megacount);
    color: var(--fnColor, #E6283C);
}
.fnnum:hover {
    text-decoration: none;
    cursor: pointer;
    background-color: var(--fnColor, #E6283C);
}
.fnnum:hover::after { color: white; }
 
/*--- Footnote Content Wrapper --*/
.fncon {
    position: absolute;
    right: calc(var(--posX) + 80px);
    line-height: 1.2;
    padding: 0.82rem;
    width: 10.3rem;
    background: white;
    border: 2px solid black;
    font-weight: initial;
    font-style: initial;
    text-align: initial;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s linear, right 0.3s cubic-bezier(.08,.72,.5,.94);
    z-index: 9;
}
.fnnum:hover + .fncon {
    opacity: 1;
    right: var(--posX);
}
.fncon::before {
    position: absolute;
    top: 0; left: 0;
    transform: translateX(-52%) translateY(-55%) scale(1.15);
    background-color: var(--fnColor, #E6283C);
    color: white;
    content: counter(megacount);
    font-size: initial;
    font-weight: bold;
    font-style: initial;
    padding-left: 0.32em; padding-right: 0.32em;
    padding-top: 0.18rem; padding-bottom: 0.08rem;
}
 
/*--- Mobile Query --*/
@media only screen and (max-width: 1279px) {
    .fncon {
        position: fixed;
        bottom: 1.3rem;
        left: calc(11% - 50px);
        width: 70%;
        transition: opacity 0.15s linear, left 0.3s cubic-bezier(.08,.72,.5,.94);
    }
    .fnnum:hover + .fncon {
        left: 11%;
     }
}
rating: 0+x
blank.png



Item#: 5722
Level2
Containment Class:
euclid
Secondary Class:
none
Disruption Class:
vlam
Risk Class:
warning

Special Containment Procedures

All SCP-5722 instances are currently contained in Area-25.

SCP-5722-A is housed in a standard humanoid containment cell and is to utilize 4 active Scranton Reality Anchors to prevent all appearances of SCP-5722-B. No personnel are allowed to enter its cell while it is sleeping. SCP-5722-A is allowed to leave its containment cell two times per week to visit Dr. Porasy and once per day to visit the containment cells of SCP-5722-1 and SCP-5722-2. Requests for personal items may be granted upon approval by a Level 4 or higher authority and Dr. Porasy. To date SCP-5722-A has only requested a golden flute (granted), a notebook (granted), and a book to learn English (granted). Personnel are allowed to interact with SCP-5722-A while it's awake.

Any room in which SCP-5722-B manifests is to be completely sealed off until it disappears. Communication attempts with SCP-5722-B are discouraged.

SCP-5722-1 and SCP-5722-2 are contained in two separate 30 m x 30 m x 30 m cells with four security personnel armed with electroshock weapons outside of their respective cells at all times. The walls of SCP-5722-1's cell must be fireproof. Raw meat Fruits (preferably jaboticaba and grapes) covered in honey are to be given to SCP-5722-1 on a daily basis in order to feed it. The walls of SCP-5722-2's cell must be sound proof. Raw meat is to be given to SCP-5722-2 on a daily basis in order to feed it. Only SCP-5722-A is allowed to enter the containment cells of SCP-5722-1 and SCP-5722-2.


Description

SCP-5722 consists of two entities designated SCP-5722-A and SCP-5722-B.

SCP-5722-A is a 21 years old female human of Latin American descent with slightly dark skin and black hair. SCP-5722-A speaks Spanish but it is currently learning English.

Every time SCP-5722-A sleeps all the light sources in the room will start to slowly turn off until the entire room is in complete darkness. While this happens SCP-5722-B, a tall black humanoid figure with two luminescent eyes without pupils, will materialize in the nearest corner of the room to SCP-5722-A. If the door to the room or a window is open, the effect will expand to the adjacent room; if the door is closed, it cannot be open by any means possible. Night vision cameras do not work in this darkness, infrared cameras will only show SCP-5722-A. When SCP-5722-A awakes, all the light sources of the room will quickly turn on and the room will be accessible again.

After a manifestation of SCP-5722-B, SCP-5722-A will be pregnant1. In all of the cases thus far, SCP-5722-A gave birth2 to an anomalous creature. To date SCP-5722-A has given birth to two creatures, now known as SCP-5722-1 and SCP-5722-2.

SCP-5722-1 is a 10 m tall entity with the body of a Caiman Yacare3 and seven heads resembling those of a Chrysocyon Brachyurus4. SCP-5722-1 is capable of shooting fire blast of 400°C from its mouths. It spends most of its time lying down on the ground and it only attacks humans if it feels like it is in danger.

SCP-5722-2 is a 15 m long snake-like creature. It possesses green scales and red feathers around the neck and through its spine, as well as a black beak. SCP-5722-2 is extremely aggressive towards any living creature, although it will flee if it is in danger. SCP-5722-2 uses its sharp tongue to stab its prey from up to 12 meters away. It can also generate screeches at up to 137 dB. SCP-5722-2 spends most of its time trying to break out of its containment cell coiled on the floor of its containment cell.


Discovery

SCP-5722 came to the attention of the Foundation on 01/10/2019, when SCP-5722-2 appeared in Paso de Patria, Paraguay. MTF Epsilon-6 ("Village Idiots") was immediately sent to the location to contain the entity. When the Mobile Task Force arrived SCP-5722-2 had already caused 18 casualties.

The agents followed the entity until a house in the middle of a field where they found SCP-5722-A and SCP-5722-1.

Attached File:


Addendum 5722-1 (Incident 5722-B):

During the first night of containment of SCP-5722 all the light sources of the cell of SCP-5722-A started to turn off. Dr. Kerana noticed this, alongside a figure in the cell through the cameras and, with a few security officers, entered the cell. Researcher Mario Angatu stayed in the Surveillance Room monitoring SCP-5722-A's containment cell.

Attached File:

Security Officers tried but were unable of opening or destroying the door to enter the room. All the light sources in the room turned on on their own nine hours later when SCP-5722-A woke up. The bodies of Dr. Kerana, Officer Fernandez and Officer Agreste were found in the room with cuts and bite marks through all of their bodies.

After the incident Researcher Mario Angatu was assigned as the lead researcher on SCP-5722.

The medical check showed that SCP-5722-A had tiny cuts, apparently made by claws, on its back alongside with scars of the same kind. SCP-5722-A was also weaker and pregnant for three weeks5. SCP-5722-A's wounds healed in a few hours.

Four Scranton Reality Anchor were placed around SCP-5722-A's containment cell. This has proven to be effective on the containment of SCP-5722-B.


Note from Dr. Angatu: SCP-5722-1 and SCP-5722-2 seem affected by their separation from their mother. SCP-5722-1 has not eaten any of the food we are providing it and stays laid in the ground all day, meanwhile, SCP-5722-2 is constantly trying to break out of its containment cell.
SCP-5722-A seems equally affected, she spends most of the time sleeping in her bed as if she was trying to see her husband. She was interrogated on the matter and it seems that after we installed the SRAs he hasn't been able to contact her. Still, I'm a little worried about the mental health of SCP-5722-A.

26/10/2019: Requesting SCP-5722-A to be sent to a session with an in Site Psychologist.
-Senior Researcher Mario Angatu

Request Accepted.
-O5-06


Addendum 5722-2:

SCP-5722-A was sent to the in site Psychologist, Doctor Luriel Porasy.


Addendum 5722-3:

On 15/01/2020 a security breach occurred at Area 25; around midnight a huge storm generated over the area, after a thunder hit the roof the SRAs in SCP-5722-A's containment cell started to malfunction. Even though SCP-5722-A was still awake all the light sources in its room started to turn off while SCP-5722-B manifested itself into the containment cell.

Researchers that were monitoring the cameras noticed this and immediately sent Security Officers to the area but while they were going all the light sources in Area 25 started to quickly turn off, and when everything was in darkness no one could enter or exit the Area.

Attached File:

Addendum 5722-4:

SCP-5722 is pending an update on its description.


Archived Correspondence in Regards to SCP-5722:

From: Mario Angatu <pcs.52A|utagnaraM#pcs.52A|utagnaraM>
To: Luriel Porasy <pcs.52A|ysaroP#pcs.52A|ysaroP>
Subject: SCP-5722-1-2
Date: 16/01/2020. 06:13 a. m.
Message:
Nice call, Luriel, if you hadn't released SCP-5722-1 and SCP-5722-2 during the containment breach we all would probably be dead. I talked with the director and you won't be punished so don't worry about that.
Now, SCP-5722-A asked me about you, I told her that you're fine. Everything should be back to normal later today, so you and her can have your session like all the weeks.
Thank you for everything.
Doctor Angatu