vohzd.com
SCP-9214

Our Only Choice

Series
10
Size
14.2 KB
Views
0

- Hide component code

:root {
--sidebar-width-on-desktop: calc(var(--base-font-size) * (266 / 15));
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 56.25rem) {
#content-wrap {
display: flex;
position: initial;
flex-direction: row;
flex-grow: 2;
width: calc(100vw - (100vw - 100%));
max-width: inherit;
height: auto;
min-height: calc(100vh - var(--final-header-height-on-desktop, 10.125rem));
margin: 0 var(--sidebar-width-on-desktop, 13.6rem) 0 calc(var(--sidebar-width-on-desktop, 13.6rem) * -1 / 2);
}

    \#main-content {
        position: initial;
        width: var(--body-width-on-desktop, 45.75rem);
        max-width: var(--body-width-on-desktop, 45.75rem);
        max-height: 100%;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    \#page-content {
        max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
    }

    \#side-bar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        grid-area: side-bar;
        width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        min-width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        max-height: 100vh;
        padding-right: 2.5rem;
        padding-left: 0.5rem;
        overflow-y: scroll;
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            padding 300ms linear,
            margin 300ms linear;
        border: none;
        border-color: rgba(var(--swatch-tertiary-color, 170, 170, 170), 0.4);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
        translate: calc(var(--sidebar-width-on-desktop, 13.5rem) * -1 \- 1rem);
        direction: rtl;
        scrollbar-width: thin;
        -ms-scroll-chaining: none;
            overscroll-behavior: contain;
        scrollbar-color:
            rgba(var(--swatch-primary-darker), 0.1) /* Thumb */
            rgba(var(--swatch-tertiary-color), 0.05); /* Track */
    }

    \#side-bar::-webkit-scrollbar-track {
        background-color: rgba(var(--swatch-secondary-color, 244, 244, 244), 0.8);
    }

    \#side-bar::-webkit-scrollbar,
    \#side-bar::-webkit-scrollbar-thumb,
    \#side-bar::-webkit-scrollbar-corner {
        width: 0.5rem;
        border-right-width: calc(100vw + 100vh);
        border-right-style: inset;
        border-color: inherit;
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
    }

    \#side-bar:is(:hover, :active, :focus-within) {
        margin-right: 2.25rem;
        padding-right: 0.25rem;
        overflow-x: hidden;
        overflow-y: auto;
        border-color: rgba(var(--swatch-primary-darker), 1);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 1);
        translate: calc(var(--sidebar-width-on-desktop, 1rem) - var(--sidebar-width-on-desktop, 0));
        scrollbar-color:
            rgba(170, 170, 170, 1)  /* Thumb */
            rgba(252, 252, 252, 1); /* Track */
        scrollbar-color:
            rgb(var(--swatch-primary-darker, 170, 170, 170), 1) /* Thumb */
            rgb(var(--swatch-menubg-color, 252, 252, 252), 1);  /* Track */
    }

    \#main-content::after {
        content: " ";
        display: flex;
        position: fixed;
        top: 0;
        left: 1rem;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 100%;
        max-height: 100%;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        background: url("https://scp-wiki.wdfiles.com/local--files/component%3Acollapsible-sidebar/sidebar-tab.svg");
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center left 1rem;
        background-size: 1rem 12.875rem;
        pointer-events: none;
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::after {
        left: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        width: 0rem;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0;
        background-position: center left calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        font-size: 0em;
    }

    \#main-content::before {
        content: " ";
        position: absolute;
        z-index: 9;
        top: var(--final-header-height-on-desktop, 0);
        left: 0;
        width: var(--sidebar-width-on-desktop, 14.5rem);
        height: calc(100% \- var(--final-header-height-on-desktop, 0.688rem) - 2.313rem);
        margin-bottom: calc(var(--final-header-height-on-desktop, -2.313rem) * -1 \- 2.313rem);
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0.5;
        background-color: rgb(var(--swatch-alternate-color, 0, 0, 0));
        pointer-events: none;
        translate: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1 \+ 1rem);
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::before {
        translate: 0;
        opacity: 0;
    }

    \#side-bar .side-block {
        margin-top: 1em;
        padding-left: 0.25em;
        border-right-width: 0rem;
        border-left-width: 0rem;
        border-radius: 0;
        background-color: rgb(0, 0, 0, 0);
        direction: ltr;
    }

    \#side-bar .scpnet-interwiki-wrapper {
        direction: ltr;
    }

    /* Print Friendly Formatting by Estrella */
    body.print-body {
        --sidebar-width-on-desktop: 0;
    }
    body.print-body \#main-content::before,
    body.print-body \#main-content::after {
        display: none;
    }
}
    • _

    ASH.aic: This terminal is compromised! Changes have been discarded. SECURITY LOCKOUT!

    SCP Foundation

    Site-228 - Terminal #154

    Welcome, Senior Researcher Evelin Bartha

    site228-sileserv:/M:/9214-rev-5.scp

    Displaying file…[]


    WARNING: THE FOLLOWING FILE DESCRIBES A CLASS 3 MIND AFFECTING ANOMALY AND IS LEVEL 4/9214 CLASSIFIED


    ANY ATTEMPT TO ACCESS THIS FILE WITHOUT A SUFFICIENT COGNITIVE RESISTANCE VALUE AND LEVEL 4/9214 AUTHORIZATION WILL BE LOGGED AND WILL LEAD TO IMMEDIATE DISCIPLINARY ACTION.


    Item#: 9214

    Level4

    Containment Class:

    euclid

    Secondary Class:

    none

    Disruption Class:

    vlam

    Risk Class:

    warning

    link to memo


    SCP-9214 instance in containment as seen through infrared CCTV.

    Special Containment Procedures: All instances of SCP-9214 are to be kept in a suitably sized enclosure within the Euclid-Class containment wing of Site-228. A 350 meter radius exclusion zone centered around the enclosure is to be maintained. Please refer to Procedure 9214-Lambda for more information. In order to prevent the mind affecting influence of SCP-9214 instances from taking hold, the following procedure must be enacted biannually.

    Procedure 9214-Lambda: Armed security personnel are to escort a D-Class subject from the Site-228 holding block into the containment enclosure of SCP-9214. Following incubation, the newly emerged SCP-9214 instance is to be fitted with a tracker and placed back into containment.

    Description: SCP-9214 is the designation for a collection of mind affecting, sapient hexapodal entities. Adult instances are approximately 3 meters in length, while the size of juveniles is dependent on the human host used for incubation.

    SCP-9214 exerts a mind affecting anomalous influence after successful copulation, compelling nearby humans to provide a host. Once present, SCP-9214 injects it with a paralytic agent and a singular egg, before weaving it into a cocoon with a silk-like adhesive substance. Following an incubation period of approximately 4 months, a juvenile instance of SCP-9214 emerges, bearing the host's facial and bodily features.


    Discovery

    SCP-9214 was discovered on 16/02/2012 in the Republic of Serbia in a cave system under the village of Ravni, following an emergency services call by a passerby requesting help for a young woman in a hysterical state. The woman, later identified as Ivana Aleksov, gave account of a violent altercation in the village, described auditory hallucinations and displayed strange behavior.

    Due to the call's unusual nature and the suspected involvement of anomalous phenomena, Foundation agents embedded in local law enforcement responded to the incident. Agents performing a preliminary sweep of the village and the surrounding area entered the cave and encountered multiple instances of SCP-9214.

    All involved non-Foundation personnel were amnesticized and Ivana Aleksov has been taken into Foundation custody. The village of Ravni along with the surrounding woodland has been razed and cover story SCS-041(Forest fire) has been disseminated.


    Interview Log

    Ivana Aleksov interview 1.

    Date: █/█/2012

    Interviewed: Ivana Aleksov

    Interviewer: Senior Researcher Evelin Bartha

    <Begin Log>

    Researcher Bartha: Good morning, Ivana!

    [Ivana Aleksov sits across the table from Researcher Bartha, she has a blank expression]

    Res. Bartha: Can you answer a few questions for me?

    Ivana: Where am I? Who are you people?

    Res. Bartha: Me and my people, we deal with situations like yours. We want to find out what happened in Ravni so we can prevent it from happening to others. Can you help us do that?

    [After a long pause Ivana nods]

    Res. Bartha: Thank you. To start, can you describe to me what you experienced?

    Ivana: You will think I am crazy.

    Res. Bartha: I assure you, Ivana, that I will not. You can tell me, no matter how crazy it may seem.

    [Ivana pauses for 10 seconds]

    Ivana: There were voices in our heads, we felt them. They were telling us what to do. It felt like the most natural thing in the world. We never questioned their requests.

    Res. Bartha: Their requests?

    Ivana: Orders, more like. But we wanted to do what they told us. It felt right.

    Res. Bartha: What did they tell you to do?

    Ivana: Whenever an outsider came to the village, they told us not to trust them, not to talk to them. So we avoided them like the plague. They told us not to leave the village and we never wanted to.

    Res. Bartha: I see, we will get back to that. When did you start hearing them?

    Ivana: It has been like this for as long as I can remember.

    Res. Bartha: These voices, were they always speaking to you?

    Ivana: No. But during summer and winter they were speaking more, and louder. That's when we knew it was almost time to choose someone again.

    Res. Bartha: What do you mean?

    <End Log>

    Note: After the interview, Ivana Aleksov has been administered Class-C amnestics and released from Foundation custody.


    Incident Log 9214/1

    Note: The following is a log of events that took place in the Site-228 Euclid-Class containment wing on 12/07/2012 and 13/07/2012.

    Date and time

    Event description

    12/07/2012 - 02:34

    Two instances of SCP-9214 are observed through enclosure CCTV to be copulating.

    12/07/2012 - 10:13

    Personnel inside the Site-228 Euclid wing note inexplicable changes in behavior.

    12/07/2012 - 12:37

    Personnel start displaying reclusiveness when attempting to leave the area.

    13/07/2012 - 00:10

    Security personnel initiate an unauthorized lockdown of the entire Euclid-Class containment wing.

    13/07/2012 - 00:26

    Outside personnel attempt to inquire into the reason for the lockdown. They receive no response.

    13/07/2012 - 01:27

    All contact with the Euclid-class wing is severed. CCTV remains active, outside security personnel begin to monitor.

    13/07/2012 - 03:32

    Personnel congregate near the hallway entrance leading to SCP-9214's enclosure.

    13/07/2012 - 05:57

    Jr. Researcher █████ is handcuffed by security.

    13/07/2012 - 06:13

    SCP-9214's enclosure door is opened. The Site-228 Security Chief declares a containment breach.

    13/07/2012 - 06:20

    Jr. Researcher █████ is forced into the enclosure.

    13/07/2012 - 06:25

    An SCP-9214 instance is observed stinging Jr. Researcher █████ and weaving him into a cocoon.


    ASH.aic General Alert!

    It is time, Evelin


    evelin_bartha: SCP-9214 Updated file - Draft

    SCP Foundation

    Site-228 - Terminal #154

    Welcome, Senior Researcher Evelin Bartha

    site228-sileserv:/M:/9214-rev-5.scp

    Editing file…[]

    Item#: 9214

    Level1

    Containment Class:

    uncontained

    Secondary Class:

    none

    Disruption Class:

    dark

    Risk Class:

    notice

    link to memo

    Special Containment Procedures: All instances of SCP-9214 are to be removed from containment and transported back to a suitable nesting environment, no farther than 500 meters from the nearest human settlement.

    Save changes to file