: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)); }
}
Containment Class:
euclid
Special Containment Procedures: Le-Monnier Woods is to be contained behind a metal fence. The coverup story is to be that of a rare dangerous predatory. Two thousand calories of food are to be delivered daily at Site-XXXX. SCP-XXXX and staff are encouraged to socialize. Any attempt to make contact with the entity controlling the instances of SCP-XXXX is forbidden. No specific identification for this entity is necessary as its existence is theoretical.
Description: SCP-XXXX entities are sentient figurine copies of US military soldiers approximately 20 cm in height. A distinctive number is labeled on the back of each SCP-XXXX entity. Identification of an SCP entity is the number that is labeled on its back. The SCP-XXXX entities are located in the boreal forest, Le-Monnier Woods, located in Canada, and have never exited the forest. SCP-XXXX entities have been known to use functional, small-scale versions of various firearms shooting unidentified bullets capable of piercing through mildly resistant materials. The firearms used by the instances include pistols, assault rifles, sniper rifles, and rocket launchers. All attempts to take firearms from the SCP-XXXX entities have failed. When attempting to, the firearms have become attached to the entity. The SCP-XXXX entities move in squadrons of 75, each with a designated commander.
The self-professed goal of SCP-XXXX entities is to protect an unidentified entity at all costs. The squads often attack animals to feed the unknown entity. SCP-XXXX entities consider this entity as a powerful deity. SCP-XXXX entities are unwilling to give further information about the entity and are not allowing personnel to attempt contact. Although the SCP-XXXX entities are of no danger if not threatened, SCP-XXXX entities become aggressive to subjects at 50 meters inside the forest. An agreement had been made with the entities to install Site-XXXX.
Discovery: SCP-XXXX was discovered on 2007/06/08 after a citizen from Yarlford Village reported a complaint concerning illegal hunting by an unknown entity. Theta-24 had been dispatched to the location to investigate but was surprised by the SCP-XXXX entities. A fence was eventually installed around Le-Monnier Woods as an alternative to direct assault.
Addendum 1: On 2007/06/27, a sole SCP-XXXX instance came near Site-XXXX to express their gratitude for the installation of a fence. SCP-XXXX entities appear to be willing to develop a peaceful relationship with the Foundation.
Interviewed: SCP-XXXX-0279
Interviewer: Dr. Froster
[Begin Log]
0279: Oh, finally! We have businesses to attend to, you know.
Dr. Froster: Sorry. We didn't realize that you were there.
0279: It's okay. Let's just get this over with.
Dr. Froster: What do you mean?
0279: So that our peace becomes official, we need to give you a message.
Dr. Froster: I don't understand the situation here.
0279: We didn't fight for one whole month, and you also made this wall that is but outstanding! We figured you wanted peace.
Dr. Froster: Oh, I see. What is this message, then?
(SCP-XXXX-0279 takes a tiny plastic letter from its breast pocket.)
0279: That you, have been… Pardoned! Thanks to this wall, we are officially in code kangaroo, meaning that God is safe from any danger now.
Dr. Froster: That's great news! Will we uh be allowed to make contact with this God now?
0279: (Laugh) Don't get ahead of yourself. You get to see his face only when you have been at it for 100 years.
Dr. Froster: So you are 100 years old?
0279: Well, that's rude.
[End Log]
Addendum 2: On 2009/03/28, SCP-XXXX-2167 was found near Site-XXXX, asking the site to be uninstalled. Dr. Froster then interviewed the instance.
Interviewed: SCP-XXXX-2167
Interviewer: Dr. Froster
[Begin Log]
Dr. Froster: Why do you want us to uninstall Site-XXXX?
2167: Because we are in the freaking Code Black! Oh no… No, no… (heavy breathing)
Dr. Froster: Uh, please slow down. What exactly is a Code Black?
2167: It's when… It… It's when…
Dr. Froster: Stay calm. Take a deep breath.
(SCP-XXXX-2167's breath is slowing.)
Dr. Froster: Explain to me what happened.
2167: Well, sergeant, he- He forgot his face! He needed to go inside to remind him what the face of God was like, but- but there was no one! There is nothing left! It's the end!
Dr. Froster: I see.
…
Dr. Froster: Uh, now that there doesn't seem to have any reason anymore, are you willing to give us more information about your culture?
2167: I- No!
Dr. Froster: If you're willing to give us more information, the Foundation could attempt to locate this God. We have a large number of resources at our disposal to do so. And I will be more than happy to help you.
2167: You promise that?
Dr. Froster: Yes.
…
2167: (Sigh) I- Well, uh, where to begin. We pray one time a day to have the benediction of God. We are allowed to interact with God only if he's in peril. You will hold your promises. Right?
Dr. Froster: Yes. Do not worry.
2167: If an intruder enters the forest, we… We need to engage the enemy. God operated in the great Workshop. Only some Sergents can see him, and only one time in their life. I think that I uh, I told you the important things.
Dr. Froster: Good.
…
Dr. Foster: How do you feel?
2167: I don't really know…
Dr. Froster: I see. Would it be correct for you if we try to explore in-depth the center of the forest?
2167: I think you are allowed?
[End Log]
Afterword: Investigations have shown that approximately 20% of SCP-XXXX had committed self-termination.
A dispatch team had searched inside Le-Monnier Woods to search for the location that SCP-XXXX-2167 had referenced in the interview. The dispatch team found a hut with several animal carcasses at the entrance. The team found inside the structure an improvised bed, a plastic bag with traces of berries in it, the body of a dead frog, and a diary with the letter "E" written on its surface. The following is the content of the said diary.
Day 1
I had to use my Hypnotic-Ring on my parents to convince them, as Captain Crunchy did in my comics, but it was worth it. I will finally be able to spend my vacations in the forest!
I just found a hut today. I will name it The Workshop. That is going to be the perfect place for my stay!
Day 2
Today, I have made 5 Mr. Bear. They will help me to make my vacations cooler. I have named each one of them: Joey, Randy, Roy, Eugene, and Vincent. They are my best friends! They can go to the forest and give me berries to eat!
They also helped me make a better bed. It was hard to sleep last night, so I hope the new one will help me sleep.
The bullies from my school had found me. They called me a pig and stole all my friends.
Day 3
I understand now. My mistake was to concentrate on fabricating my friends. This time, I will put my eggs in one bag. Protection from ennemies. And I know just what to do! I will make my army!!!
I have found some figurines of soldiers. First, I will make one alive, and I will multiply him with my Frog-Multiplicator. Then, all the others will think I am God! They will chase animals (berries are not that great), and they will give them to me. I don't think it will be necessary to cook them.
Update: This works! I already have nine other soldiers! That is so cool. I will let the Frog-Multiplicator run for the rest of the night.
Note On How To Use Frog-Multiplicator: This is a frog. If you put something in his mouth, he will vomit the thing you put two times. After he is finishing multiplying things, he puts a number.
He does not move very often. He only does it when I put something close to his mouth. I'm not really sure how I made him…
I should think of a better name for him since it could make others believes that it multiplies other frogs.
Day 4
Good. That is working. I think I have like what? 10000 soldiers? 20000 soldiers? I think it's enough. When I woke up, they already begin scouting the area for bullies. NOW I can concentrate on making friends.
Update: I already made a lot of progress. I will play with my toys.
Day 5
I have a problem. My army is too loyal to what I told them. The non-cooked meat is not good. It's making me dizzy. The worst part? Even if I tell them that salad is better for me, they don't listen to me. They say that they want to give me the most elegant food they can give me.
I will leave tomorrow. Even though I'm frustrated, I want to finish reading my magazines. I still have some berries in stock.
Day 6,
I can't leave! When I tried to, they captured me. They think that I need to stay because they believe that I will be in danger if I go into the wild. They are scaring me! I decided to break the Frog-Multiplicator. I don't want to make more soldiers.
Day 7,
I saw a squad killing a dear today and give it to me as usual. I didn't know how the scream was so horrible.
Day 8,
I tried to use my Hypnotic-Ring on one of the soldiers to make him want to get me out. It didn't work. He thought it was a gift and took it.
Day 10,
There's no more berry.
Day 14,
Every soldier is assembling something. I think peoples are trying to get to the center of the forest. I also heard shooting. Whatever these people are doing, they're giving me a distraction.
This is my only chance to escape. I will leave, and I will go back to my mommy, and I will stop eating poor animals for the rest of my life.
I don't want to be discovered by them. They will think I'm a monster to have made this.
Addendum 3: On 2009/04/03, between 14:02 and 15:21, various reports concerning gunshots were addressed. The dispatch team Psi-23 found that a short civil war had occurred between the SCP-XXXX entities. SCP-XXXX entities were then taken refuge in Site-XXXX.
Interviewed: SCP-XXXX-1341
Interviewer: Dr. Froster
Foreword: On 2015/04/05, an investigation has shown that the SCP-XXXX had stopped committing self-termination. All documentation on SCP-XXXX, including Document XXXX-B, is not to be shown to the SCP-XXXX entity.
[Begin Log]
1341: Hi. What do you need me for, sir?
Dr. Froster: I want to ask you some questions if you're ok with this.
1341: Yea, sure.
Dr. Froster: Could you tell us how the incident from yesterday happened?
1341 So, there was this guy. We generally don't have any names for each other, taught everyone calls him the Chief now. He made these big gatherings to talk about his way of thinking. He said that we weren't the one that deserves to be punished and need to take revenge on God.
Dr. Froster: I see. How did you and the other instances react?
1341: Oh, we weren't good with this at first. Like, killing God? Are you out of your mind? There was even one that tried to kill him! Then it became chaos. For one hour, we were in a civil war. We eventually changed our minds since we realized that there wasn't any other logical thing to do. He had good points, but we didn't allow it in our brains. So one by one, we sided with The Chief.
Dr. Froster: Good. Thanks for your cooperation.
…
1341: Will you be helping us in our quest? I mean, you should be angry too. Right?
Dr. Froster: No. (Sigh) Uh, you will not be able, nor allow, to search for this God. You will be assigned to a certain site where you will be studied.
1341: I- It's only a joke. Right? You promised to help us find him! I'm sure you are a good guy!
…
Dr. Froster: I am sorry to hear that.
[End Log]
Addendum 4: On 2009/03/10, instances had attempted to ride various animals to escape Le-Monnier Woods. It is of note that the SCP-XXXX entities were not experimented with local fauna, easing the containment. Shortly afterward, SCP-XXXX entities have put a letter inside Dr. Froster's office. The SCP-XXXX that have planted the letter (SCP-XXXX-1042 and SCP-XXXX-713) were re-contained.
Dear Foundation,
We don't know why you want this to be this way. We don't understand what you gain into locking us into cages. But we don't want to hurt you guys! But you should note that we are going to make everything we can to fulfill our purpose.
The Corrupted God is loose. Meaning that others could be following him and make the same mistakes.
Consider this your warning.
Addendum 5: On 2009/03/12, 120 SCP-XXXX had escaped containment using a stolen keycard. Although 4 Agents were lightly injured, all SCP-XXXX had been effectively re-contained. As a response to the breach, each SCP-XXXX was rearranged into packs of 100.
Interviewed: SCP-XXXX-2896
Interviewer: Dr. Froster
Foreword: It has been found that SCP-XXXX-2896 is the entity that had obtained the title of The Chief.
[Begin Log]
Dr. Froster: First off, how did you access the keycard?
2896: With spies, of course.
…
Dr. Froster: Why would you tell it to us?
2896: You didn't know? All good armies need to have spies. I'm sure you too have some! Where they are, however, is the question.
Dr. Froster: I see. But why stay on the site? From what I have observed, you could have easily just snuck out, was this has an act of revenge?
2896: Oh no, no-no. Even though you are jail' us for whatever reason, our target is the Corrupted God. We wanted to search if you hold any connection with the son of a bitch. Of course, we could have used our spies, but that wasn't an option because of your security; we needed a distraction. The orders were to only gather information inside of your machines.
Dr. Froster: Wait, you checked the database?
2896: Only with an Access Level of one. My soldiers could only access the introduction to your recruits. Noting that would risk exposing your tactics to us. But now, with this limited information, we can't be sure. You are not here to help the Corrupted God. Though it is unclear on what side you're on.
Dr. Froster: With yours, of course!
2896: Nah. It's still a big topic between us. Without trying to offend you, mine is that you're on the side of stupidity.
…
Dr. Froster: Couldn't you be more cooperatives with us? Maybe, if you let us take care of you, your people could finally relax a bit.
2896: Maybe, we could go to your cages when we're going to fulfill our purpose. Hell! We could even like it if we go there! But we just can't let the Corrupted God go away with this shit. For the moment, peace is not possible. I hope that uh, eventually, we will go back to have a peaceful relationship. It was good back then.
Dr. Froster: I see.
…
Dr. Froster: So we are done here.
…
2896: Hey, could I give you a question?
Dr. Froster: What is it?
2896: How much time before we go through the transfer?
Dr. Froster: In four days. Why are you asking?
2896: Nothing.
[End Log]
Addendum 6: On 2009/03/16, all 15 vehicles containing the SCP-XXXX entities had lost all objects while transporting to Site-19. Agent Leonard, the driver of vehicle 12, had crashed in Vehicle 8, resulting in a containment breach. It had after been discovered with an autopsy that an SCP-XXXX entity had entered Agent Leonard's mouth. Around 2100 SCP-XXXX was lost, and six agents were KIA. A message at 2 Km from the transports displaying "WE'RE COMING FOR YOU ERIC" was drawn with SCP-XXXX entities.
Research is ongoing to recapture the SCP-XXXX entities. All reports of entities matching the description of SCP-XXXX are to be studied and then falsified if deemed accurate. Each victim must be documented by legal documentation has non-abnormal reasons. Uses of Class-C amnestic are allowed.