The Vulture Bot's Other Sandbox

Included page "component:adult-splash" does not exist (create it now)

Item#: XXXX
Level3
Containment Class:
esoteric
Secondary Class:
humanoid
Disruption Class:
keneq
Risk Class:
warning
: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)); }
}

Assigned Site Site Director Research Head Assigned Task Force
Site-17 Yakov V. Ariclades Arnold P. Urwin WEPON-1

PissJarSCP

SCP-XXXX Upon Being Recovered: Former SCP-XXXX-B Instance Containing SCP-XXXX-A.


APUDressCode

Dr. Urwin wearing the yellow tie he had since his employment. Select facial features were censored via SCiP Scrambler.

Personnel Protection Procedures: All personnel assigned to handling SCP-XXXX are to undergo memory retention training before undergoing Protocol UGS. These personnel are to undergo a strict color-coded dress code afterwards to signify that they have undergone Protocol UGS.1

The dress code is as follows:

  • Researchers - A yellow tie.
  • Medical Personnel - A yellow collared shirt and a yellow lab coat.
  • Containment Specialists - A yellow collared shirt, dark yellow pants, and a light yellow tie with dark yellow patterns.
  • Janitors - A light yellow maintenance suit with the WEPON-1 logo on the back.
  • Mechanics - A dark yellow maintenance suit with the WEPON-1 logo on the back.
  • Guards - An amber full body suit.

Failure to abide to this dress code for the first time will result in a harsh reprimand. Repeated violations will result in salary reduction, immediate reassignment, or both.

To prevent unwanted memory retention, all personnel in Sector 1 that are not assigned to the handling of SCP-XXXX must wear face shields, a respirator mask, and a white hooded 1-piece polyester rainsuit outfitted with rubber gloves and rubber boots.2 Coasters are to be regularly provided to personnel for the purpose of reducing SCP-XXXX-A’s fluid contamination if SCP-XXXX is to be taken outside of Sector 1, and all coasters used must be disposed of after their intended usage via incineration. Non-assigned personnel are to be notified when SCP-XXXX-A is in its gaseous phase, and are to immediately head to the nearest Safe Room within their proximity. Non-assigned personnel failing to follow through these precautions will be forced to undergo immediate Sector reassignment.

All personnel are to undergo Cleaning Procedure XXXX-P01 upon leaving the sector or entering their dormitory.

GoldenFlushersLogo2

This modified symbol of WEPON-1 is shown on the door to Safe Room 1, and is shown on all other doors leading to the other designated Safe Rooms.

Sector Lockdown Procedures: If SCP-XXXX-A overflows from SCP-XXXX-B and the type-1 watertight door to its cell malfunctions, a Code Yellow event3 will occur and the sirens will sound off. All personnel are required to wear their respirators and to head to the nearest safe rooms as outlined in Document S1-UP within one minute before the automatic watertight doors are sealed shut.

Sector 1’s specialized waterproof cameras are to be used by WEPON-1 to monitor SCP-XXXX-A’s water level as it is drained through Sector 1’s implemented drainage system. When SCP-XXXX-A’s fluid within Sector 1 is completely drained, WEPON-1 is to enter Sector 1, sanitize the entire area, and inspect the condition of SCP-XXXX’s incubation chamber and its containment chamber to see if repairs and sanitation are necessary.

Upon complete sanitation and inspection, WEPON-1 is to inform all personnel that they are to exit the safe rooms and resume their work. Personnel are to speak with the site director about Plan B, Plan C, Plan D, and Plan E should the sector lockdown be compromised at all.

Special Containment Procedures: SCP-XXXX is to be contained in laboratory incubator UR-1, and is only to be removed from the incubator for testing purposes or to fulfill the mandatory conversation quota of one to four hours per day. UR-1 is to be contained within a 5m x 5m x 3m porcelain cell with an automatic ceiling vent that will only open up to operate when personnel enter the room, three automatic exhausts4, nine drains5, two porcelain tables6 with two chairs of the same make, and a type-1 watertight door in Sector 17. The drainage system for Sector 1 is to be constructed and maintained by Applied Task Force WEPON-1 "Golden Flushers" as it is outlined in Schematic S1-XXXX-PV3D-REL1F in order for SCP-XXXX-A to have as little mass as possible when it evaporates.

