: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)); }
}
Link To Guide
Item#:XXXX
Clearance Level 3: Clearance
Secondary Class: {$secondary-class}
SCP-XXXX prior to containment.
Special Containment Procedures: SCP-XXXX is to be kept in a heavily reinforced two-layer amphibian enclosure able to withstand explosions equivalent to at least 1 3 kilotons of TNT. Each layer of the enclosure is to be outfitted with a steel-encased concrete door with a remote locking system.
Protocol D: Biweekly Each week, a Class D personnel is to enter SCP-XXXX's containment and wait for SCP-XXXX to make a request. The Class D personnel is to recite the request to Foundation personnel and fulfill it if possible. Otherwise, the Class D personnel is to tell SCP-XXXX the request cannot be fulfilled.
In the event SCP-XXXX reaches the outer layer, Foundation personnel are to request SCP-XXXX goes back to the inside layer. If SCP-XXXX refuses, Foundation personnel are to release naphthalene gas in the outside layer until SCP-XXXX returns.
Description: SCP-XXXX is a salamander biologically resembling the Ambystoma maculatum. However, SCP-XXXX is physically more resistant to injury than its non-anomalous counterparts and is estimated to be able to withstand blasts equivalent to up to 1.2 3 kilotons of TNT.
Through unknown means, SCP-XXXX is capable of coherently speaking and understanding all known languages. SCP-XXXX utilizes these vocalizations in order to make requests, henceforth referred to as XXXX-A events. Failure to adhere to these requests results in a variety of potential consequences involving an anomalous explosive force henceforth referred to as XXXX-B events. The means by which SCP-XXXX is able to manifest these events is unknown. However, the nature of SCP-XXXX suggests that XXXX-B events are a byproduct of its emotional state in response to unfulfilled requests.
Giving orders or demands to SCP-XXXX will result in an immediate XXXX-B event that is, in most cases, fatal.
Discovery Log
Date: 27/03/2021
SCP-XXXX was retrieved from Algonquin Provincial Park, Ontario, Canada, by Provisional Task Force Tau-33 ("Talking Tides"). The Foundation was alerted to the anomaly due to reports of a “talking salamander” and scorched trees. Transcription of the body camera of the Tau-33 leader ("Tsunami") is provided below.
Discovery Log Transcript
Task Force Assigned: Provisional Task Force Tau-33 "Talking Tides"
Task Force: "Tsunami", "Hurricane", "Maelstrom", "Waterspout"
<Begin Log>
Control: Remember, all we know is the thing talks. Stay focused; we don't know what it can do.
Tsunami: Understood.
Tsunami: Eyes up, team. In-and-out in less than thirty, just like always.
Hurricane, Maelstrom, Waterspout: Yes sir.
[Tau-33 head towards the last reported location of SCP-XXXX.]
Waterspout: I have eyes on the target.
Tsunami: What's the situation like?
Waterspout: Target seems docile, but the ground is… scorched?
Tsunami: Alright. Hurricane, Maelstrom, keep your distance and eyes on the target. Waterspout, we're movin' in.
Waterspout: Understood. Stay cautious, though. Looks like this thing's got somethin' nasty up its sleeve.
Maelstrom: Salamanders don't have sleeves, Water.
Waterspout: Try to stay focused for more than a couple seconds.
Hurricane: We're about to engage with the target, now's not the time for back n' forth.
["Tsunami" and "Waterspout" approach SCP-XXXX. SCP-XXXX looks in their direction, but otherwise does not react.]
Tsunami: (To SCP-XXXX) Hey, why don't you come with us?
[SCP-XXXX does not respond. It turns to face "Tsunami".]
[Tsunami carefully reaches for SCP-XXXX. SCP-XXXX takes several steps backwards.]
[SCP-XXXX's skin starts to emit a small amount of orange light.]
Waterspout: Get back! Something's not right!
["Tsunami" jumps backwards. An explosive goes off from SCP-XXXX's location. "Tsunami" is launched several meters backwards. Flames cover the camera lens.]
Tsunami: (Whispers) Shit.
Maelstrom: Status?
Waterspout: Got a few burns. Nasty little creature.
Maelstrom: Looked like it hurt. Any orders?
Hurricane: Awaiting further instruction.
Tsunami: (To Control) SCP-XXXX seems to be capable of spontaneous combustion and explosive force. It seems unharmed despite being the hypocenter itself.
Control: Understood. Proceed with caution.
Tsunami: We're gonna have to get it to come with us quietly. If we try to beat it with force…
Waterspout: Moving in. Maelstrom, Hurricane, let me know if you see anything strange.
[Waterspout keeps their distance from SCP-XXXX.]
Waterspout: (To SCP-XXXX) This is your chance to come with us quietly.
[SCP-XXXX does not respond]
Waterspout: This is an order. Don't force our hand.
SCP-XXXX: No thanks!
[Camera footage shows "Waterspout" emit an orange glow. Multiple distinct cracking sounds can be heard, followed by a low rumble. "Waterspout" collapses to the ground, and black smoke rises from their corpse.]
Maelstrom: Jesus!
Hurricane: Holy hell…
Tsunami: Fuck! (To Control) Waterspout's down.
Control: Understood. Can you complete the mission?
[Several seconds of silence.]
Tsunami: I have an idea, but I'm not sure if it'll work.
Maelstrom: Are you insane?! We just saw Water's insides reduced to fucking mush!
Tsunami: Maels-
Maelstrom: I say we come back with backup, a plan, equipment—something better than a hunch at least!
Tsunami: This isn't just a talking salamander; who knows what kind of damage it can cause. I think I've figured it out and I'm willing to risk it. Time is not on our side, here.
Tsunami: (To Control) I'm engaging with SCP-XXXX.
Control: Understood. Don't do anything stupid.
["Tsunami" keeps their distance from SCP-XXXX. In the distance, SCP-XXXX starts eating a worm.]
Tsunami: (To SCP-XXXX) Hey.
[SCP-XXXX raises its head and looks at "Tsunami"]
Tsunami: Will you come with us, please?
SCP-XXXX: Yes! Can Eda come?
Tsunami: Eda?
SCP-XXXX: Yes, Eda!
["Tsunami" pauses for a moment.]
Tsunami: Yes, Eda can come. Will you tell us where they are, please?
SCP-XXXX: They said they'd come back soon!
Tsunami: Alright. We can come back and get them later, okay?
SCP-XXXX: Okay!
<End Log>
Closing Statement: SCP-XXXX willingly followed "Tsunami", and Tau-33 successfully delivered SCP-XXXX to Site-33.
It was noted that SCP-XXXX may respond positively to requests given to it, in ways that may otherwise seem unnatural.
Additionally, Tau-33 opted to report that "Tsunami" felt the latter half of the transcript was incorrect. When asked to elaborate, "Tsunami" was unable to give a direct answer.
Addendum XXXX-1: Interview with SCP-XXXX
Interviewer: Dr. Sal
Interviewee: SCP-XXXX
Date: 29/03/2021
Foreword: Dr. Sal asked SCP-XXXX for permission to interview in order to minimize possible emotional turmoil.
<Begin Log>
Dr. Sal: Hey, SCP-XXXX. Is it alright if I ask a few questions?
SCP-XXXX: Yes!
Dr. Sal: Great. So, can you tell me how you're able to talk, please?
SCP-XXXX: Yes! Eda asked me to!
Dr. Sal: Eda? Can you tell us who Eda is, please?
SCP-XXXX: No thanks! She said don't tell anyone!
Dr. Sal: Can you tell us where to find her?
SCP-XXXX: No thanks! She said she'd come back soon! Has Eda come back yet? I'm bored!
Dr. Sal: We'll investigate. Do you happen to know Eda’s last name?
SCP-XXXX: Yes!
Dr. Sal: Can you tell me, please?
SCP-XXXX: No thanks! She said don't tell anyone!
[Dr. Sal quickly writes something down.]
Dr. Sal: I think that'll be all for now. Thank you for your cooperation.
<End Log>
Closing Statement: Investigations are currently ongoing to determine the location of possible suspects with the first name "Eda".
Dr. Sal opted to report feelings of discomfort. When asked why he felt it was necessary, he was unable to give a clear answer.
Addendum XXXX-2: Event XXXX-B-1 Log
Event XXXX-B-1
Date: 01/04/2021
Event Description: An explosion occurred in the west wing of Site-33, causing a temporary containment breach of the following anomalies: [REDACTED]. The explosion is estimated to have been equivalent to 0.01 kilotons of TNT.
Additional Notes: Following this event, Dr. Sal sent a class D personnel equipped with a body camera into SCP-XXXX's enclosure to communicate with it. The transcript of the body camera footage is attached below.
XXXX-2 Transcript
Date: 01/04/2021
Personnel: D-913
<Begin Log>
(Dr. Sal talks to D-913 through his earpiece.)
Dr. Sal: Head up to the second door and standby.
D-913: Uh, alright.
[D-913 reaches the second door. Several minutes of silence pass.]
Dr. Sal: Alright, we’re opening the door now. Recite the rules back to me.
D-913: (Sighs) ‘Don’t make sudden movements, and don’t give orders. Phrase your sentences as questions when appropriate.’
Dr. Sal: Good. Head inside, we’re watching the footage right now.
[D-913 slowly approaches SCP-XXXX. The enclosure is covered in thick soot.]
Dr. Sal: Okay, that’s close enough. Now, ask it if you can talk to it.
D-913: You want me to talk to a literal salamander?
Dr. Sal: You are to listen to what we tell you to do. This is very important.
D-913: Alright, I guess. (To SCP-XXXX) Hey, is it alright if I talk with you?
SCP-XXXX: (Angry tone) YES!
D-913: Jesus it can talk! Holy hell! (To Dr. Sal) I don’t think this guy’s friendly!
Dr. Sal: That’s alright, as long as it said yes. Keep going. Ask it if it can stop the explosions.
D-913: Explosions? What the hell are you talking about?
Dr. Sal: None of your concern, D-913. Do not question your orders, please. This is a serious matter.
D-913: (Whispers) Whatever.
D-913: (To SCP-XXXX) Hey little guy, will you please stop the explosions?
SCP-XXXX: No thanks!
D-913: (To Dr. Sal) He said no.
Dr. Sal: Ask it why it won’t stop.
D-913: (To SCP-XXXX) Is there a reason you won’t stop the explosions?
SCP-XXXX: Yes!
D-913: Why is that?
SCP-XXXX: I want to see Eda again! Where is Eda! Eda said she’d come back!
[SCP-XXXX proceeded to talk about Eda for another minute. This has been omitted for the sake of brevity.]
D-913: It’s sayin’ something about Eda.
Dr. Sal: Alright, we’ll have to look further int-
SCP-XXXX: (Shouting) Bring me Eda, please!
D-913: Hey, uh, they’re gonna look for Eda, okay?
SCP-XXXX: No! Bring me Eda, please!
D-913: (To Dr. Sal) It wants you to bring Eda.
Dr. Sal: Let it know we can’t at the moment, but that the investigation is currently ongoing.
D-913: (To SCP-XXXX) Hey, little guy, sorry but we don’t know where Eda i-
[The camera footage is overpowered by an orange glow. D-913 expresses an unusual warmth inside his body. Seconds later, the camera footage cuts out and the microphone is rendered useless.]
<End Log>
Closing Statement: Following Event XXXX-B-1, personnel are unauthorized to interact with SCP-XXXX.
To: Site-33 Personnel
From: Dr. Sal
Subject: RE:Prevention of XXXX-B events.
Following the events of XXXX-B-1, personnel are unauthorized to interact directly with SCP-XXXX. Despite using all information available to us, SCP-XXXX clearly has other mechanisms that remain unknown, and at this time it is too dangerous to find out what those are.
In future research, Class D personnel are to be used in instances where personnel are necessary.
Current data as a result of event XXXX-B-1 suggests that there is some form of a “cooldown” time between XXXX-B events. At this time, we’re looking into possible influences that “fulfilling” SCP-XXXX’s requests may have on the frequency of XXXX-B events. This is vital in future containment, and effective immediately, Protocol D is to be enacted to minimize collateral damage.
Stay safe,
– Dr. Sal
Addendum XXXX-3: Protocol D Incident 1A
Incident 1A
Date: 08/04/2021
Event Description: During the enactment of Protocol D, SCP-XXXX requested to meet with Dr. Sal.
Additional Notes: Transcription of Dr. Sal’s body camera footage is provided below.
Incident 1A Transcript
Date: 08/04/2021
Personnel: Dr. Sal
<Begin Log>
[Dr. Sal walks into the inner layer of SCP-XXXX’s containment.]
Dr. Sal: Hello, SCP-XXXX.
SCP-XXXX: Hi!
Dr. Sal: Can you tell me why you wanted to see me?
SCP-XXXX: No thanks!
[Short pause]
SCP-XXXX: Tell me where you live!
Dr. Sal: W-what?
SCP-XXXX: Tell me where you live, please!
[Dr. Sal takes a short pause, and tells SCP-XXXX his address.]
SCP-XXXX: Thank you!
Dr. Sal: Can I leave now?
SCP-XXXX: No thanks! Bring Eda to me please!
[Short pause]
Dr. Sal: Bring you Eda?
SCP-XXXX: Yes please!
Dr. Sal: (Whispering) Shit.
Dr. Sal: (Sighs) Eda can’t be found. Sorry, SCP-XXXX, but that can’t be done.
[SCP-XXXX does not respond. SCP-XXXX starts emitting an orange glow. Dr. Sal braces. A minute of silence has been omitted for brevity.]
Dr. Sal: A-Aren’t you gonna kill me?
SCP-XXXX: No thanks! Leave me alone now!
[Dr. Sal promptly left SCP-XXXX’s containment enclosure.]
<End Log>
Closing Statement: Following this incident, it was discovered that Dr. Sal’s address spontaneously detonated. SCP-XXXX has made no further requests for “Eda”.
: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)); }
}
Link To Guide
Item#:XXXX
Clearance Level 3: Clearance
Secondary Class: {$secondary-class}
SCP-XXXX prior to containment.
Special Containment Procedures: SCP-XXXX is to be kept in a heavily reinforced two-layer amphibian enclosure able to withstand explosions equivalent to at least 1 3 kiloton of TNT. Each layer of the enclosure is to be outfitted with a steel-encased concrete door with a remote locking system.
Protocol D: Biweekly Each week, a Class D personnel is to enter SCP-XXXX's containment and wait for SCP-XXXX to make a request. The Class D personnel is to recite the request to Foundation personnel, and fulfill it if possible. Otherwise, the Class D personnel is to be ordered to tell SCP-XXXX the request cannot be fulfilled.
In the event SCP-XXXX reaches the outer layer, Foundation personnel are to request SCP-XXXX goes back to the inside layer. If SCP-XXXX refuses, Foundation personnel are to release naphthalene gas in the outside layer until SCP-XXXX returns.
Description: SCP-XXXX is a salamander biologically resembling the Ambystoma maculatum. However, SCP-XXXX is physically more resistant to injury than its non-anomalous counterparts and is estimated to be able to withstand blasts equivalent to up to 1.2 3 kilotons of TNT.
Through unknown means, SCP-XXXX is capable of coherently speaking and understanding all known languages. SCP-XXXX utilizes these vocalizations in order to make requests, henceforth referred to as XXXX-A events. Failure to adhere to these requests results in a variety of potential consequences involving an anomalous explosive force henceforth referred to as XXXX-B events. The means by which SCP-XXXX is able to manifest these events is unknown. However, the nature of SCP-XXXX suggests that XXXX-B events are a byproduct of its emotional state in response to unfulfilled requests.
Giving orders or demands to SCP-XXXX will result in an immediate XXXX-B event that is, in most cases, fatal.
Discovery Log
Date: 27/03/2021
SCP-XXXX was retrieved from █████ Forest, British Columbia, Canada, by Provisional Task Force Tau-33 ("Talking Tides"). The Foundation was alerted to the anomaly due to reports of a “talking salamander” and scorched trees. Transcription of the body camera of the Tau-33 leader ("Tsunami") is provided below.
Discovery Log Transcript
Task Force Assigned: Provisional Task Force Tau-33 "Talking Tides"
Task Force: "Tsunami", "Hurricane", "Maelstrom", "Waterspout"
<Begin Log>
Control: Remember, all we know is the thing talks. Stay focused; we don't know what it can do.
Tsunami: Understood.
Tsunami: Eyes up, team. In-and-out in less than thirty, just like always.
Hurricane, Maelstrom, Waterspout: Yes sir.
[Tau-33 head towards the last reported location of SCP-XXXX.]
Waterspout: I have eyes on the target.
Tsunami: What's the situation like?
Waterspout: Target seems docile, but the ground is… scorched?
Tsunami: Alright. Hurricane, Maelstrom, keep your distance and eyes on the target. Waterspout, we're movin' in.
Waterspout: Understood. Stay cautious, though. Looks like this thing's got somethin' nasty up its sleeve.
Maelstrom: Salamanders don't have sleeves, Water.
Waterspout: Try to stay focused for more than a couple seconds.
Hurricane: We're about to engage with the target, now's not the time for back n' forth.
["Tsunami" and "Waterspout" approach SCP-XXXX. SCP-XXXX looks in their direction, but otherwise does not react.]
Tsunami: (To SCP-XXXX) Hey, why don't you come with us?
[SCP-XXXX does not respond. It turns to face "Tsunami".]
[Tsunami carefully reaches for SCP-XXXX. SCP-XXXX takes several steps backwards.]
[SCP-XXXX's skin starts to emit a small amount of orange light.]
Waterspout: Get back! Something's not right!
["Tsunami" jumps backwards. An explosive goes off from SCP-XXXX's location. "Tsunami" is launched several meters backwards. Flames cover the camera lens.]
Tsunami: (Whispers) Shit.
Maelstrom: Status?
Waterspout: Got a few burns. Nasty little creature.
Maelstrom: Looked like it hurt. Any orders?
Hurricane: Awaiting further instruction.
Tsunami: (To Control) SCP-XXXX seems to be capable of spontaneous combustion and explosive force. It seems unharmed despite being the hypocenter itself.
Control: Understood. Proceed with caution.
Tsunami: We're gonna have to get it to come with us quietly. If we try to beat it with force…
Waterspout: Moving in. Maelstrom, Hurricane, let me know if you see anything strange.
[Waterspout keeps their distance from SCP-XXXX.]
Waterspout: (To SCP-XXXX) This is your chance to come with us quietly.
[SCP-XXXX does not respond]
Waterspout: This is an order. Don't force our hand.
SCP-XXXX: No thanks!
[Camera footage shows "Waterspout" emit an orange glow. Multiple distinct cracking sounds can be heard, followed by a low rumble. "Waterspout" collapses to the ground, and black smoke rises from their corpse.]
Maelstrom: Jesus!
Hurricane: Holy hell…
Tsunami: Fuck! (To Control) Waterspout's down.
Control: Understood. Can you complete the mission?
[Several seconds of silence.]
Tsunami: I have an idea, but I'm not sure if it'll work.
Maelstrom: Are you insane?! We just saw Water's insides reduced to fucking mush!
Tsunami: Maels-
Maelstrom: I say we come back with backup, a plan, equipment—something better than a hunch at least!
Tsunami: This isn't just a talking salamander; who knows what kind of damage it can cause. I think I've figured it out and I'm willing to risk it. Time is not on our side, here.
Tsunami: (To Control) I'm engaging with SCP-XXXX.
Control: Understood. Don't do anything stupid.
["Tsunami" keeps their distance from SCP-XXXX. In the distance, SCP-XXXX starts eating a worm.]
Tsunami: (To SCP-XXXX) Hey.
[SCP-XXXX raises its head and looks at "Tsunami"]
Tsunami: Will you come with us, please?
SCP-XXXX: Yes! Can Eda come?
Tsunami: Eda?
SCP-XXXX: Yes, Eda!
["Tsunami" pauses for a moment.]
Tsunami: Yes, Eda can come. Will you tell us where they are, please?
SCP-XXXX: They said they'd come back soon!
Tsunami: Alright. We can come back and get them later, okay?
SCP-XXXX: Okay!
<End Log>
Closing Statement: SCP-XXXX willingly followed "Tsunami", and Tau-33 successfully delivered SCP-XXXX to Site-33.
It was noted that SCP-XXXX may respond positively to requests given to it, in ways that may otherwise seem unnatural.
Additionally, Tau-33 opted to report that "Tsunami" felt the latter half of the transcript was incorrect. When asked to elaborate, "Tsunami" was unable to give a direct answer.
Addendum XXXX-1: Interview with SCP-XXXX
Interviewer: Dr. Sal
Interviewee: SCP-XXXX
Date: 29/03/2021
Foreword: Dr. Sal asked SCP-XXXX for permission to interview in order to minimize possible emotional turmoil.
<Begin Log>
Dr. Sal: Hey, SCP-XXXX. Is it alright if I ask a few questions?
SCP-XXXX: Yes!
Dr. Sal: Great. So, can you tell me how you're able to talk, please?
SCP-XXXX: Yes! Eda asked me to!
Dr. Sal: Eda? Can you tell us who Eda is, please?
SCP-XXXX: No thanks! She said don't tell anyone!
Dr. Sal: Can you tell us where to find her?
SCP-XXXX: No thanks! She said she'd come back soon! Has Eda come back yet? I'm bored!
Dr. Sal: We'll investigate. Do you happen to know Eda’s last name?
SCP-XXXX: Yes!
Dr. Sal: Can you tell me, please?
SCP-XXXX: No thanks! She said don't tell anyone!
[Dr. Sal quickly writes something down.]
Dr. Sal: I think that'll be all for now. Thank you for your cooperation.
<End Log>
Closing Statement: Investigations are currently ongoing to determine the location of possible suspects with the first name "Eda".
Dr. Sal opted to report feelings of discomfort. When asked why he felt it was necessary, he was unable to give a clear answer.
Addendum XXXX-2: Event XXXX-B-1 Log
Event XXXX-B-1
Date: 01/04/2021
Event Description: An explosion occurred in the west wing of Site-33, causing a temporary containment breach of the following anomalies: [REDACTED]. The explosion is estimated to have been equivalent to 0.01 kilotons of TNT.
Additional Notes: Following this event, Dr. Sal sent a class D personnel equipped with a body camera into SCP-XXXX's enclosure to communicate with it. The transcript of the body camera footage is attached below.
XXXX-2 Transcript
Date: 01/04/2021
Personnel: D-913
<Begin Log>
(Dr. Sal talks to D-913 through his earpiece.)
Dr. Sal: Head up to the second door and standby.
D-913: Uh, alright.
[D-913 reaches the second door. Several minutes of silence pass.]
Dr. Sal: Alright, we’re opening the door now. Recite the rules back to me.
D-913: (Sighs) ‘Don’t make sudden movements, and don’t give orders. Phrase your sentences as questions when appropriate.’
Dr. Sal: Good. Head inside, we’re watching the footage right now.
[D-913 slowly approaches SCP-XXXX. The enclosure is covered in thick soot.]
Dr. Sal: Okay, that’s close enough. Now, ask it if you can talk to it.
D-913: You want me to talk to a literal salamander?
Dr. Sal: You are to listen to what we tell you to do. This is very important.
D-913: Alright, I guess. (To SCP-XXXX) Hey, is it alright if I talk with you?
SCP-XXXX: (Angry tone) YES!
D-913: Jesus it can talk! Holy hell! (To Dr. Sal) I don’t think this guy’s friendly!
Dr. Sal: That’s alright, as long as it said yes. Keep going. Ask it if it can stop the explosions.
D-913: Explosions? What the hell are you talking about?
Dr. Sal: None of your concern, D-913. Do not question your orders, please. This is a serious matter.
D-913: (Whispers) Whatever.
D-913: (To SCP-XXXX) Hey little guy, will you please stop the explosions?
SCP-XXXX: No thanks!
D-913: (To Dr. Sal) He said no.
Dr. Sal: Ask it why it won’t stop.
D-913: (To SCP-XXXX) Is there a reason you won’t stop the explosions?
SCP-XXXX: Yes!
D-913: Why is that?
SCP-XXXX: I want to see Eda again! Where is Eda! Eda said she’d come back!
[SCP-XXXX proceeded to talk about Eda for another minute. This has been omitted for the sake of brevity.]
D-913: It’s sayin’ something about Eda.
Dr. Sal: Alright, we’ll have to look further int-
SCP-XXXX: (Shouting) Bring me Eda, please!
D-913: Hey, uh, they’re gonna look for Eda, okay?
SCP-XXXX: No! Bring me Eda, please!
D-913: (To Dr. Sal) It wants you to bring Eda.
Dr. Sal: Let it know we can’t at the moment, but that the investigation is currently ongoing.
D-913: (To SCP-XXXX) Hey, little guy, sorry but we don’t know where Eda i-
[The camera footage is overpowered by an orange glow. D-913 expresses an unusual warmth inside his body. Seconds later, the camera footage cuts out and the microphone is rendered useless.]
<End Log>
Closing Statement: Following Event XXXX-B-1, personnel are unauthorized to interact with SCP-XXXX.
To: Site-33 Personnel
From: Dr. Sal
Subject: RE:Prevention of XXXX-B events.
Following the events of XXXX-B-1, personnel are unauthorized to interact directly with SCP-XXXX. Despite using all information available to us, SCP-XXXX clearly has other mechanisms that remain unknown, and at this time it is too dangerous to find out what those are.
In future research, Class D personnel are to be used in instances where personnel are necessary.
Current data as a result of event XXXX-B-1 suggests that there is some form of a “cooldown” time between XXXX-B events. At this time, we’re looking into possible influences that “fulfilling” SCP-XXXX’s requests may have on the frequency of XXXX-B events. This is vital in future containment, and effective immediately, Protocol D is to be enacted to minimize collateral damage.
Stay safe,
– Dr. Sal
Addendum XXXX-3: XXXX-B-2 Event Log
[block quote]
XXXX-B-2
Date: 05/04/2021
Event Description: During an instance of Protocol D, SCP-XXXX’s XXXX-B detonation was three times the regular strength. The inner layer has shown signs of damage to the structural integrity.
Additional Notes: It is unknown what may have caused the increase in energy.
Prior to the XXXX-B event, D-1012 was able to inform Dr. Sal that SCP-XXXX revealed the full name of Eda Graye. Investigations have revealed that no such persons with the name “Eda Graye” exist.
[end]
WARNING: THE FOLLOWING FILE CONTAINS AN INFOHAZARD. LEVEL 4/XXXX CLEARANCE REQUIRED.
The following file contains information that is subject to an anomalous effect. By reading the aforementioned file, you acknowledge and agree to be subject to anomalous effects and information.
Addendum XXXX-4: Additional Notes, Dr. Sal
Addendum XXXX-4, Dr. Sal
Date: 15/10/2021
Notes: I’m not sure why, but I feel compelled to write these notes pertaining to SCP-XXXX. If for no reason other than desperation, I’ll attach them to SCP-XXXX’s file. Maybe something I write springs a lead to prevent XXXX-B events.
However, as I sit and type this right now, the only thing that comes to mind is that this file has the wrong information. What the truth is, I’m not sure, but it’s got it wrong. At least, that’s what my gut tells me.
Eda Graye is not their name. That’s all that comes to mind. Whenever I try to check my notes to confirm, I forget what I had read within minutes.
I am about to reread my notes and type down what I see immediately:
Their name is Eda Graye, not Eda Graye. They live nowhere. We can’t find them.
Addendum XXXX-4-B, Dr. Sal
Date: 16/10/2021
Notes: My previous notes don't make sense. “Their name is Eda Graye, not Eda Graye”? However, I've made no changes, and the update logs are entirely empty. I distinctly remember typing something else, but I can’t remember what.
I’m unsure for what reason their name's being hidden from us, and I fear how accurate my thoughts can be when I'm under the effect of whomever Eda really is.
I believe this entire document, like my notes, has been anomalously changed to replace Eda’s real name with Eda Graye. It is entirely likely that SCP-XXXX has told us the exact whereabouts of Eda and we’re simply unable to recall, or that any information we have was changed anomalously.
I even tried Class X mnestics, but I still couldn’t recall their contents. The minute the mnestics wore off, the information disappeared from my head, and any attempts to write it down have anomalously changed to Eda Graye. Any other information regarding Eda seems to also have been altered, including possible locations. I’m not sure why my initial reports specifically are seemingly immune to the anomalous alterations, but it may have something to do with the fact that they’re handwritten. Regardless, it affects my memory in ways that render them useless.
Hell, it’s likely we’ve met whomever Eda Graye is and simply forgot or were under the impression that they were someone else.
SCP-XXXX’s only consistent request is Eda Graye, and it’s therefore assumed to be the way to stop the decreasing time between XXXX-B events and their increasing energy. But how can we find someone who is inherently unknowable?
If SCP-XXXX is under these effects as well, then it’s likely that long-term containment is impossible.
[[footnoteblock]]
: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)); }
}
Link To Guide
Item#:XXXX
Clearance Level 3: Clearance
Secondary Class: {$secondary-class}
SCP-XXXX prior to containment.
Special Containment Procedures: SCP-XXXX is to be kept in a spacious containment cell and assigned a supervisor. The assigned supervisor is to adhere to the requests of SCP-XXXX. In the event that a request exceeds the capabilities of the supervisor's level of clearance, any on-site personnel with the appropriate clearance are to be contacted immediately.
On-site personnel are not authorized under any circumstances to give orders/demands to SCP-XXXX, nor enforce any physical restrictions/restraints.
SCP-XXXX is to be kept with Dr. Sal at all times. In the event that SCP-XXXX makes a request, any personnel are to work collaboratively with Dr. Sal to fulfill it. Similarly, in the event that SCP-XXXX makes an unfulfillable request, on-site personnel are to notify Dr. Sal immediately.
Description: SCP-XXXX is a salamander biologically resembling the Ambystoma maculatum. However, SCP-XXXX is physically more resistant to injury than its non-anomalous counterparts.
Through unknown means, SCP-XXXX is able to vocalize as well as coherently speak and understand all known languages. SCP-XXXX utilizes these vocalizations in order to make requests, henceforth referred to as XXXX-A events. Failure to adhere to these requests results in a variety of potential consequences involving an anomalous explosive force henceforth referred to as XXXX-B events. The means by which SCP-XXXX is able to manifest these events is unknown. However, the nature of SCP-XXXX suggests that XXXX-B events are a result of its emotional state. Furthermore, the details regarding XXXX-A and XXXX-B events suggest an innate degree of knowledge otherwise impossible to obtain. It is unclear whether or not SCP-XXXX obtains this information at the time of XXXX-A and XXXX-B events.
Physical restrictions or limitations placed on SCP-XXXX are directly correlated with both the difficulty of XXXX-A events and the scale of XXXX-B events. Additionally, attempts to make demands towards SCP-XXXX cause immediate and potentially fatal XXXX-B events.
Discovery Log:
Date: 27/03/2021
Foundation personnel responded to reports of a "talking salamander" in █████ Forest, Canada. After locating SCP-XXXX, personnel report being repeatedly asked questions by SCP-XXXX about someone with the name "Eda Graye". The forest was thoroughly searched, and no one was found in the surrounding area.
Addendum XXXX-1: Interview with Dr. Wilson
Interviewed: SCP-XXXX
Interviewer: Dr. Wilson
<Begin Log>
Dr. Wilson: My name is Dr. Wilson. I'll be interviewing you today.
[SCP-XXXX remains silent]
Dr. Wilson: Great start. So, how are you able to talk?
SCP-XXXX: I'm not telling!
Dr. Wilson: SCP-XXXX, the sooner you cooperate the sooner this interview will be over.
[SCP-XXXX does not respond]
[Dr. Wilson sighs]
Dr. Wilson: Alright. How about a different question: who is Eda Graye?
SCP-XXXX: I'm not telling! When can I see Eda again?
[Short pause]
Dr. Wilson: Why do you want to see Eda again?
SCP-XXXX: I'm not telling! Can you get me a Level Two clearance card, please?
Dr. Wilson: Answer my questions and I'll get one for you.
[Unintelligible]
[Indiscernable shouting]
<End Log>
Closing Statement: After a short pause, multiple distinct cracking sounds can be heard. Dr. Wilson was found deceased. Further examination via autopsy revealed that each of Dr. Wilson's bones had fractured. Furthermore, the autopsy also suggests that the fractures were due to an unknown explosive force.
SCP-XXXX's description was updated to reflect the nature of its anomalous properties.
Addendum XXXX-2: Event XXXX-B-2 Log
Event XXXX-B-2
Date: 29/03/2021
Event Description: SCP-XXXX asked for Eda Graye to be brought to it, and repeatedly asked when it "could see Eda again". The Foundation launched an investigation in an attempt to locate any persons with the name "Eda Graye".
SCP-XXXX spoke to nearby researchers and claimed it "could not wait for Eda any longer!". At this time, a house in ███████, Canada, was destroyed.
Additional Notes: This particular house was the home of one of the researchers that SCP-XXXX had made the request to. It is unknown if SCP-XXXX was aware of this information.
Further investigations suggest it was destroyed in a similar manner by which Dr. Wilson's bones had fractured.
The Foundation launched a misinformation campaign as a result of this XXXX-B event.
Addendum XXXX-3: Interview with Dr. Sal
Interviewed: SCP-XXXX
Interviewer: Dr. Sal [Head of Research]
<Begin Log>
Dr. Sal: Hello, SCP-XXXX. Is it alright if I ask a few questions?
SCP-XXXX: Yes!
Dr. Sal: Alright, I'll just get right into it. Can you tell me how you're able to talk, please?
SCP-XXXX: Yes! I can talk because Eda asked me to!
Dr. Sal: Eda Graye?
SCP-XXXX: Yes!
Dr. Sal: Can you tell me who Eda Graye is, please?
SCP-XXXX: No thanks!
[Short pause]
SCP-XXXX: Can you get me a Level Two clearance card, please?
Dr. Sal: Level Two clearance? Yes… yes, of course. One moment.
[Dr. Sal exited the room for a short time and returned with a level two clearance card]
[Upon being handed the card, SCP-XXXX jumped repeatedly]
SCP-XXXX: I knew I could trust you!
Dr. Sal: Can you tell me what you mean by that, please?
SCP-XXXX: You can help me find Eda! She said she'd come back soon!
Dr. Sal: Don't worry, we're currently looking for Eda. So, can you tell me what you're going to use that card for, please?
SCP-XXXX: No thanks!
Dr. Sal: Alright. Can you tell me why you want to see Eda again, please?
SCP-XXXX: She said she had a present for me! She promised!
Dr. Sal: A present? Are you able to tell us what this present is, please?
SCP-XXXX: Yes! She said she'd find me a friend!
[Dr. Sal takes a short pause to write down notes on his clipboard]
Dr. Sal: SCP-XXXX, can answer a question I have about Eda, please?
SCP-XXXX: Yes!
Dr. Sal: Can Eda make more… creatures like you?
SCP-XXXX: Yes! She said she does it all the time!
Dr. Sal: Can you tell us what Eda Graye looks like, please?
SCP-XXXX: No thanks! She said don't tell anyone!
Dr. Sal: Can you tell us what other creatures she has made, please?
SCP-XXXX: No thanks! She said don't tell anyone!
[SCP-XXXX was unhelpful for the remainder of the interview, and further questions have been omitted for the sake of brevity]
<End Log>
Closing Statement: Note: It is unknown how SCP-XXXX obtained knowledge of the clearance system of the Foundation.
Addendum XXXX-4: Event XXXX-B-3 Log
Event XXXX-B-3
Date: 31/03/2021
Event Description: SCP-XXXX was locked in a standard containment cell. SCP-XXXX vocalized its "hatred for being restrained" and requested to meet with O5 Council member O5-7. Personnel told SCP-XXXX its request could not be fulfilled. At this time, the containment cell and personnel who were currently speaking with SCP-XXXX spontaneously exploded. SCP-XXXX was later found in Dr. Sal's office.
Additional Notes: SCP-XXXX's description and special containment procedures were updated to reflect the nature of its anomalous properties and to prohibit further physical restraints.
Addendum XXXX-5: Event XXXX-A-4 Log
Event XXXX-A-4
Date: 01/04/2021
Event Description: SCP-XXXX asked for Eda Graye to be brought to it and stated that "Eda said they would come back!".
At this time, Dr. Sal asked SCP-XXXX to change its request, and SCP-XXXX agreed. At the time of writing, no known XXXX-B instance can be linked to this event.
Additional Notes: SCP-XXXX's containment procedures have been updated, and it is to be kept with Dr. Sal at all times. [See Addendum XXXX-7]
Addendum XXXX-6: Event XXXX-B-5 Log
Event XXXX-B-5
Date: 03/04/2021
Event Description: SCP-XXXX requested for Eda Graye to be brought to it. In order to prevent another XXXX-B event, Dr. Sal asked SCP-XXXX to change its request. SCP-XXXX then vocalized its frustration, restated its request, and refused to change it.
Foundation personnel were unable to locate any files regarding Eda Graye in public nor Foundation records. The location of any persons with the name Eda Graye could not be found.
Dr. Sal made multiple attempts to convince SCP-XXXX to change its request. At this time, the city of ████ in California, U.S.A, was spontaneously eradicated. Approximately 93% of civilians were killed.
Additional Notes: The foundation launched a misinformation campaign as a result of this XXXX-B event.
To: On-site personnel
From: Dr. Sal
Subject: Prevention of XXXX-B events.
SCP-XXXX has gotten out of hand. We could not have predicted the extent of XXXX-B events, but it's our job to prevent further harm. For the next 24 hours, I will be working with all on-site researchers to devise something to stop this from happening again.
In the event that we are unable to come up with something, or someone gets hurt, the O5 Council has ordered us to neutralize SCP-XXXX.
Stay safe,
– Dr. Sal
Addendum XXXX-7: Interview with Dr. Sal
Interviewed: SCP-XXXX
Interviewer: Dr. Sal [Head of Research]
Foreword: Following Event XXXX-B-5, Dr. Sal interviewed SCP-XXXX to make an attempt to halt further XXXX-B events.
<Begin Log>
Dr. Sal: Hey SCP-XXXX.
[No response]
Dr. Sal: Can you tell me if you knew that ████ is where I live? Well, lived, now.
SCP-XXXX: Yes!
Dr. Sal: You knew?
SCP-XXXX: Yes! I did!
[Dr. Sal sighs]
Dr. Sal: Can you tell me why you did it?
SCP-XXXX: Yes!
Dr. Sal: Why'd you do it, then?
SCP-XXXX: I want to meet Eda again!
Dr. Sal: Eda Graye…?
[Short pause. Dr. Sal bites his thumb]
Dr. Sal: Sorry, SCP-XXXX, but Eda was never here. No records anywhere. Trust me; we've tried. Please, can you find something else to obsess over?
SCP-XXXX: No thanks…
[SCP-XXXX turns around to face away from Dr. Sal]
[Dr. Sal audibly sighs]
Dr. Sal: They aren't here, SCP-XXXX. You killed my family for no fucking reason.
[SCP-XXXX does not respond]
Dr. Sal: How many times now? Three? Four? We've tried everything SCP-XXXX.
[SCP-XXXX does not respond]
Dr. Sal: God, I fuckin' hate you. Please, can you ask for someone else?
[SCP-XXXX scurries out of Dr. Sal's office]
<End Log>
Closing Statement: After recovering SCP-XXXX, Dr. Sal reported a change in its behaviour. At the time of writing, there have been no further instances of requests for Eda Graye.
Following this interview, the containment procedures for SCP-XXXX were updated.
Addendum XXXX-8: Event XXXX-B-6
Event XXXX-B-6
Date: 04/04/2021
Event Description: SCP-XXXX requested an answer to the following: "Is Eda really gone?". SCP-XXXX's supervisor explained the inability to locate Eda Graye. Subsequently, █████ Forest, Canada, was eradicated.
Additional Notes: There were no injuries or casualties as a result of this XXXX-B event.
[[footnoteblock]]