The Garden of Tau
: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#: 6706
Level4
Containment Class:
esoteric
Secondary Class:
tiamat
Disruption Class:
ekhi
Risk Class:
warning

Assigned Site Site Director Research Head Assigned Task Force
CAORDA Site-89 Charles B. Hollender Zofia Kalt AMTF Titan-3 "Bloody Third"

Special Containment Procedures: Armed Mobile Task Force Titan-3 ("Bloody Third") are to maintain a perimeter of one kilometer from the entrance to SCP-6706-Alpha. Under no circumstances are SCP-6706-2 instances permitted to exit this area and if the perimeter is breached, use of Mobile Task Force Titan-1 ("Off the Books") is permitted. If SCP-6706-2 instances breach into a foundation site, Mobile Task Force Epsilon-11 ("Nine-Tailed Fox") and Mobile Task Force Epsilon-9 ("Fire Eaters") are to enter the site and terminate all SCP-6706-2 entities. If AMTF Titan-3 is terminated or forced to retreat, Armed Mobile Task Force Nu-7 ("Hammer Down") is to engage the SCP-6706 instances until AMTF Titan-3 is fit for combat.

If a foundation site is breached by SCP-6706-2 instances, 64-KALT PROZ PROTOCOL "Boiler Room" is to be enacted by the site director, assistant director, and project head. Detonation of the on-site nuclear warheads is to be used as a last resort unless other containment procedures conflict with PROTOCOL "Meatgrinder" or the assigned Mobile Task Forces fail to re-contain the facility.

Description: SCP-6706 is the collective group of root-like soldiers, a vertical shaft 50 meters deep beneath the ground in Orinda, California, and the garden that lies at the bottom, producing the SCP-6706-2 instances.

SCP-6706-2 instances appear as thick roots grown into the shape of a male human or female human and possess swords, shields, and spears all made of root growths grown out of the SCP-6706-2 subject. If SCP-6706-2 instances capture an area, large root-like growths will appear from the ground, covering most floor space within the room. It is currently theorized that the more SCP-6706 spreads, the stronger it becomes. 64-KALT PROZ PROTOCOL "Boiler Room"

The garden located within SCP-6706-Alpha is 65 meters in diameter and is capable of producing dozens of subjects within minutes. It appears that SCP-6706 is beginning to weaken, as drone footage reveals the garden beginning to wither. It is theorized that this is due to the constant production of SCP-6706-2 instances although not confirmed.

Addendum-6706-1: 64-KALT PROZ PROTOCOL "Boiler Room"

64-KALT%20PROZ.2.png


Preface: 64-KALT PROZ PROTOCOL "Boiler Room" was developed on ██/██/20██ by Director Charles Hollender, Assistant Director Lorem, Project Head Zofia Kalt, and Dr. Sam Strass. PROTOCOL "Boiler Room" was developed in response to the attack by SCP-6706-2 instances and the spread of the SCP-6706 growths throughout Armed Reliquary Area-CH-1, located under Black Hills, California. After the rescue mission into Reliquary Area-CH-1 failed, and all operatives were terminated, immediate action was taken to prevent further loss of foundation facilities.

Abstract: This temporary protocol has been created to prevent further loss of life and foundation property.

Protocol Information: 64-KALT PROZ PROTOCOL was developed by Project Head Zofia Kalt to prune and weaken SCP-6706 from expanding and becoming stronger.

  • Eight operatives of Mobile Task Force Epsilon-9 ("Fire Eaters")
  • 16 operatives of Mobile Task Force Epsilon-11 ("Nine-Tailed Fox")
  • Eight F-10 Flamethrowers
  • 20 Incendiary Grenades

The spread of SCP-6706 marks a disaster for the Foundation and surrounding areas. This cannot be allowed to continue. We cannot allow this pest to attack us. The damage sustained in sites is not enough to detonate the warheads, however, we can rid the sites of the SCP-6706 growths. The briefing of 64-KALT PROZ PROTOCOL is listed below:

  • Two teams of 121 are to enter the facility and move to the rear of the building.
  • Task force agents will slowly move back through the facility, igniting each room unit by unit.
  • Operatives exit the facility and lock the entrance for approximately 12 hours.

Discovery: SCP-6706 was first discovered on ██/██/20██ as several hundred instances of SCP-6706-2 attacked Reliquary Site-90-1 and terminated 96% of personnel. A total of ███ staff were terminated and 12 persons escaped to Site-90, 18 kilometers away. Mobile Task Force Epsilon-11 ("Nine-Tailed Fox") and Mobile Task Force Titan-1 ("Off the Books") were deployed to Reliquary Site-90-1 and terminated 70% of instances before they retreated. Mobile Task Force Zeta-6 ("Midnight Trackers") were deployed to track the instances and Anvil-12 was deployed to investigate the structure the instances retreated to. An audio log is listed below.

Exploration Video Log Transcript

Date: 22:35 hours, ██/██/20██

Exploration Team: Mobile Task Force Zeta-6 ("Midnight Trackers") - Anvil-1

Subject: Tilda Nature Area, California

Team Lead: Anvil-1-01 - Captain "Umbara"

Team Members: Anvil-1-02: Operative "Ghoul", Anvil-1-03: Operative "Redeye", Anvil-1-04: Operative "Mako"


<BEGIN LOG>

Umbara: Mic check, you receiving on channel 41?

Redeye: Copy sir, reading you loud and clear.

Ghoul: Yes, sir. Reading you on channel 41.

Mako: Reading you loud and clear captain.

Umbara: Command are you reading us?

Command: This is Forward Field Command, reading green.

__**Umbara

<END LOG>