A Random Glitch 2.0
rating: 0+x

BY ORDER OF ETHICS COMMITTEE



WARNING

Due to the actions of researchers containing SCP-XXXX, this file is under review, and new containment procedures are pending

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
Level#3
Containment Class:
euclid
Secondary Class:
none
Disruption Class:
keneq
Risk Class:
caution

Special Containment Procedures: SCP-XXXX is to be kept in a humanoid containment cell at Site-17. If SCP-XXXX produces any materials or makes any costumes, the items should be confiscated and the entity should be disciplined. Due to the risk of a containment breach, SCP-XXXX cannot be given food or items. As of 2/19/18 Protocol "SETA-6" is in effect, and no interviews are permitted with the entity.

SCP-XXXX-A is to be placed in a storage locker at Site-17. Once a week SCP-XXXX-A must be shipped to other sites or medical centers under Foundation ownership.

Stupid-Shadow-Guy.jpg

SCP-XXXX shadow

Description: SCP-XXXX is a vaguely humanoid entity, the entity stands 1.8 meters tall and weighs 64 kilograms, has four luminescent white eyes, and no other distinguishing features. The X-rays of SCP-XXXX have revealed an organic bone system that functions in the same way as an organ system. The SCP-XXXX bone system can easily bend and compress, making it highly mobile and flexible. SCP-XXXX body can produce tendrils from seemingly any part of its body. These tendrils have been measured as far as 60 meters and have been observed lifting 300 pounds.

SCP-XXXX-A is an odorless white secretion that can cure injuries and illnesses based on how much is administered. Upon receiving more than 3 liters of SCP-XXXX-A, all of the subject's inner fluids will evaporate, and all of the organs will rupture.

Hollow-Knight-Cosplay.jpg

A picture of SCP-XXXX at a convention

SCP-XXXX will occasionally manifest a full body suit that appears similar to characters from the virtual game "Hollow Knight. These costumes can be made by SCP-XXXX by producing items from within its mass. This process takes around an hour, causing a great deal of discomfort to SCP-XXXX. It has demonstrated smithing and sewing skills and has often shown complex techniques and patterns. SCP-XXXX expresses a desire to show Foundation personnel its work once finished.

SCP-XXXX claims to have existed as a large entity before it hibernated in the 1830s (See Addendum XXXX.1), but this claim has not been confirmed beyond an extract from a book in the Adelaide City Library. Research on the history of SCP-XXXX is ongoing.

SCP-XXXX was found in a company building located in Adelaide, South Australia. The foundation learned about the entity when an employee of a company called Team Cherry informed the police that a "monster with many hands stole paper". A cave system was found that reached up to 236-meters wide that connected to the building. The police investigated the cave system, which had artwork on the walls and was filled with SCP-XXXX-A. Containment teams were brought in to retrieve the entity. After the entity was retrieved, employees were given amnestics and the cave was searched, pictures and writing were found.

Addendum XXXX.1: On 5/24/17 SCP-XXXX was discovered and interviewed.
Addendum XXXX.2: The following is a passage from the book "Old Australia Stories" made in 1813 that details an entity that lines up with one of SCP-XXXX claims of its past.
Addendum XXXX.3: SCP-XXXX-A was tested on 5/27/17 in order to fully understand its properties.
Addendum XXXX.4: On 5/27/17 SCP-XXXX was interviewed to learn the affects of SCP-XXXX-A.
Addendum XXXX.4: On 1/15/18 Dr. Fisher interviewed SCP-XXXX on its wellbeing.
Addendum XXXX.6: On 2/19/18 Dr. Fisher went on retirement and SCP-XXXX was informed by Dr. Eliza.
Addendum XXXX.7: The following is an email between Dr. Eliza and Junior researcher Ryan Scott.
Incident XXXX.1: The following is a Audio and Video log from SCP-XXXX containment cell when the SCP-XXXX caused Incident XXXX.1 during Protocol "SETA-6".
Addendum XXXX.8: On 7/20/21 the interview of SCP-XXXX was conducted for a testimony against Dr. Eliza. As a result of SCP-XXXX's outburst when in contact with personnel, the interview had to be conducted over a speaker.

« SCP-XXXW | SCP-XXXX | SCP-XXXY »