DrLerche

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)); }
}
Item#: XXXX
Level5
Containment Class:
keter
Secondary Class:
esoteric
Disruption Class:
vlam
Risk Class:
warning

carcass-1474290_960_720.jpg

The aftermath of SCP-XXXX feeding.

Containment Procedures:

SCP-XXXX is contained in a high-strength humanoid containment chamber. The entrance to the containment chamber consists of a BSL-41 hermetically sealed airlock and biological decontamination chamber. Personnel are to inspect the containment chamber regularly for signs of damage or leaks in the airlock seals. SCP-XXXX is not allowed direct contact with living organisms.

Standard human meals shall be provided to SCP-XXXX four times a day with nutrition supplements prescribed by an on-site nutritionist, however once a week a fresh large animal carcass is to be provided.

Revised Containment Procedures -25/6/2019
SCP-XXXX is currently uncontained and its exact location unknown.

Foundation affiliates in the healthcare and biomedical fields are to propagate and later maintain the paradigm that advancements in medical science will lead to the increase of life and health spans, as well as immunity of humanity, in the future. A large scale disinformation campaign will be carried out to reinforce mainstream awareness of this paradigm.

Field operatives are to investigate incidents of attacks on livestock and witness accounts of SCP-XXXX to determine its location. These cases are to be attributed to other causes and footage is to be confiscated or declared as hoaxes, and amnestics provided to the witnesses.

Standard biohazard procedures are to be used when dealing with the entity’s biomass and destruction of the material is advised.

If encountered, personnel are ordered to avoid all contact with SCP-XXXX

The Narendran test will be implemented in the blood test as part of Foundation mandatory pre-employment screening.

Description:
SCP-XXXX is a shape-shifting entity consisting of cells similar to normal animal cells, with little to no presence of senescence, and enhanced regenerative properties. The entity is also immune to all known diseases.

These traits come at the cost of SCP-XXXX needing a disproportionately high level of sustenance compared to the size of its form. SCP-XXXX can obtain sustenance through consumption of prepared food, but also has a tendency to hunt and scavenge when food is not available.

SCP-XXXX will deviate from its form to become a red mist-like mass in order to hunt or scavenge. In this form, SCP-XXXX can pass through any barrier with openings or pores more than 1μm in diameter.

Once the mass is in contact with the prey, it encompasses the body and strips organic tissue and nutrients from the host leaving behind only a husk of bone and hair. The entity has also been witnessed producing tendrils to aid in the feeding process. This can be done to multiple prey simultaneously. Once sated, SCP-XXXX reverts to its original form.

The entity appears to live a nomadic lifestyle, evidenced by the wide region it inhabits.

Addendum 1: Discovery

The Foundation had been alerted to anomalous activity in South Asia2 through the Anomalous Signature Recognition Program (A.S.R.P) in 1995, where multiple livestock killings, as well as body-snatching3 incidents in burial grounds and mortuaries throughout the region, were reported. The skeletons and hair were the only remains recovered in all cases.

Witnesses of incidents in rural areas have described a red mist similar to an insect swarm approaching the animals before disappearing from the scene after some time.

Despite the investigations in South Asia, a different case provided far more insight into the phenomenon that would be described as SCP-XXXX.

In 2007, reports of anomalous activity in North Korea were brought to the Foundation's attention, providing significant insight into the origin and behavior of SCP-XXXX. These reports described a large canid creature, dubbed the Hellhound, attacking Korean People's Army troops in forest regions. MTF Eta-6 "Dog-Whisperers" were deployed in response.

While investigating these reports, Eta-6 narrowed down SCP-XXXX's location to the forests of North Hamgyong, before it evaded capture. At the scene of their last encounter with SCP-XXXX, a tattered dog collar was left behind and later identified as one used for Military Working Dogs of the K.P.A.

Later, Eta-6 learned of an ongoing manhunt for two dog handlers who had supposedly deserted. Upon deliberation by MTF headquarters, Eta-6 was ordered to locate these deserters before the North Korean Government could.

On 6/2/2007, the two soldiers were located in a small village and taken into custody. The following is the interrogation of the men at a Foundation safe house:

Interviewed: [Detainee A and B, names withheld]

Interviewer: [Agent Jeon]

