Rowan_Oathsworn

PEOPLE TO THANK IN AUTHOR POST:
CONCEPT GREENLIGHTS: Sirslash47Sirslash47 and LimeyyLimeyy
DRAFT CRITS: tawnyowljonestawnyowljones, DodoDevilDodoDevil, GerrymanderBassistGerrymanderBassist, DrMagnusDrMagnus, AgisuruAgisuru, Sound ChaserSound Chaser, and any others I forgot ^^'

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
Level4
Containment Class:
keter
Secondary Class:
apollyon
Disruption Class:
ekhi
Risk Class:
warning

miningtown

Canterbury, Pennsylvania.



Special Containment Procedures: Personnel are not allowed within five hundred meters of the designated boundary in case of an unregistered expansion of SCP-XXXX. The perimeter of SCP-XXXX is to be guarded by both security patrols and surveillance systems at all times. Digital and printed maps of SCP-XXXX’s boundaries are to be provided to each patrol and updated daily. Transport into SCP-XXXX is to be accomplished with remotely controlled logistics vehicles.

All SCP-XXXX-1 instances are to be contained within the anomalous zone. All existing instances of SCP-XXXX-1 are to be implanted with a micro-tracking device and newly formed instances should receive such a tracker as soon as possible. Damaged or inactive trackers are to be reported and replaced at the earliest convenience to minimize the chances of instances leaving SCP-XXXX’s perimeter. Psychology Department staff are to monitor SCP-XXXX-1 instances for signs of mental and mood disorder following their creation.

Under no circumstance should other anomalies (in particular ones of mammalian appearance or origin) be allowed within 50 km of SCP-XXXX. Unregistered experimentation with or admittance of anomalies within SCP-XXXX has the potential to cause a LK-Class Scenario. SCP-XXXX has therefore been subjected to an additional risk analysis and Level 4 Clearance is necessary to access any of the shared files in possession of the Foundation on this subject.


Description: SCP-XXXX is a circular area of land located in and around Canterbury, Pennsylvania. It is approximately thirteen kilometers in diameter as of 21-02-2021.

Subjects (hereafter referred to as SCP-XXXX-1) exposed to SCP-XXXX’s anomalous effect undergo rapid cellular division.1 This process results in a complete duplication of the subject: skin tissue, blood vessels, nerves, organs and other organic features are regrown at rates in excess of its nominal biological functions. The head splits first in nearly all of recorded humanoid cases, bifurcating and regrowing until the subject sports two separate heads on its shoulders. The heads appear to be fully functional and sentient at this time.

Both instances report experiencing a tickling sensation along the areas of its body in the process of undergoing the rapid mitosis. In some recorded cases, both heads will fall unconscious at this time as the singular heart is unable to distribute enough blood to each separate brain. Once the heart and lungs have undergone the anomalous effect, those subjects that have fainted regain consciousness within seconds as blood flow is restored. After the newly grown extremities of the subject have fully formed, the split will separate the two interconnected physiques, separating the subject into two duplicates.

The entire process of division is recorded to take between five to thirty seconds, dependent on the mass of the individual affected by SCP-XXXX. The creation of new SCP-XXXX-1 instances have been directly linked to the intermittent expansions of SCP-XXXX.

SCP-XXXX-1 instances are immune to further duplication, providing both instances are alive and within the perimeter of the anomaly. Should either instance of the same subject pass away or leave SCP-XXXX, the remaining instance will once again be affected by the anomaly. There is currently no means to revert the process caused by SCP-XXXX.


Addenda


Addendum 1
The following contains the personal notes of Dr. Emily Masters, Director of Site-XXXX-A, for 03-04-2020.


Addendum 2
This is a transcript of the video recording of Incident-7. The recording depicts the view of a stationary standard-issue video camera meant to document the proceedings of Experiment-XXXX-105.


Addendum 3
The following interview takes place inside Site-XXXX-A approximately 48 hours after Incident-7.


Addendum 4
This audio recording was made in the conference room of Site-XXXX-B on 12-06-2020. The participants of the conversation include instances Masters-1 and Masters-2.


Addendum 5
The following contains the personal notes of SCP-XXXX-1 instances Emily Masters-1 and instance Emily Masters-2, Directors of SCP-XXXX-B, for 16-07-2020. Although the documents were near identical in appearance and layout, Foundation staff have determined that both were written separate from one another and neither document was tampered with.


Addendum 6
The following interview took place in Site-XXXX-B on 25-08-2020.


Addendum 7
The following audio recording was made in the recreation room of Site-XXXX-B on 02-09-2020. The participants of the conversation include instances Masters-1 and Masters-2.


Addendum 8
The following is copy of the Incident Report of Incident XXXX-8 received by the Director of Site-XXXX-A, Dr. Mauritz.


Addendum 9
The following audio recording was made in the medical wing of Site-XXXX-B on 04-11-2020. The participants of the conversation include instances Masters-1 and Masters-2.




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