godbless-3
rating: 0+x
Item#: XXXX
Level2
Containment Class:
euclid
Secondary Class:
none
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)); }
}

THIS ARTICLE WAS PREVIOUSLY AN ANOMALOUS OBJECT BUT HAS BEEN RECLASSIFIED.
(see Addendum-XXXX-01)

Special Containment Procedures: SCP-XXXX is to be monitored by foundation security under the guise of local police. The public is allowed to observe and utilize SCP-XXXX as a tourist attraction. Any loud, disturbing, or insulting guests are to be removed from the premises. A small, foundation security base should be inserted inside the ███████ city's police department, which will be referred to as Outpost-186. This is where foundation security should observe SCP-XXXX with monitoring devices.

Statue

SCP-XXXX-1 during Phase 1, in containment.

If at any point, SCP-XXXX enters Phase 2, a perimeter should be set up around SCP-XXXX, in which SCP-XXXX is not visible. The public is to not be let into this perimeter, under the guise of plaza maintenance. Any attempt to enter should be immediately quelled by security agents. Those who enter and are caught should then be forced out of the perimeter. While in Phase 2, any individuals who try to get photo or video evidence of SCP-XXXX should be stopped. Any photo or video evidence should be destroyed or wiped from the device it was taken on. These procedures should be held throughout the phases until SCP-XXXX returns to Phase 1.

If SCP-XXXX enters Phase 3, a pre-prepared gift basket of meats (or ancient war equipment, preferably meats) should be delivered to SCP-XXXX from Outpost 186. Meanwhile, a firing line should be set up, surrounding SCP-XXXX. If the gift basket arrives in time, the firing line is to only be taken down after the arch mirror descends. If the gift basket is not on time, the firing line is to be notified and should prepare their weapons. All SCP-XXXX-2 are to be shot unless specified by Dr. Maddox1

Description: SCP-XXXX is a statue constructed of Parian marble2, that is approximately 15 feet tall, including the stone stand it sits on. The statue's stand has a plaque inscription on it, that changes along with the statue. It is located in ███████, Greece and has been confirmed to be of Greek origin. The sculpture depicts a man in ancient Greek attire, sitting on a podium. The podium has been observed to change itself when in stressful situations. These situations include, but are not limited to: When the statue is under attack, the land surrounding it is being damaged, and/or the plaque is being defaced.

SCP-XXXX changes in phases. These phases have been observed to not always go in order (e.x SCP-XXXX going from Phase 1 to Phase 3). The phases are as follows.

Phase 1 is SCP-XXXX's continuous state. Nothing abnormal occurs in this state. The plaque reads, "Brothers, the sun rises. Be at rest, for the time will come when the marble speaks."

Advancement to Phase 2 can be induced by being reckless around SCP-XXXX, shouting insults or profanities near and at SCP-XXXX, and by attacking any part of SCP-XXXX (statue itself, the plague, and/or the stand)

Addendum-XXXX-01: The following is an incident log that occurred 6 months before the first discovery of SCP-XXXX. Any staff involved with this incident are to not be reprimanded, as the occurrence of the third phase of SCP-XXXX was not known.

10:04: Security agents reported a band of vandals that spray-painted on the plaque of SCP-XXXX. Security staff apprehended the vandals.
10:06: Security agents had apprehended half of the individuals and began to follow the containment procedures for Phase 2.
10:09: SCP-XXXX entered Phase 2. Phase 2 containment procedures had been completed.
10:11: Agents were notified of the remaining vandals, who broken past the perimeter and had begun to deface the plaque.
10:12: Security apprehended the remaining vandals and continued to enforce Phase 2 containment procedures.
10:22: Security staff we're notified of SCP-XXXX advancing to Phase 3. Agents began to investigate the change.
10:24: After an agent read the plaque, all other agents were notified.
10:26: Captain Loukas Vidalellis ordered security agents to be on high alert and more directly guard SCP-XXXX.
10:52: The archway rose, Loukas Vidalellis ordered any remaining security agents to report to SCP-XXXX.
11:00 Barriers were set up, under suggestion from security agent Daniil Pavlelis.
11:02: SCP-XXXX-2 began to exit the archway. Agents opened fire after SCP-XXXX-2 rushed forward.
11:05: SCP-XXXX-2 stops exiting the archway. Security agents remained alert.
11:06: The archway descended.

The following statement was made, after this incident.

After careful consideration from me and my colleagues, this anomalous object should be reclassified as an SCP. I and my colleagues have already assigned a lead researcher to this SCP, that should utilize Outpost 186 as a research center. Extra resources have been assigned to Outpost 186, to allow this new SCP to be contained with ease.

- Janet Glydwyn, Reclassification Committee member.