Foreword: [The soldiers were escorted to an MTF safehouse. The interview was conducted in Korean, translated for convenience]

<Begin Log>


Detainee A: I would like to say, thank you. May I ask whom do you work for?

Agent Jeon: Who we are is not important now. All you have to know is that we will provide you safe passage to South Korea, in exchange for information.

Detainee B: How do we trust you?

Agent Jeon: Well we could easily hand you over to the authorities, but we did not. You are a potential asset for us, so just answer these questions and we will help you seek asylum. Am I clear?

(Detainee B remains silent for a moment before nodding.)

Agent Jeon: Good! Do you know anything about the Hellhound?

Detainee B: Of course! That monster has been killing our men like it's nothing. We make sure we're not in the forest every chance we get.

Agent Jeon: When our team attacked the creature, it dropped this.

(Agent Jeon places an evidence bag with a torn dog collar in it on the table.)

Agent Jeon: Recognise this?

Detainee B: (Examines the collar then turns to Detainee A) Dal?!…It.. no…It makes sense…he…

Agent Jeon: What makes sense?

Detainee A: (Silence, then turns to interviewer) We were dog handlers, along with our colleague. Dal was the name of his dog. One day, Dal started acting weirdly, like he was mad. Lt. Kang, our colleague…he tried to control Dal. Thing is, the dog bit him and ran off. We tried to chase him but he disappeared into the forest.

Agent Jeon: When was this?

Detainee B: Two…three months ago.

Agent Jeon: How are you so sure that it became the Hellhound??

Detainee B: Dal would never turn on his owner, and Kang… he got treatment and seemed fine. Then the three of us went on holiday. We stayed at an inn at Kaesong. That's where the problem started.

Agent Jeon: Problem?

Detainee B: That night, we woke up to some groaning coming from the bathroom. We saw that he was not in his bed.

Detainee A: I thought it was something to do with the dog bite, so we went to check on him. He sounded bad so we tried opening the door. It was locked, so we bashed it down. Then we saw him.

Agent Jeon: Continue.

(The two men exchanged looks and remained silent.)

Agent Jeon: What happened in that bathroom?

Detainee A: He…he was…

Detainee B: He was very…wrong.

Agent Jeon: What do you mean by "very wrong"?

Detainee B: I have seen sick people sir, but not that sick! He was contorted on the floor and had these bumps growing on his chest. And his face was….was…

Agent Jeon: You mean disfigured?

Detainee A: No, Sir. It was not his face! It was like his face was being replaced by another face, growing from one side to the other.

Agent Jeon: Then what happened?

Detainee A: He saw us and jumped out the window. We looked out to see him scramble into the forest. After some time, we reported to our superiors.

Detainee B: Now we are being hunted. That damn dog gave him something! And they know it!

<End Log>

Closing Statement: [The two soldiers were administered Class C amnestics and arrangements were made to send them to Hanawon4.]

Suspecting an infectious agent was at play, the Foundation began to investigate further.

The Foundation would later receive a file from an anonymous source within the KPA. The file contained information detailing a bioweapons development program that took place at an underground research facility at 41.2780° N, 129.0874° E. Among the information was a log intercepted by Bureau 1215 which was sent to a unidentified receiver. It is unknown how the informant came to know about the Foundation.

The events have been classified Incident XXXX-1. The following has been translated from Korean.

| 0210200601:26Z
| PRIORITY TRAFFIC
| TO: jinji
| FROM: qilin
| RE: HELP

I hope you receive this. Please read it and do something.

My name is Dr Cho Myong-Nok. I am a researcher at Punggye-ri Biological Research Site. For the past 6 months, we have been researching potential bioweaponry as well as ways to improve the effectiveness and survivability of our soldiers in combat.

The nexus of the experiments was a detainee sent here. We discovered his unprecedented regenerative abilities, as well as the ability to spread out into a swarm of what we found out were his cells to strip organic matter in seconds. We thought we could use him as an asset. We were stupid.

During one of the procedures, we attempted to extract cells from the subject. Suddenly he began behaving aggressively and assaulted one of the researchers. Previously we've been using toxin sprays to make him submissive in cases like this, to great effect. But that day…it did not work.

In a panic, one of the soldiers fired upon the subject, who attacked him. This made the others open fire causing it to swarm out.

