Doggols Tale Box


: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
Level#5
Containment Class:
safe
Secondary Class:
{$secondary-class}
Disruption Class:
dark
Risk Class:
notice

Assigned Site Site Director Research Head Assigned Task Force
Research Site-102 Dir. Katherine Saw Dr Jordan Henry N/A

Exterior.jpeg

The Exterior of SCP-XXXX

Special Containment Procedures: The entrances into SCP-XXXX are to be welded and sealed shut in order to prevent entry. A tunnel beneath the structure has been created to allow for safe entry in emergency cases.

Description: SCP-XXXX is the abandoned "Forstone Petrochemical Plant" on the outskirts of Forstone, New South Wales, 300 kilometres from Canberra. Any human who attempts to enter SCP-XXXX from any above ground entrance will inevitably experience a sudden intense sensation of fear and regret, which will build while the offending individual is within the structure. This results in the offending individual fleeing the structure, at which point the effect will cease. This effect can also be supplanted by entering through a subterranean passages or by using drone exploration.

SCP-XXXX's above ground floors have been well explored using unmanned drones. While most of the structure matches with archival imagery and blueprints from before 1999, several notable deviations are present:

  • Wires (Mostly ripped and non-functional from water damage or pests) span from the Natural Gas processing units towards the Central Steam Cracker. The wires are not included in the patent (filed 1968) for the Natural Gas processing units produced, and as such were likely used for different function.
  • The office of Ex-employee Allan P. Adetail (Employee from 1987-1999) has been partially converted into a field office/research lab/art studio.
  • The main Steam Cracker of the Plant has been removed, with material from the structure placed haphazardly in Waste Ponds. In its place is a large (20m radius) circular stainless steel lid, approximately 2 metres thick. Non-functional wires sourced from the Natural Gas Processing units extend into the center of the lid. The lid is connected to the plant floor through several tons of concrete.

The Large Steel Lid in the Plant covers an 864 metre deep cylindrical pit segmented into 200 floors, each 4.3 metres tall, with a 30cm balcony spanning every second floor. Each floor is further segmented into 12 evenly sized rooms, 10m long. A large metal and steel tower - including pipe, storage, electrical, and miscellaneous structures extends from the middle of the silo, extending 855 metres. Several pipes and complex wiring systems (Damaged from several years of wear and tear) extend from this tower into every room in the structure.

Each room in the building can be accessed by a door from a main spiraling hallway/staircase. Each of these doors has a small plaque in their center, usually with a small passage of text and identifying information.


  • Addendum XXXX.1 - Recovered Evidence in Upper Structure

Unmanned drone investigations into the Upper floors of SCP-XXXX have recovered several physical documents and Artifacts relating to the anomaly.

Natural Gas Processing Unit

Item Description: Notice
Analysis: Non-Anomalous
Notes: Attached to Natural Gas Processing Unit 3 Text:

"OUT OF ORDER: Unexplained loss in production capability. Do not turn on.."

Other recovered Evidence suggests that Processing Unit 3 was preparing for decommissioning by 1999 (see Document 102XXXX-343).

Item Description: Plastic Tie with Text Excerpt
Analysis: Suspected Anomaly (Presumed Neutralised)
Notes: Discovered around damaged wire from Processing Unit 2. Text:

"Keep plugged in - no more than 2000 Volts".

Handwriting matched to prominent Anartist Lily Asicano. Upon discovery, Kant Counters attached to the drone registered a minor drop in Hume level around the Processing Unit.

Control Room and Management Offices

Description: 1999 Full Staff Photo
Analysis: Non-anomalous
Notes: Image found attached to note board in Staff Break Area. Depicts 37 individuals (members of plant Management and Operation), with Alan P. Adetail notably absent. Significant photographic distortion present in the location of Adetails office - office is unrecognizable.

Description: Wanted Poster
Analysis: Non-anomalous
Notes: Wanted poster for an unknown trespasser into the plant. Police sketch strongly resembles Anartist Lily Asicano. Text haphazardly scrawled across the surface of poster states:

"look in alan's oficce [sic] it's him he's doing it"

Description: Corpse of Plant Manager Henry J. Wick.
Analysis: Anomalous
Notes: Cause of death unclear. Decomposition of Central Nervous System compared to other bodily systems suggests that the Item had sustained numerous physical processes for several weeks following brain death. Item causes minor reduction in brain functions when in direct sight. Item was discovered face down, naked, and partially covered by a white sheet.

Office of Alan P. Adetail

Description: Ericsson A1018 Mobile Phone (GOC Issued Portable Recording device present)
Analysis: Non-Anomalous
Notes: GOC Portable Recording Device has a single, 16 Hour data file stored on it. The file mostly consists of various environmental sounds (various animal noises, dripping, strong wind) but will sometimes suddenly transition into sounds of an active, bustling office. Only 3 speech excepts are audible. These are transcribed below.
Communication One:

BEGIN LOG