DrHighGuess Delusional Psychicpath Torments Personnel

: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)); }
}
rating: 0+x
Item#: XXXX
Level4
Containment Class:
keter
Secondary Class:
none
Disruption Class:
keneq
Risk Class:
caution

Special Containment Procedures: It is currently impossible to contain SCP except for by containing its host, SCP-2. After SCP-2 dies, agents are to stay alert for reports of a person wearing a black crown and exhibiting telekinetic capabilities.

SCP-2 is contained within a Standard Secure Humanoid Containment Cell located at Site-17. SCP-2's cell has a computer and printer with no internet access. SCP-2 is to be kept busy with low-cost responsibilities approved by assigned research personnel. Personnel assigned to SCP-2 must score 95% or higher on Foundation Loyalty Tests. SCP-2 to be seen by a psychiatrist once per week and allowed access to the on site gym under supervision.

Note: Procedures will be reevaluated when SCP-2 is reacquired.

Description: SCP is two 27 centimeter symmetrical black arcs of indeterminate substance suspended in the air 4 millimeters from both sides of SCP-2's head. On each arc there are 3 evenly distributed spikes that extend 3 centimeters above and below the arc. SCP-2 currently believes this is its crown.

SCP manifests on a host with psychic capacity, creating SCP-2. SCP will randomly manifest on a new host within 20 years of the death of the previous host. SCP causes SCP-2 to enter a hypnotic state upon initial manifestation. Ideas given to SCP-2 while in this state form its core belief. The core belief follows the form "I think X, therefore X." SCP-2 believes everyone is as certain of its belief as any individual can be certain of the statement "I think, therefore I am." The current instance of SCP-2's core belief is "I think I am the ruler of the world, therefore I am the ruler of the world."

SCP preserves SCP-2's core belief by storing its mental state and enhancing its psychic abilities. If SCP-2's mental state would be compromised, SCP explodes and SCP-2 acts on instinct alone. SCP will manifest on SCP-2 again at a later point, restoring its mental state and core belief. The psychic abilities ensure that the core belief can be reinforced physically.

Postmortem analysis reveals that SCP-2 instances have regular human bodies, except that they have severe dopamine imbalances. SCP, in effect, keeps SCP-2 under the effects of a high dosage of gnostics1. Gnostics are known to enhance psychic capacity at the cost of the user's sanity.

SCP causes SCP-2 to become a Class 7 psychic2 capable of telekinesis, telepathy, and foresight with the following parameters:

  • Telekinesis: SCP-2 is capable of manipulating objects with combined mass in excess of 100,000kg. SCP-2 maintains a constant telekinetic barrier active 1 millimeter from its body.
  • Telepathy: SCP-2 is capable of engaging minds at an indeterminate range, though it only reciprocates contact.
  • Foresight: SCP-2 has instinctual foresight out to at least 3 milliseconds.

While SCP's origin is unknown, it is thought to be connected to Descartes due to its effect on SCP-2. It is unknown how many SCP-2 instances there have been, but the known instances are recorded in Addendum SCP.4.

The current instance of SCP-2 is a female humanoid 179 centimeters in height with long brown hair of Caucasian descent. SCP-2 was born on July 3rd, 1999 in Greensboro, NC with the name Anna Cohen. SCP-2 was an undergrad at the University of North Carolina at Chapel Hill at the time of SCP's manifestation.

SCP-2 was recovered from a house party it was throwing for its 21st birthday on July 3rd, 2020. Foundation agents intercepted a snapchat one of SCP-2's friends sent of SCP-2 pouring shots of vodka and everyone in frame taking them via telekinesis. When agents arrived, SCP-2 was ordering partiers to do keg stands using telekinesis to hold them up. SCP-2 did a keg stand itself and shortly thereafter passed out. SCP-2 was then taken into Foundation custody. The partiers were questioned and administered Class A amnestics. There is an ongoing missing person investigation for Anna Cohen.

Addendum SCP.1: First Session

Addendum SCP.2: Incident SCP-A

Date: July 7th, 2020

Description: SCP forced its door open and proceeded to wander the facility. Attempts by personnel to physically restrain it were unsuccessful. Attempts by personnel to tranquilize it were unsuccessful. During the breach, SCP witnessed the death of a Class-D personnel. Dr. Heinz handled the situation with the following conversation.

Note: It was later discovered that a few other objects went missing during this incident. It is likely that Dr. Heinz was responsible for this.

Addendum SCP.3 Incident SCP-B

Following the fifth session with SCP-2, Dr. Heinz corrupted her computer and disappeared with SCP-2.

The following email sent by Dr. Heinz was recovered from her computer's corrupted hard drive.

Addendum SCP.4: Known SCP-2 Instances

The first known instance of SCP-2 was the Nazi doctor Hans Delmotte. It was initially opposed to the Holocaust allegedly telling superiors "You can send me to the front or gas me myself, but I won't do it." Later on it had a change of heart and experimented exclusively on Jewish people. Its journal details its experimentation with its psychic capabilities on objects and Jews. SCP-2's core belief was "I think Jews are not people, therefore Jews are not people." In 1977, agents found it dead in a hut in the Andes with no trace of SCP. The autopsy revealed that SCP-2 had died of natural causes.

The second know instance of SCP-2 was the escape artist Joseph Burrus. In 1990, it was performing a buried alive trick in a see-through coffin. While cement was being poured in, the coffin collapsed and crushed SCP-2. To the audience's surprise, SCP-2 was unharmed and then flew away. SCP had manifested on SCP-2 when it was lowered into the ground. It is thought that SCP-2's core belief was "I think I escape, therefore I escape." since it never stayed in one place for long. By 2000, it was too costly to continue attempting to capture it. Since conventional means are ineffective against a Class 7 psychic, the first attempt to terminate it was by exposure to a memetic agent. This resulted in SCP exploding and SCP-2 stumbling for 3 seconds. SCP-2 lost all personality and acted only on instinct, killing 6 personnel before escaping. SCP later manifested on SCP-2 restoring its personality. During the second attempt, SCP-2 was successfully terminated by shooting it the moment SCP exploded.