GreenGolem3
rating: 0+x
blank.png



Item#: XXXX
Level3
Containment Class:
keter
Secondary Class:
none
Disruption Class:
uncertain
Risk Class:
notice
: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


N/A

Site Director


N/A

Research Head


Dr Helge

Assigned MTF


Beta-54


Special Containment Procedures: There is no known way to effectively neutralize or contain SCP-XXXX. Instead, Mobile Task Force Beta-54 ("Imposters") are to work with Global Occult Coalition Strike Team 2348 to track down and dismantle any groups that are formed as a result of SCP-XXXX, as well as amnestize it's members.

Information produced by groups associated with SCP-XXXX that is Level 4 Classified or more is to be immediately destroyed. Any information Level 3 Classified or below is to be archived for later review.

If a group stemming from SCP-XXXX gets enough public recognition that it would make forcefully dismantling it cause suspicion, then resources are instead to be dedicated to causing the group's collapse in other ways, such as inducing financial problems within the group, stirring controversies that would split up people within the group, or filing copyright claims.

Due to the lack of information pertaining to how many people SCP-XXXX effects, this anomaly was given the disruption classification "Uncertain" until further notice.

Description: SCP-XXXX is a phenomenon where certain groups of people begin documenting and forming tales and stories of the SCP Foundation and Global Occult Coalition despite having no prior knowledge of the two agencies before writing. It should be known that this phenomenon does not give people the compulsion to join any individual group, but rather gives them the compulsion to write about the two agencies and share their work with others.

Whenever a group associated with SCP-XXXX documents anomalies, any person or thing writing about anomalies for said group inadvertently describe anomalies in the possessed by or interacted with by the SCP Foundation or the Global Occult Coalition. However, wording or style of documents written by these groups do not always align with that of the SCP Foundation. This fact has made this anomaly difficult to control, since Foundation documents cannot be fully cross-checked with documents circulating on the internet. Upon linking of images on the pages of certain cognitohazardous anomalies, the effects of the image are identical to that of their SCP Foundation counterpart.

Every person affected by SCP-XXXX, upon interrogation, has been unable to describe any motive or inspiration behind whatever was written by them, instead claiming that they only have done so for fun (See Addendum XXXX-2).

SCP-XXXX causes an estimated 300 groups to form each month around the world, and affects an unknown number of individuals not part of said groups. Due to the potential breach of secrecy for the SCP Foundation and the Global Occult Coalition, the two foundations have decided to work together to suppress any information leak stemming from SCP-XXXX, and conduct research into possible neutralization methods of SCP-XXXX.


Addendum XXXX-1: Discovery

From 4/12/2001 to 7/16/2014, a large amount of groups were detected whose documents matched up with that of the SCP Foundation. Further interrogations commenced, and it was confirmed that no member of said groups had any prior knowledge of the SCP Foundation and it's activities. Majority of members thought of the documents created by their own members to be purely works of fiction rather than actual truth.


Addendum XXXX-2: Archived Groups

An archive of notable and larger communities and some documents pertaining to them have been documented below. Non-English communities have been translated to english for archival purposes as well.

Group Name Method of Dismantlement Archived Information
The SPF Foundation Due to the name, identification of the group was easier. However, at the time of discovery, MTF Beta-54 was not created, meaning that this group grew significantly in size before discovery. Bots were deployed to spam the forums present on the site, causing a plummet in popularity. Group forcefully dismantled afterwards. The SPF Foundation (Stabbing Poor Folks) documented nearly 900 anomalies, all of which were determined to match up with Foundation files. Those documented were generally of keter-class entities. Upon further interrogation, the groups members claimed to get enjoyment from writing about keter entities rather than safe or euclid ones.
The OPA Due to the fact that MTF Beta-54 was tasked with tracking down groups with documents similar to that of the Foundation, the OPA was not discovered by Beta-54. The Global Occult Coalition on 4/12/2005 discovered the OPA and it's activities, and due to the size it grew to, contacted the SCP Foundation to help dismantle the group. A Copyright claim was fabricated that was able to strike down the community. Further splinter groups were quickly dismantled. The OPA (Occult Protective Agency) was one similar to that of the Global Occult Coalition, that wrote tales about the neutralization of anomalies. Due to the fact that the group did not document Foundation anomalies, alongside the difference in mission statement, this group was assumed to not be a result of SCP-XXXX. Due to the agreement between The Global Occult Coalition and the SCP Foundation, any further documentation of the OPA has been deleted from the archive.
The Paranormal Writing Club Members of the groups were tracked down and amnestized, and documents from the Club were archived. The Paranormal Writing Club was not run over the internet, but rather its members had meetings where anomalies were written over paper. This group showed interest in documenting memetic-based anomalies more than anything else, and filled in anomalies related to memetics in their proper slots despite not having prior knowledge of which numbered anomalies were memetic-based. Because MTF Beta-54 was only geared to detect anomalies over the internet and a group being run over paper was not conceived of as of yet, this group went unnoticed until Field Agent ████ accidentally discovered it in an investigation of a separate anomaly. Methods of scanning for SCP-XXXX related groups have been revised to account for writing groups following this,
The Archive of Anomalous Entities All documents containing cognitohazards or images identified as dangerous were deleted. Group dismantled and members amnestized. The Archive of Anomalous Entities is a group of people who didn't have much experience in writing, but rather in graphic design. These group members created images of anomalies that are true-to-life with no prior knowledge about them, even creating images of anomalies which did not contain images on the original files. Non-Dangerous images have been archived.
The PIA Due to this group's open involvement in investigation of anomalies, Beta-54 had no trouble tracking down it's members. The agency was dismantled and all members that could be found were captured and held in confinement. The members that could not be found went on to form the "Private Anomaly Investigation Committee", to investigate anomalies separate from any government agency or foundation. Members of the Private Anomaly Investigation Committee are yet to be found, and any information about their whereabouts are to be reported to Researcher Helge immediately. The PIA (Paranormal Investigation Agency) started from a private investigator when they were affected by SCP-XXXX. Upon continuous writing of entries into the database for fun, they figured out about the legitimacy of the documents after writing entries for various memetic based anomalies. Upon further investigation and eventual discovery of the SCP Foundation, the private investigator figured out about SCP-XXXX and it's effects, and found a workaround to document anomalies on his own accord (Using Symbols and Letters not associated with numbers). This individual contacted other investigators and formed the PIA as a result to investigate anomalies. Documents found from this person and a search of the primary agency building led to the discovery of SCP-████, SCP-████, and SCP-████. Several more anomalous objects are suspected to be in the possession of the Private Anomaly Investigation Committee.