Assigned personnel are required to hold mandatory conversations in the designated areas of Sector 1 as outlined in Document S1-XXXX-WE-101, and are allowed to refer to SCP-XXXX-A as "Kyle" during these conversations. If SCP-XXXX is to be taken to another sector for the purposes of hosting a "tour", SCP-XXXX-A must remain in its liquid form within SCP-XXXX-B and is to be carried through the designated routes as outlined in Document S17-XXXX-WZ-011. Any personnel that attempts to remove SCP-XXXX-B’s lid outside of Sector 1 will be faced with termination.

SCP-XXXX-A is only to remain frozen in UR-1 for a total of one week per month to replenish resources, as any longer than the allotted time would worsen its current mental condition and may cause it to become hostile towards personnel. Further testing of SCP-XXXX is to be approved by the current head researcher and one member of the ethics committee.

KyleFukim

The presumed identity of SCP-XXXX-A.

Description: SCP-XXXX is the collective designation of two objects: SCP-XXXX-A; amber urine that belonged to a "Kyle Fukim"8, and SCP-XXXX-B; an unremarkable jar containing the liquid that is interchangeable with any other container9. While SCP-XXXX-B is itself non-anomalous by nature, SCP-XXXX-A cannot function in its liquid form without SCP-XXXX-B, and if SCP-XXXX-B is broken, SCP-XXXX-A will undergo an anomalous form of evaporation in order for it to transition into its gaseous form.10

SCP-XXXX-A’s odor, in either its liquid form or its gaseous form, is a pungent putrid smell that will cause all subjects that have inhaled this odor to undergo migraines and may cause them to have the compulsion of undergoing emesis. Only those with that have undergone Protocol UGS are immune to the scent of SCP-XXXX-A.

SCP-XXXX-A, if not provided with a visual sensory organ, is known to be completely aware of its surroundings within a five meter radius, which is known to change in both of its forms depending on the mass of its gaseous form or the size and make of its SCP-XXXX-B instance. It is able to communicate to other entities through the use of limited telepathy11, Nitikinesis, and Miasmakinesis.

Its behavior upon

SCP-XXXX-A claims to be Kyle Fukim and will always refer to itself as such. It has even provided evidence that correlates with Kyle’s records prior to her disappearance, including information about SCP-[ACCESS DENIED], PoI-10116 Voin Eegis, and PoI-10117 Corin Garrisburg. With evidence provided from DNA analysis and interrogation of SCP-XXXX-A, many personnel came to the conclusion that SCP-XXXX-A is Kyle Fukim, while others say there is not enough hard evidence to support this claim. Should this be the case, Kyle would've been contained at an earlier time if PoI-10117 did not intervene.12

It addition to its genotype, SCP-XXXX-A contains high levels of bacteriuria in both forms that are not normally found in the urine of homo sapians, including several archaebacteria dating back from the early Cenozoic Era to the Archeozoic Era. Despite intensive analysis and limited information, it is unknown if the majority of these archaebacteria originated from the aforementioned person, or if they were grown in the original SCP-XXXX-B instance by the time SCP-XXXX-A was made.13

Addendum XXXX.1: Discovery

GoI-10117 “Deformities of Sin”19.

**Addendum XXXX.2

Addendum XXXX.3: Incident CY-013

FRAGMENT PAGE:

Doctrina Document KF-17171


Full Name: Kyle Fukim
Gender: Female
Birthdate: 10/31/1991
Current Location: XXXXX
Anomalous: Confirmed
Procedures: Complete
Doctrina Status: Near Completion

Information Log


Point of Interest: Interest in Kyle Fukim arose in 2001, when Alfredo Fukim reported his daughter to the towns psychiatrist,