I watched that thing kill everyone in his testing chamber and simply move out the door. We tried to stop it…. believe me we did… but he was uncontrollable, he…he kept re-growing no matter what we did. We were tricked! The toxins only made it angrier.

Wherever the swarm went, it reduced every living thing to bones.

The whole site has been locked down. It has been 2…maybe 3 days. Few survivors along with myself have locked ourselves in the South-West wing. I think we are the only ones left.

We are running on emergency power and rations are low. We are deep underground and the exit is on the other side so I don't think anyone is coming.

I am so sorry for what we have done. I am sorry.

If this message gets intercepted…which it probably will…Comrade please, we need to destroy this thing.

If it escapes, this country and the world will be like those skeletons.

Forgive me.

Realising the threat, government officials elected to destroy the research site with a nuclear device, providing a cover story claiming the detonation was a result of a nuclear weapons test.

The description of the bioweapon's effects coincided with the cases of livestock killings in South Asia and thus was concluded to be related.

It was also noted that the time of Lt. Kang's transformation coincided with the detonation of the bomb, suggesting that the entity had managed to take over the soldier's body, via its cells transmitted from Dal, upon its death; and that the Hellhound was a mutated Dal.

The Hellhound was later successfully terminated by Eta-6 on 12/6/2007. However, the entity, disguised as Lt. Kang, had escaped into South Korea and had become untraceable by the time the MTF landed in North Korea.

Addendum 2: Capture
In 2016, the entity was located in Bangalore, India when local police detained a suspicious man found roaming near a local burial ground. An Inspector recognised the man as a family friend whose body went missing in a case 30 years prior. After a fingerprint check was ordered and confirmed the Inspector’s suspicions, a Foundation mole assigned to the station took notice and reported the incident.

Field agents disguised as Central Bureau of Investigation (C.B.I)6 officers were sent to the station in order to retrieve the entity.

All those with knowledge of the entity were amnesticised and evidence of its arrest was destroyed. The entity was cooperative while being detained.

SCP-XXXX was transferred to Area-12, taking the appearance of the deceased man: a South-Indian male in his mid-twenties, 1.83m in height. SCP has been observed to be very curious, and has a profound interest and understanding of biology.

Interactions between personnel and the entity have generally been affable. However, it tends to become distressed when ignored.

Level 4 researcher, Dr. Harish Narendran was placed in charge of SCP-XXXX.

Addendum 3: 12/4/2018

Area-12 was the target of a Chaos Insurgency raid. A C.I. sleeper agent within the facility initiated a containment breach.

Post-breach, it was discovered that C.I. had stolen several samples of anomalous diseases and, more alarmingly, that SCP-XXXX, which was recaptured in the facility was a decoy.

Security camera footage shows a lone C.I. operative walking towards the Bio-Containment sector. The operative suddenly clutched his head and approximately 10 seconds later became catatonic. The operative then walked to SCP-XXXX's opened containment unit. There the entity injected him via a bony protrusion from its finger. The operative and SCP-XXXX swapped clothing, after which the operative stayed behind while the disguised entity ran off.

As it was making its way through the facility, it encountered on-site security officer, Agent Higgins. He confronted the entity, leading to an altercation where the entity managed to a wound, thus infecting the Agent, and subdue him. It was then seen joining the ranks of the other C.I. strike teams and escaping.

Fearing a possible security breach, Agent Higgins was neutralised and all access codes used by him were changed.

Despite following them, it appears that C.I. does not have the SCP in its possession after the skeletons of multiple C.I. operatives were discovered a few kilometres from the facility.

It is believed that the entity now has information on Foundation procedures and tactics, albeit limited, so its recapture will be a challenge.

Hosts infected with SCP-XXXX-1A are now classified SCP-XXXX-1B.

Addendum 4:
Two weeks after the incident, a letter was found in Dr Narendran's office.

Upon the discovery of this letter, Dr. Narendran was reclassified as Class E.

Addendum 10:
A raid was carried out and the compound was secured, where the stolen samples were discovered and retrieved.

Researcher Dr. Harish Narendran has been reinstated back to Class B.

Addendum 11:
Body snatching incidents in urban areas with the hallmarks of SCP-XXXX have ceased.