: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 | Site Director | Research Head | Assigned Task Force |
| Site-24 | Dr. Edward Irkiv | Dr. Nile Brackish | MTF Eta-7 "Birds of Prey" |
Special Containment Procedures
SCP-XXXX is to be held in a steel-reinforced containment enclosure in Site-24's wildlife containment wing. SCP-XXXX's containment enclosure should resemble a grassy plain, with a small pond and several rock structures for SCP-XXXX to hide in. 2-3 Acheta domesticus1 are to be released into SCP-XXXX's containment closure daily. Aside from feeding, no personnel are to enter SCP-XXXX's containment enclosure unless necessary.
In the case of a containment breach, MTF Eta-7 "Birds of Prey" is to be dispatched to locate and recontain SCP-XXXX.
Efforts to locate SCP-XXXX are to continue indefinitely. SCP-XXXX is suspected to currently be in the custody of PoI-2134 "Alex Warndthrill", and is to be located as soon as possible.
Description
SCP-XXXX appears to be a member of Sceloporus graciosus2. SCP-XXXX measures 8cm in length, and 1.47 cm in height. SCP-XXXX displays behavior consistent with its non-anomalous counterparts however seems to change appearance based on its emotional state. These states include:
- Content - When content or relaxed, SCP-XXXX appears as a normal Sceloporus graciosus.
- Frightened - When frightened, SCP-XXXX will quickly shrink to 7mm in length.
- Hunting - When hunting or when hungry, SCP-XXXX will grow 6 additional legs, along with 4 additional tails, an additional set of eyes, and an additional tongue. SCP-XXXX's senses and speed are significantly increased while in this state.
- Rage - When angered, SCP-XXXX will grow to 3.4 meters in height and 14.4 meters in length. SCP-XXXX's skin will become significantly more resilient to any damage, as well as becoming a greyer color. SCP-XXXX will also grow several spikes along its back and tail. SCP-XXXX gains a significant amount of strength and durability during this state. SCP-XXXX will begin to rampage until it is either calmed down, or it tires itself out.
SCP-XXXX will return to its "content" state whenever any of its other states of emotion subside. However, SCP-XXXX will rarely enter its rage state, only doing so under specific conditions of stress.
Addendum XXXX.1: Incident XXXX-1
On 9/23/2021, Site-24 was infiltrated by GoI-2134 "Nature's Carriers", led by a man called Alex Windthraw. Windthraw and several other armed members of GoI-2134 managed to infiltrate Site-24 and proceeded towards the wildlife containment wing. The following events were recorded on SIte-24's security system.
[[collapsible show="+ Security Log XXXX-1 - LEVEL 4 CLEARANCE REQUIRED" hide="- ACCESS GRANTED"]]
SECURITY LOG
Date: 9/23/2021
(the view is of outside SCP-XXXX's containment enclosure. Gunshots are heard. Twenty seconds pass, and Alex Windthraw and five armed individuals3 come into frame.)
Windthraw: Place it down.
AI-1: Yes sir
(AI-1 takes out a small explosive, and places it against SCP-XXXX's containment enclosure's door. Windthraw and AI's 1-5 takes cover. Ten seconds later, the explosive goes off, and the door crumbles.)
Windthraw: Move in.
(Inside SCP-XXXX's containment chamber, SCP-XXXX becomes frightened by the explosion, and enters it's "frightened" state. SCP-XXXX shrinks and is no longer visible on camera. Windthraw and AI's 1-5 move into the enclosure.)
AI-2: I told you, it's not here!
Windthraw: Patience.
(Windthraw removes a small cup from his pocket. Inside is a singular cricket. Windthraw releases the cricket into SCP-XXXX's enclosure. SCP-XXXX enlarges and enters it's "Hunting" state. SCP-XXXX quickly grows additional limbs, eyes, tongue and tails, and quickly catches the cricket.)
Windthraw: Try to be more observant.
AI-2: Yes sir.
(Windthraw picks up SCP-XXXX. It returns to it's "content" state.)
Windthraw: Welcome back, my friend.
(AI-3 quickly takes a needle out of their pocket filled with a clear substance. They quickly inject it into SCP-XXXX. SCP-XXXX falls unconscious.)
AI-3: Target is secure.
(From the door, seven armed members of MTF Eta-7 "Birds of Prey" along with Dr. Brackish enter the room. They all aim their weapons at Windthraw and AI's 1-5)
E7-Cap: Hold it right there.
(AI's 1-5 aim their weapons at the Foundation personnel.)
MTF-Cap: Drop it.
Windthraw: I'm afraid I can't do that.
MTF-Cap: I wasn't asking.
Windthraw: Whether you're asking or not, I'm not putting it down.
MTF-Cap: Then we'll just take it from you.
Windthraw: I'm afraid you won't be doing anything like that. You'd be stealing from me, again.
Dr. Brackish: That SCP is Foundation property, you have no right-
Windthraw: (interrupting) Foundation property? You have no idea, do you?
Dr. Brackish: Idea of what?
Windthraw: The O5 wiped it off the records, didn't they?
Dr. Brackish: How do you know about the O5?
Windthraw: Because just like you, I was once a doctor here at the Foundation.
(Silence for approximately 7 seconds)
Windthraw: What, you don't believe me?
Dr. Brackish: I don't see a reason to.
Windthraw: You make a fair point. Tell me doctor, do you know why I'm here?"
Dr. Brackish: To take SCP-XXXX.
Windthraw: Yes, but it's much more complicated than that. I need this "SCP" of yours. Hes an important asset in my research.
Dr. Brackish: Research?
Windthraw: Yes, well you see, back when I was a doctor at the Foundation, I was very interested in the concept of human evolution. I wondered how the human body would evolve over time, and what we would be like in the future. What would we be like? What would we be able to conceptualize that we can't now? I found it a fascinating concept. Humanity's destiny, all prepared for us.
(Windthraw hands SCP-XXXX to AI-3)
Windthraw: But then I realized. We could control our own destiny, the Foundation had the technology, we could evolve ourselves. And very quickly too, a simple dose of serum would do the trick. So I started a secret project, out of O5's view. "Project Evoculus" I called it. I got several like-minded individuals to help me on the project. We wanted to "evolve" someone into a super-human. A perfect body with heightened skills, senses, and abilities. We didn't want to do it to hurt anyone, we only wished to secure our own destiny. To make humanity perfect. Using several anomalies, we made the serum. We secured a D-class in a testing chamber. We were about to start the epirement, when…
(Windthraw pauses)
Windthraw: The O5 must've known. An MTF squad burst in, gunning down everyone in sight. My colleagues, my friends. We were only trying to secure humanity! We were trying to help! But no. The bureaucrats that make up the O5 council can't trust anyone but themselves. Not even a level 4 researcher. They destroyed the serum, and locked me up. I escaped of course, and don't ask me how because I honestly couldn't tell you.
Dr. Brackish: And why are you telling me this?
WIndthraw: So you know that the O5 are scum. Dirt bags. They don't care about humanity, they only care about themselves. Their egos. But I'm not doing this to get back at them, I'm simply continuing my research.
Dr. Brackish: You continued?
Windthraw: Of course I did! But of course this time was much more difficult. I had to seek out like-minded individuals, I had to create the technology myself. We had to test it out on animals first, given how primitive it was. monkeys, birds, mammals-
(Windthraw motions to SCP-XXXX)
Windthraw: And this little guy. Of course, it wasn't perfect. It had some nasty side effects It wasn't perfect, but it was a start. Of course, the Foundation made sure it was as difficult as possible for me to continue my research. They raided my lab, killing everything in the process. Whether it was accidental or intentional, I don't know. But you must've spared some, for here we are.
E7-Cap: And here we stay. You're not going anywhere with that.
Windthraw: Oh, I beg to differ.
(From behind Eta-7, 5 more armed individuals begin firing, instantly taking out E7-4 and E7-2. E7-Cap, -1, -3, -5, -6 and -7 return fire, but are all either terminated or severely injured. Dr Brackish is shot in the leg in the crossfire.)
Windthraw: Well done boys. I believe our work here is done.
( Windthraw and AI's 1-5 leave the enclosure, stepping over the bodies of MTF Eta-7. As they are leaving, Windthraw turns and looks down at Dr. Brackish)
Windthraw: Tell the O5's I say "Hello".
(Windthraw turns and leaves.)
[END LOG]
Following these events, members of GOI-2134 managed to evade capture, and promptly escaped Site-24. Alex Windthraw's whereabouts are currently unknown, as are the identities and whereabouts of the 10 armed individuals.
Efforts to locate SCP-XXXX are ongoing.
Cite this page as:
"MetalRavioli" by MetalRavioli, from the SCP Wiki. Source: https://scp-wiki.wikidot.com/metalravioli. Licensed under CC-BY-SA.
For more information, see Licensing Guide.
Licensing Disclosures
Filename: Sagebrush.jpg
Name: Sagebrush.jpg
Author: gilaman
License: CC BY 2.0
Source Link: https://www.flickr.com/photos/145486436@N07/46823244952
For more information about on-wiki content, visit the Licensing Master List.






Per 



