BreakerBreaker
: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
Level2
Containment Class:
safe
Secondary Class:
none
Disruption Class:
vlam
Risk Class:
warning


dalmatians-3210166_1280.jpg

Image recovered of SCP-XXXX prior to containment.

Special Containment Procedures: SCP-XXXX is to be contained in a standard containment unit located at Site-7. SCP-XXXX is to be provided with amenities and entertainment typical to that of a domestic canine. Anything in SCP-XXXX’s containment unit must be entirely resistant to intense heat (roughly 600°C). If SCP-XXXX is to come into contact with any entity, living or otherwise, said entity must wear adequate protection around vulnerable areas (i.e. the face, neck, and hands) to minimize risk of injury from SCP-XXXX.1.

Description: SCP-XXXX is a male, adult Dalmatian of average height (approx. 0.6m). SCP-XXXX is visually indistinct from any non-anomalous member of its species.

SCP-XXXX has shown itself to be entirely unaffected by external temperatures. Temperatures as high as 600°Celsius and as low as -90°Celsius have no effect on SCP-XXXX. Given this, SCP-XXXX's ability to modulate its temperature to such a degree allows it perform adequately in both warm and cold weather. SCP-XXXX is able to achieve such a feat by drastically modulating its internal body temperature. However, SCP-XXXX's internal temperature will normally rest at roughly 32°Celsius when placed in an agreeable climate.

Given the heat that SCP-XXXX’s body can reach internally, bodily fluids, particularly saliva or blood, are known to become heated and can cause severe scalding.

SCP-XXXX is noted to be relatively docile. The anomaly has refrained from causing any harm purposefully towards any Foundation personnel. Precaution is still to be taken when interacting with SCP-XXXX.


Addendum XXXX-1, Discovery:
SCP-XXXX was recovered on 09/12/2009 after Site-7 personnel were alerted by clinic staff of the Glendale City Hospital regarding an incident that had occurred at Red Rock State Park the previous day. The incident occurred during a cook-out hosted for staff of Red Rock. Information recovered by interviewing bystanders revealed that, at some point during the event, SCP-XXXX disrupted the event and stole several items of food. Although SCP-XXXX was soon placed back under the control of its owner, enough destruction had been caused by this event that the local authorities had been called. This incident resulted in SCP-XXXX unwittingly inflicting severe second and third degree scalds onto its owner. All affected by this incident were promptly moved to a medical clinic located at Site-7 for further assessment.

Prior to this incident, SCP-XXXX was owned by eighteen-year old Guillermo Gutierrez, from August 18, 2007 to July 5, 2009. Both Gutierrez and SCP-XXXX were trained and appropriately certified Search and Rescue (SAR) volunteers for Red Rock State Park. Recovered records have shown that Gutierrez and SCP-XXXX were remarkably successful SAR volunteers despite SCP-XXXX's abilities and the short period of time that the team was in operation.


Addendum XXXX-2, Relevant Recovered SAR Logs:
Extensive logs were kept by Guillermo Gutierrez of his SAR missions with SCP-XXXX. Attached are the few logs where SCP-XXXX is believed to have used its anomalous abilities.


Addendum XXXX-3, Test Logs:


Addendum XXXX-4, Foundation-Sanctioned SAR Test Logs
On 03/26/10, a stark decline in mental and physical health was noted in SCP-XXXX. A report was promptly filed from personnel overseeing SCP-XXXX to Senior Staff at Site-7 citing inactivity and isolation as the probable reasons behind this. The report specifically suggested improving SCP-XXXX's by allowing the anomaly to assist in SAR work for the Foundation. The request was approved, under the notion that thorough testing be undergone to confirm the adequacy of SCP-XXXX in Foundation-sanctioned SAR missions.
Members of MTF Iota-3 ("Guard Dogs"), a team already tasked with SAR work at Site-7, were approached to participate in testing involving SCP-XXXX as possible handlers. The plan, if SCP-XXXX was to complete testing with a given handler to an appropriate degree, was then for SCP-XXXX to then assist MTF Iota-3 ("Guard Dogs") in their work.


Addendum XXXX-5, Foundation-Sanctioned SAR Test Logs Cont.:


Closing Statement: With the approval of Senior Staff at Site-7, SCP-XXXX and Guillermo Gutierrez will be allowed to join MTF Iota-3 (“Guard Dogs”) in small incidents (i.e. fires, earthquakes, flooding) and low-level containment breaches. Mobilization and oversight of this task force is to be conducted by Junior Researcher Adrián Flamingo.