Secondary Class:
esoteric
: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)); }
}
Special Containment Procedures:
The Carpathian Mountain range is to be designated as a strict nature reserve with the explanation that several endangered species habiting the area are in need for preservation and scientific monitoring. Foundation personnel will operate in the area under the guise of being scientists and conservationists studying the local wildlife.
Foundation military assets are to set up a perimeter around the range prohibiting trespassers from entering the area. Radar units and surface-to-air missile (SAM) batteries are to be set up in strategic positions along the range. SAMs are to utilise electro-optical; and laser guidance systems. The former will be used to track the creature movements and the latter should only be used if the creature attempts to leave the mountain range. Satellite imaging will also be used to provide surveillance with a 0.1 second delay.
At least 1 squadron of fighters, preferably air superiority and/or interceptor aircraft are to be kept on stand-by at airbases in the vicinity of the Carpathians. These aircraft are to be assisted by AWACS as well as air defence systems on the ground; and equipped with electro-optical and laser beam riding anti-aircraft missiles (AAMs).
Personnel carrying out tasks away from research stations must wear SCRAMBLE v2 goggles at all times. In the case of goggles malfunctioning, personnel are to immediately make their way back to base. An MTF battalion is to be based in the territories surrounding the mountain range to rescue jeopardised personnel. Remote cameras are to be used to monitor SCP-XXXX. Any live video surveillance in the containment zone must also have the stated 0.1 second delay in their feed.
Description:
SCP-XXXX is a creature, 7.62m in length, 2.50m in height when stood fully upright, possessing ornithic and reptilian characteristics. Its head and neck resemble that of the bearded vulture (Gypaetus barbatus) along with its feet and wings, while the rest of the body has reptilian characteristics.
The creature possesses two large feathered wings with a wingspan of 9.14m which can fold to create two clawed forelimbs used for supporting itself similar to the Common vampire bat (Desmodus rotundus) and to move in a quadrupedal manner.
Two muscular hind legs allow SCP-XXXX to also walk and run bipedally. Additionally, it has a muscular snake-like tail which ends in foldable rectrices. These three appendages are capable of delivering powerful blows.
SCP-XXXX vocalisations are a mix of those produced by Old World vultures and snakes.
The creature has 2 rows of sharp, backwards curving teeth on both the upper and lower beak including two fangs on the upper beak which inject venom. SCP-XXXX’s venom is extremely potent, possessing both neurotoxic and cytotoxic properties. Any living thing in contact with the venom, via directly getting bitten by SCP-XXXX or indirectly through touching or contamination will result in death within 2 minutes. Effects on human subjects include a loss of coordination; delirium; accelerated lysis; paralysis; asphyxia; and death. Corpses of victims will appear withered with massive internal injuries.
Its eyes are similar to those of the King Cobra (Ophiophagus hannah). When SCP-XXXX makes eye contact with an individual, the individual will immediately die. Autopsy on those afflicted by SCP-XXXX’s sight show injuries and effects consistent with those in individuals which have come into contact with SCP-XXXX’s venom. SCP-XXXX is also immune to all known toxins.
Withering Events refers to any deaths caused by contact with SCP-XXXX’s venom or line of sight. It has several names within the region, such as в’янення , putregaiul, увенути, otrávení as well as others.
Notable events in chronological order:
| Dates |
Location |
Description of Withering Event |
Notes |
| 19th September 1916- 1th December 1916 |
Bitola (Monastir), Macedonia |
An estimated over 10000 Allied soldiers died from poisoning. It is inferred that they most likely came into contact with SCP-XXXX’s venom from a contaminated water supply. It is unknown how many of soldiers of the Central Powers died due to poisonings, however both sides have reported sightings of SCP-XXXX flying around in the night sky. |
It is deduced that the events lead to the eventually Central Powers victory as a result of the depletion of manpower due to sickness for the Allies. |
| 26th February – 11th March 1926 |
Krakow, Poland |
12 people went missing in the Wolski Forest. 5 of them were found dead in withered states. Reports of SCP-XXXX, nicknamed “Bazyliszek” by the locals, began coming in. Many locals, believing it was the legendary Warsaw Basilisk, began hanging mirrors outside of their house to make the Basilisk kill itself with its gaze. One particularly interesting incident was on the 3rd March 1926, when 6 people were found dead in the city. It is inferred that the creature had attacked someone and it’s glare was inadvertently reflected at multiple mirrors. |
“Bazyliszek” is the Polish word for Basilisk. |
| 18 May 1942 |
Ľadový štít, Slovakia |
A Gebirgsjäger platoon went missing. 5 years later, the bodies of the soldiers were found on various parts of the mountain by locals. |
|
| 5th June 1969 |
Svydovets,Polonynian Beskids (Ukrainian SSR, USSR) |
A group of 8 hunters were found dead in the mountains. |
In stark contrast to this incident, there were cases of friendly encounters between the Hutsul people and SCP-XXXX, especially when children are involved. |
| 29th January 1988 – 9th February 1992 |
Pripyat, Ukraine (Ukrainian SSR, USSR) |
7 soldiers and 2 liquidators were found dead in the city. |
The deaths were initially attributed to high levels of radiation. |
| 15th July- 1st October 1995 |
Ozren, Serbia (Yugoslavia) |
An estimated over 250 Serbian soldiers were found dead. Most of the bodies were withered and severely mutilated. 50 were killed in what appeared to be a friendly fire incident, where an artillery unit was supposedly given the order by their commander to stonk a building unbeknownst to them occupied by friendly troops, after receiving a distress call from soldiers claiming they were being pinned down by enemies in the building. |
SCP-XXXX was suspected to be residing in the mountain before the event when reports of strange snake-like sounds were being emitted from the forests. |
| 8th May 2000 |
Fagaras Mountains, Romania |
Over 30 illegal loggers disappeared in the forests and were found dead days later. 4 of the bodies had multiple fractures and massive haemorrhaging, suggesting they had fallen from a very high height. |
Certain zones have become free of loggers due to fear of SCP-XXXX, nicknamed by locals as the “Basilisc” or Basilisk in Romanian. |
| 1st February 2002 |
Moravian-Silesian Region, Czech Republic. |
A local shepherd and his friends who were looking for his missing 4 year old daughter in the forest nearby his home discovered the withered body of Markus Kolář, a traveller in the area. Later that day, the daughter returned home. When asked where she had went, she stated that she was playing with a “dragon”. |
The remains of two previously missing local children was found in Kolář’s cabin. Just as with the case of the Hutsuls, SCP-XXXX has been recorded to have positive interactions with locals of the mountains. |
| 6th May 2007 |
Chernobyl Exclusion Zone, North of the Pripyat, Ukraine. |
A CBRN unit sent to investigate the source of gunshots reported coming from the exclusion zone discovered an entire motorised infantry platoon dead. Post mortem reports detail that 3/4 of the bodies were in states consistent with the effects of SCP-XXXX‘s poisoning, whereas the rest had severe lacerations and multiple fractured bones. One of the three BMP2 IFVs was found heavily damaged with the hatch broken open and 14m away from the wreckage. |
|
Addendum 1: Discovery
Sightings were reported in the across Europe throughout the 20th Century, with a majority concentrating in the Carpathians and its surrounding area. It is suspected that SCP-XXXX sightings cover such a large territory due to the creature’s ability to fly quickly at very high altitudes; and being able to crawl in cave systems and dense forests to cover ground undetected. After a period during which sightings stopped, it was later photographed in the Chernobyl Exclusion Zone by soldiers two days after the accident.
SCP-XXXX became a very high priority for The Foundation after Incident-XXXX-1. The Foundation was contacted by [REDACTED] on behalf of the Ukrainian government in 14th July 2007, after the discovery of a mass Withering Event. MTF Beta-7 "Maz Hatters" were deployed to Ukraine and assets in neighbouring countries were kept on high alert due to SCP-XXXX tendency to wander.
SCP-XXXX was discovered in the Polissya hotel in Pripyat by Beta-7 following the radio signal of the missing Ukrainian CBRN team.
The creature managed to escaped and the missing personnel were administered Class-A amnestics.
SCP-XXXX is currently residing in the Carpathian Mountain range where a large scale containment perimeter has been set up. Due to the friendly relationship between the local Hutsuls and SCP-XXXX, they will be allowed to stay in the containment zone.
Addendum 2.1:
During the investigation of a Withering Event, a video camera belonging to one of the victims was discovered. The D-Class who viewed the footage stated he saw the basilisk looking at the camera. No effects were observed.
Slowing down the footage revealed that SCP-XXXX has a set of fully transparent nictitating membranes, which opens up during a visual based attack. Once opened, the creature’s pupils turn a luminescent golden yellow with a slight reddish ring surrounding it while the creature produces a vocalisation similar to the King Cobra’s growling. Once the target has been killed, this third eyelid closes and the eyes return back to normal.
Addendum 2.2:
Despite the discovery that its normal gaze is not lethal, the creature is still considered a major cognito-hazard and the necessary precautions are still needed to be taken. Since the gaze is neutralised as recorded footage, a specially designed set of automated goggles providing a video feed with a 0.1 second delay will be developed using the SCRAMBLE goggles.
FLIGHT LOG
DATE: 25th March 1999
LOCATION: Yugoslavia
NOTE: Incident-XXXX-1
**
[BEGIN LOG]
0330: F-117 Night Hawk (Call sign: Vega-6) piloted by Lt. [REDACTED] is deployed for a clandestine mission over Yugoslavia. Escort considered redundant as area was already subject to SEAD operations.
0350: Vega-6 enters area. Begins recon.
0405: Target was located, coordinates [REDACTED].
0406: Vega-6 engages target: Drops 1 GBU 27 Paveway III. Vega-6 confirms target has been destroyed.
0407: Vega-6 rtb.
0410: On route, Vega-6 notices a small blip on the radar. Command confirms there are no aircraft detected in the area at the time.
0411: Vega-6 reports he sees a shape moving South East. Shape moves parallel to the aircraft.
0414: Shape begins moving towards Vega-6. Pilot describes a big, dark object approaching at high speed then it performs a banking turn and disappears from view. Pilot exclaims, “Holy cow! It’s a dragon!”
0417: Shape has not reappeared. Vega-6 continues rtb.
0419: Aircraft gets impacted hard from the back of the aircraft. Elevators and rudders fail. Plane goes into an uncontrollable spin.
0420: Pilot attempts to eject. “Mayday! Mayday! It hit me! I’ve lost control to the elevators. I don’t think I can rec…..OH GOD!…………”, Screaming is heard before a loud smash is heard, followed by static.
0422: Despite multiple attempts to get a response, command loses contact with Vega-6.
[END LOG]
15 hours later, reports come that a Serb militia patrol discovered the wreckage of Vega-6. MTF Unit Volk-7 infiltrated behind Serbian lines to secure the crash site.
All non-authorised individuals involved were administered amnestics according to their degree of knowledge and involvement.
The incident is later overshadowed by the downing of another F-117 two days later by Serbian SAMs. The latter will be stated to be the first, and all evidence of the former were destroyed or altered.
Analysis of the wreckage shows damage to the back section of the aircraft with the vertical stabilisers being missing from what appears to be “claw” marks. However, the most damage was done to the cockpit, which was a gaping hole aside from some of the avionics and what was left of the canopy. The extent of the damage suggests that a large object had rammed into the cockpit at a high speed.
Pilot presumed K.I.A.
With seven similar recorded incidents of downings occurring nearby the Carpathians, it appears that SCP-XXXX has begun targeting aircraft. Further precautions will be added to its containment procedures.
Addendum 3: Observations in containment
Despite its size, the creature is incredibly agile, being able to move on land, scale up vertical structures, and fly with ease.
SCP-XXXX has excellent vision, which helps it see in low-light conditions, and thermal pits on its beak which enable it to sense heat signatures, allowing it to see even in pitch darkness. The entity also possesses acute olfaction.
SCP-XXXX was discovered to have an additional 2 humanoid arms which come out from its body to use for tasks requiring more dexterity. It is unknown how these limbs are concealed in the body.
Examination of feather samples show that they are covered with minute scales, creating a hard but lightweight protective surface. These scales along with the larger ones covering SCP-XXXX’s body make the creature impervious to damage from melee weapons and guns up to 30mm in caliber. SCP-XXXX’s scales also possess radar absorbent properties, allowing it to have a disproportionately small Radar Cross Section (RCS) compared to its size.
These findings imply that SCP-XXXX might have adapted to attack aircraft.
It is suggested that blast damage could stun the creature, and large explosions can possibly injure the creature enough to be safely handled or force it to retreat to heal.
The locals have been observed leaving food for the creature as offerings. These include livestock, bryndzaas well as other oily foods.
There has been an increase of arguments between personnel stationed in the mountains Complaints of taunts and misunderstandings are rife.
Addendum 4:
Exploration Video Log Transcript
Date: 16/6/2010
Exploration Team: MTF Kappa-2 (Mountain Men)
Subject: SCP-XXXX - Romania, Carpathian Mountains
Team Lead: Researcher Florin Nicolescu
Team Members: Agent Rednic, Agent Ciobanu, Agent Willard, D-1347, D-1688
[BEGIN LOG]
Goggle feed shows the men walking in the forest. Researcher Nicolescu is directing the team lead by Agent Rednic to the site from the station's security room.
Rednic: Goggles are operational.
Nicolescu: Everyone else?
Ciobanu: Working.
D-1347: Working.
Willard: Yes. Working fine.
D-1688: Good. They're quite bright.
Nicolescu: It's to help see in the dark, D-1688. Your eyes will adjust.
They continue walking until they reach a clearing. The carcass of a Red deer can be seen.
Ciobanu: We're at the spot. Coast is clear.
Nicolescu: Alright, you've been briefed on what to look for.
Ciobanu: Yes…yes. Feathers, scales, and shit.
Nicolescu: I suggest a little more clarity.
Ciobanu: Sorry. [Pauses] What's that word for shi-
D-1347: Faeces.
Ciobanu: (to D-1347) He's talking to me, buddy. Get to work! (whispering to Nicolescu])Yeahhhh, that.
Willard: Man you got schooled by a D.
Nicolescu: (Muffled giggling) Yes, collect the samples and return to base. Be wary of venom residue. Collect samples of that if discovered.
The D-class begin collecting samples.
Rednic: I think we should be worried about more than just venom.
Nicolescu: We're looking at the cameras. We've had the locals keep SCP-XXXX occupied far away with food. You'll have enough time.
Rednic: I hope so. I find it strange how they manage to keep it tame towards them.
D-1688: Well I'd be if I was getting free food. And that delicious.
D-1347: Hehe. I second that!
Ciobanu: Alright guys. Let's get the stuff.
D-1347: We are.
Rednic: That's true, the explanation for providing it caught my attention when I spoke with them.
Nicolescu: Hmm? What was it?
Rednic: Well among the offerings and peace keeping stuff, they mentioned, I'm not sure if I mistranslated this, fuel.
Nicolescu: Fuel?
Ciobanu: That's a weird way to say food.
Rednic: That's why I'm not sure. You guys speak the language.
Nicolescu: I'll take note of it and check it out. D-1347, have the samples been collected.
D-1347: Almost done. Got 4 feathers. Some scales, And blood samples from the carcass.. Just packing it.
Ciobanu: Well hurry up! We can't stay for long.
D-1688: Alright! Alright! We're done.
The D-class get up
Nicolescu: Good. Head back to base.
Rednic: Yes Sir.
The men begin making their way back. During the walk, D-1688 trips on a branch
D-1688: Shit.
Ciobanu: Watch your step D-1688. These are valuable samples.
D-1688: Ok! Ok!
Just as they continue walking, Agent Ciobanu stops.
Ciobanu: What did you say to me?
D-1688: What?
Ciobanu: Did you just call me a bitch!?
D-1688: N-No I didn't.
Nicolescu: Ciobanu, no one said anything.
Ciobanu: (Pauses)Ok. Go.
The men continue walking.
Ciobanu: (Points his gun at D-1688) Enough with this D-1688! Stop calling me that!
Willard: Ciobanu, calm down, we'll deal with him at base.
Agent Rednic and the D-classes turn to look at Ciobanu
D-1688: Look it didn…Woah, calm down.
D-1347: What the hell are you on? No one said shit!
Rednic: Ciobanu stand down.
Ciobanu: This guy has been saying insults under his breath for the past two minutes. How can you not hear it?
D-1347: I'm right next to him. He said nothing!
Ciobanu: Bullshit!(Turns to Agent Willard.) You heard it too, right?
Willard: Yes. Come on D-1688. Just apologise.
The D-class and Agent Ciobanu begin arguing
Nicolescu: Everyone calm down! I repeat. Calm down. Ciobanu, I promise you no-one said anything.
D-1347: Exactly. Stop pointing-
Nicolescu: D-1347, refrain from making comments or you will face disciplinary action. And Ciobanu please lower your wea-Oh dear.
SCP-XXXX can be seen pecking at a remote camera until the footage cuts out.
Rednic: What? What's wrong?
Nicolescu: (Away from the mic) I need eyes on it now. Check every camera.
Willard: What's going on? Shut up guys!
Rednic: Sir! What is happening?
(The men stop arguing and look at Agent Rednic)
Nicolescu: (Back to mic) Get back to base as quickly as you can, SCP-XXXX destroyed the camera, we lost foot-
(Speaking can be heard in the background)
Rednic: Affirmative. Hurry up guys, we have to go. Haul ass!
(The men begin running. D-1347's footage shows movement in the trees)
D-1347: What is that?
Nicolescu: SCP-XXXX has been spotted nearby your area. Recovery team is being prepped.
Rednic: Noted we're getti-
(Screaming can be heard from behind Rednic. The men turn to see Ciobanu writhing on the ground. Venom is seen being sprayed onto him by SCP-XXXX from a distance.)
D-1347: Oh! What the fuck!
Ciobanu: AHHHHHH! AHH! AH FU- A-E-(incoherent sounds)
Willard: Fire! Fire!
Rednic: (Hands a pistol to D-1688) Take it! Go!
The Agents open fire while the D-class run with the samples. The creatures rushes forward and slashes Willard with its forelimb. It then hits Rednic with it's tail.
Rednic: AHH! My leg. Shit.(Pulls the pin-off some grenades.) Let's go you feathery bastard.
Agent Rednic's footage shows SCP-XXXX looking at him before quickly crawling away.
D-1347: Come on man! Le-
D-1347 and D-1688 get knocked over and they tumble down the slope. D-1688's goggles hit a rock and the footage cuts. D-1347 falls onto flat ground. His footage is now blurry. An explosion is heard.
Nicolescu: K-2-R12. Kappa-2-R12. Is anyone still alive?
(D-1347's footage begins moving.)
D-1347:(Grunts and coughs) I'm alive. Damn! My back! Myk. Where are you man?
Nicolescu: I'm sorry. He's dead. Get up, you need to get out of there.
D-1347: Myk. Oh fuck! He had a wife.
Nicolescu: D-1347 you need to-
(SCP-XXXX can be heard shrieking in the distance)
D-1347: Oh shit…shit!
D-1347 runs into a nearby crevice.
D-1347:The goggles! The goggles…they're cracked. What should I do!?
Trees can be heard rustling in background.
Nicolescu: [In Romanian] Daniel! Close your fucking eyes! Now!
D-1347 can be seen curled up in the crevice. The sounds of rocks crunching can be heard above. SCP-XXXX descends down the slope slowly. It crawls onto the ledge 15 metres from D-1347's location. It looks around and begins hissing.
Nicolescu: Do. Not. Move.
SCP-XXXX stands on its hindlegs, seeming to scan its environment. It turns its head in the direction of D-1347
Nicolescu: Oh no. No…no…no.
D-1347: [In Romanian] Wh-What's goin-
Nicolescu: [In Romanian] Shut your mouth!
SCP-XXXX stealthily walks towards that direction. It is now 3 meters from the hidden D-class. D-1347's suppressed breathing can be heard increasing.
SCP-XXXX's neck turns the bend. It is seen staring directly at D-1347. It's low-pitched breathing is heard.
D-1347:(Muffled crying) Ma…mama.
SCP-XXXX opens its beak. Just as it goes to fully turn the bend, it is hit multiple times in the side of the head as gunfire rings out from the trees. SCP-XXXX turns to the source of the firing. It shrieks and charges at the shooter.
Nicolescu: Run! Now!
D-1347's instantly gets up and sprints into the forest. As he runs, he turns briefly to see the commotion. An orange figure is seen between the gunflashes before the creature flies into it.
After several minutes of running and Researcher Nicolescu giving him directions, D-1347 makes it to the research station.
Nicolescu: Yes! (Turns to other personnel.) Open the door!
The door to the stations opens to see 2 guards along with Nicolescu. The man runs into the building as gunfire is heard behind him and the door slams shut. D-1347 collapses to the floor.
Nicolescu: You alright?!
D-1347: (Panting) I think so. Fucking hell.
Vocalisations are heard and SCP-XXXX is seen flying off from a window.
[END LOG]
SCP-XXXX breached the perimeter. A squadron of fighters from the nearest airbase was deployed. Despite the loss of two fighters, the combined air and ground defences were successful in downing the creature.
Personnel at the scene reported that all vegetation surrounding the creature began to wither, and a sickening odour was detected. One of the agents went close to SCP-XXXX and suddenly collapsed. He was diagnosed later with blood poisoning akin to the symptoms of radiation poisoning. MTF Beta-7 "Maz-Hatters" were immediately called to the scene.
It was discovered that SCP-XXXX's blood was extremely toxic. Despite this, the creature was confirmed dead and the body was taken for autopsy.
Addendum 5:
Shortly after the killing of the creature, multiple Withering Events occurred consecutively at Foundation research stations across the Carpathians.
Footage showed multiple instances of the SCP-XXXX exiting the mountains and attacking Foundation assets. Several instances were reported breathing fire and razing Foundation vehicles.
However, the autopsy of the dead basilisk would raise further questions.
Based on the distinctiveness of the features, appeared that the creature had not evolved, but was engineered. Moreover, examination of the humanoid arms revealed the word "Dragan"" tattoed on the right forearm.
The Foundation would later receive information from Researcher Nicolescu and D-1347, who had survived the basilisks' attack on RS-12.
Due to the nature of the encounter, statements from SCP-XXXX were reenacted by the two personnel.
Log Transcript
The recording takes place around an hour after the downing of the SCP-XXXX instance. Research Station-12 was attacked by multiple instances of the creatures.
[BEGIN LOG]
Researcher Nicolescu and D-1347 are holed up in the security room.
D-1347: With all due respect I thought you had…like…the cavalry coming.
Nicolescu: It will probably take a while. The situation is a little dire out there.
D-1347: Just a "little dire". Come on Sir! One shredded the place and now there's God knows how many!
Nicolescu: Look I'm trying to get help. Pissing ourselves again is not going to help.
D-1347: Sure, but we only have rifles and a pistol against fu-
Nicolescu: (Holds up his index finger) Shhh!…Shhh. Do you hear that?
D-1347: Hear what?
Nicolescu: Listen.
The two men stay silent. Soft singing can be heard through the speakers.
D-1347: A survivor?
Nicolescu: Who the hell sings in this situation!
Singing gets louder.
D-1347: (Gulps audibly)Tha-That's Mykola's song.
Nicolescu: Pardon?
D-1347: Mykola. D-1688. He sings that at night to help him sleep. Could he-
Nicolescu: Sounds like an old man, I can't see whe-
Nicolescu turns to see D-1347 standing still.
Nicolescu: What's wrong?
D-1347: S-Sir
Nicolescu: Daniel. What's wrong?
D-1347 points at the door camera footage. An SCP-XXXX instance can be seen staring at the camera. It opens it's mouth slightly. A hissing sound can be heard along with the singing male voice.
They look at each other before looking at the door.
Nicolescu: Di- It-It's locked.
D-1347: I don't think that will stop it.
The singing stops.
SCP-XXXX: [In Romanian] Do you see me?
[The conversation is carried out in Romanian.]
(The men remain silent)
SCP-XXXX: I could make myself more visible by joining you in there. I would like to talk.
Nicolescu gestures to D-1347 to train his gun at the door.
Nicolescu: To be clear, we are armed, and backup is on the way.
SCP-XXXX: I think your backup is being eaten at the moment.
Nicolescu: (Pauses)
SCP-XXXX: May I know the owner of this voice?
Nicolescu: (Gulps) Uh-u- My name is Florin Nicolescu. I am a researcher.
SCP-XXXX: Ah! A local. Greetings. And your friend?
Nicolescu: He's local too.
D-1347: Yes. Why are you doing this?
SCP-XXXX: Why? Self-defence.
D-1347: Bullshit! You hunted us! You killed my friend!
SCP-XXXX: Oh! That wasn't me. That was my comrade.
D-1347: So?! You all still attacked us.
SCP-XXXX: You are forcing us into hiding, and thus hindering our efforts. I should hav-
Nicolescu: Wait pardon me. Hold on. What you mean "hindering our efforts"?
SCP-XXXX: You fools. We are here to stop the spread of the dracul. And you're fighting us?
Nicolescu: Drac- You mean the vampires.
SCP-XXXX: What else, doctor?! We have been doing so for years and then you send in aircraft to kill us, and keep us here, while that monstrosity thrives.
Nicolescu: You were killing peopl-
SCP-XXXX: We kill those who impede in our efforts and encroach upon our stronghold. Collateral is expected in the mission. I agree some could have been avoided. On behalf of my kin, I am sorry, but it is all for the greater good.
Nicolescu: Your kin downed a stealth aircraft. And several others.
SCP-XXXX: It's was-(Cocks head)Wait…Stealth?
(The instance produces a vocalisation of a vulture squawking in a manner similar to cackling)
SCP-XXXX: It was trying to stay hidden?! Dragan told us it lit up like a firefly.
D-1347: Who's Dragan?
SCP-XXXX: Huh? Oh that's the one who took it down. And the one who hunted you and…is now sadly dead. That bastard bombed one of our nests, and killed his wife, Elena. We all have names, I am Stefan. So he was understandably mad. He then convinced all of us to be wary of aircraft near our mountains.
Nicolescu: I believe that was accidental. The target was a Serb camp, n-not the nest.
SCP-XXXX: Hmmm…the others will have to be convinced.
Nicolescu: I'm sorry on behalf of our organisation.
SCP-XXXX: Apology accepted. But the fact remains that you are doing a big mistake by impeding our task. We have been forced to move through tunnels and fight underground.
Our numbers are only increasing, and so will the attacks. So I require you to make a deal. You might want a paper.
Researcher Nicolescu gestures to D-1347 to give him a paper. He takes out a pen and starts writing.
Nicolescu: Ready.
SCP-XXXX: We will stop the attacks if your organisation stops attacking and pushing us into captivity. We both have a common enemy, so it would be wise to work with each other to vanquish it.
Nicolescu: Done. I will relay the message.
SCP-XXXX: Good. I hope you are wise. Farewell.
The creature crawls out of the station and flies away.
[END LOG]
[When this recording was played to higher-ups, only the two personnel could be heard conversing. It has been realised that SCP-XXXX is capable of telepathic speech.]
The following is a reenactment of the song made by D-1347:
Addendum 6:
The following journal was provided to Foundation personnel together with a Shepard's axe by several village elders. This excerpt is translated from Rusyn for convinience.
To whomever this may concern… we did it. We created something that can keep back the dracul, the monsters in the night.
Our fate was in question. As much we loved the Grand Karcisist and his beliefs, we could not stand by as our fellow people are slaughtered to feed this…monstrosity. I do not care what is thought of us. No loving God will allow and even demand the blood of our loved ones. We made the fateful decision upon learning that the Mother is spreading. We will not allow others to befall the same fate as our country. So we left to the mountains to create something to stop this, in the only way we could.
To protect us from the beasts, we looked to the legends of old. And there we found our answer:
The Basilisk.
A creature which destroys life with its mere gaze and potent venom. We engineered our creation in its image. We travelled far and wide to collect samples for traits which would help it in combating the vampires. Lammergeier for aerial prowess and digestive abilities. Hamadryad for it piercing stare and, as well as multiple venomous creatures, for toxicity. We even spliced it with our own to give it awareness and ability to speak, and soon names.
And they have proven themselves. We must have hurt the beast as the earth shook. Quite a few times actually.
The basilisks have also begun mating and later laying eggs. We were overjoyed. We allowed them to spread throughout the mountains and make nests. Soon we would have an armada to rid this land of the beast.
Addendum 7:
A truce has been made with SCP-XXXX. The Foundation will allow them to inhabit the Carpathians to serve as a defence against SCP-2191 activity. Plans are being made.
The use of SCP-XXXX''s venom is being considered to neutralise Sarkic anomalies.
: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)); }
}
Secondary Class:
esoteric
Special Containment Procedures:
The Carpathian Mountain range is to be designated as a strict nature reserve with the explanation that several endangered species habiting the area are in need for preservation and scientific monitoring. Foundation personnel will operate in the area under the guise of scientists and conservationists studying the local wildlife.
Foundation military assets are to set up a perimeter around the range prohibiting trespassers from entering the area. Radar units and surface-to-air missile (SAM) batteries are to be set up in strategic positions along the range. SAMs are to utilise electro-optical; and laser guidance systems. The former will be used for tracking and the latter should only be used if SCP-XXXX attempts to leave the mountain range. Satellite imaging will also be used to provide surveillance with a 0.1 second delay.
At least 1 squadron of fighters, preferably air superiority and/or interceptor aircraft are to be kept on stand-by at airbases in the vicinity of the Carpathians. These aircraft are to be assisted by AWACS as well as air defence systems on the ground; and equipped with electro-optical and laser beam riding anti-aircraft missiles (AAMs).
Personnel carrying out tasks away from research stations must wear SCRAMBLE v2 goggles at all times. In the case of goggles malfunctioning, personnel are to immediately make their way back to base. An MTF battalion is to be based in the territories surrounding the mountain range to rescue jeopardised personnel. Remote cameras are to be used to monitor SCP-XXXX. Any live video surveillance in the containment zone must also have the stated 0.1 second delay in their feed.
Description:
SCP-XXXX is a large chimeric organism measuring an average of 7.6 metres in length and possessing both reptilian and ornithic traits. It stands approximately 2.5 metres tall, featuring winged forelimbs, with a wingspan of 9.1 metres and reptilian hindlimbs along with a long, muscular tail covered in foldable rectrices. The head of SCP-XXXX strongly resembles non-anomalous Bearded Vultures (Gypaetus barbatus) but possesses rows of sharp teeth curved teeth and two venomous fangs.
SCP-XXXX’s venom is extremely potent, possessing both neurotoxic and cytotoxic properties. Any living thing in contact with the venom, via directly getting bitten by SCP-XXXX or indirectly through touching or contamination will result in death within 2 minutes. Effects on human subjects include a loss of coordination; delirium; accelerated lysis; paralysis; asphyxia; and death. Corpses of victims will appear withered with massive internal injuries.
Its eyes are similar to those of the King Cobra (Ophiophagus hannah). When SCP-XXXX makes eye contact with an individual, the individual will immediately die. Autopsy on those afflicted by SCP-XXXX’s sight show injuries and effects consistent with those in individuals which have come into contact with SCP-XXXX’s venom. SCP-XXXX is also immune to all known toxins.
SCP-XXXX vocalisations are a mix of those produced by Old World vultures and snakes.
Withering Events refers to any deaths caused by contact with SCP-XXXX’s venom or line of sight. It has several names within the region, such as в’янення , putregaiul, увенути, otrávení as well as others.
Notable events in chronological order:
| Dates |
Location |
Description of Withering Event |
Notes |
| 19th September 1916- 1th December 1916 |
Bitola (Monastir), Macedonia |
An estimated over 10000 Allied soldiers died from poisoning. It is inferred that they most likely came into contact with SCP-XXXX’s venom from a contaminated water supply. It is unknown how many of soldiers of the Central Powers died due to poisonings, however both sides have reported sightings of SCP-XXXX flying around in the night sky. |
It is deduced that the events lead to the eventually Central Powers victory as a result of the depletion of manpower due to sickness for the Allies. |
| 26th February – 11th March 1926 |
Krakow, Poland |
12 people went missing in the Wolski Forest. 5 of them were found dead in withered states. Reports of SCP-XXXX, nicknamed “Bazyliszek” by the locals, began coming in. Many locals, believing it was the legendary Warsaw Basilisk, began hanging mirrors outside of their house to make the Basilisk kill itself with its gaze. One particularly interesting incident was on the 3rd March 1926, when 6 people were found dead in the city. It is inferred that the creature had attacked someone and it’s glare was inadvertently reflected at multiple mirrors. |
“Bazyliszek” is the Polish word for Basilisk. |
| 18 May 1942 |
Ľadový štít, Slovakia |
A Gebirgsjäger platoon went missing. 5 years later, the bodies of the soldiers were found on various parts of the mountain by locals. |
|
| 5th June 1969 |
Svydovets,Polonynian Beskids (Ukrainian SSR, USSR) |
A group of 8 hunters were found dead in the mountains. |
In stark contrast to this incident, there were cases of friendly encounters between the Hutsul people and SCP-XXXX, especially when children are involved. |
| 29th January 1988 – 9th February 1992 |
Pripyat, Ukraine (Ukrainian SSR, USSR) |
7 soldiers and 2 liquidators were found dead in the city. |
The deaths were initially attributed to high levels of radiation. |
| 15th July- 1st October 1995 |
Ozren, Serbia (Yugoslavia) |
An estimated over 250 Serbian soldiers were found dead. Most of the bodies were withered and severely mutilated. 50 were killed in what appeared to be a friendly fire incident, where an artillery unit was supposedly given the order by their commander to stonk a building unbeknownst to them occupied by friendly troops, after receiving a distress call from soldiers claiming they were being pinned down by enemies in the building. |
SCP-XXXX was suspected to be residing in the mountain before the event when reports of strange snake-like sounds were being emitted from the forests. |
| 8th May 2000 |
Fagaras Mountains, Romania |
Over 30 illegal loggers disappeared in the forests and were found dead days later. 4 of the bodies had multiple fractures and massive haemorrhaging, suggesting they had fallen from a very high height. |
Certain zones have become free of loggers due to fear of SCP-XXXX, nicknamed by locals as the “Basilisc” or Basilisk in Romanian. |
| 1st February 2002 |
Moravian-Silesian Region, Czech Republic. |
A local shepherd and his friends who were looking for his missing 4 year old daughter in the forest nearby his home discovered the withered body of Markus Kolář, a traveller in the area. Later that day, the daughter returned home. When asked where she had went, she stated that she was playing with a “dragon”. |
The remains of two previously missing local children was found in Kolář’s cabin. Just as with the case of the Hutsuls, SCP-XXXX has been recorded to have positive interactions with locals of the mountains. |
| 6th May 2007 |
Chernobyl Exclusion Zone, North of the Pripyat, Ukraine. |
A CBRN unit sent to investigate the source of gunshots reported coming from the exclusion zone discovered an entire motorised infantry platoon dead. Post mortem reports detail that 3/4 of the bodies were in states consistent with the effects of SCP-XXXX‘s poisoning, whereas the rest had severe lacerations and multiple fractured bones. One of the three BMP2 IFVs was found heavily damaged with the hatch broken open and 14m away from the wreckage. |
|
Addendum 1: Discovery
Sightings were reported in the across Europe throughout the 20th Century, with a majority concentrating in the Carpathians and its surrounding area. It is suspected that SCP-XXXX sightings cover such a large territory due to the creature’s ability to fly quickly at very high altitudes; and being able to crawl in cave systems and dense forests to cover ground undetected. After a period during which sightings stopped, it was later photographed in the Chernobyl Exclusion Zone by soldiers two days after the accident.
SCP-XXXX became a very high priority for The Foundation after Incident-XXXX-1. The Foundation was contacted by [REDACTED] on behalf of the Ukrainian government in 14th July 2007, after the discovery of a mass Withering Event. MTF Beta-7 "Maz Hatters" were deployed to Ukraine and assets in neighbouring countries were kept on high alert due to SCP-XXXX tendency to wander.
SCP-XXXX was discovered in the Polissya hotel in Pripyat by Beta-7 following the radio signal of the missing Ukrainian CBRN team.
The creature managed to escaped and the missing personnel were administered Class-A amnestics.
SCP-XXXX is currently residing in the Carpathian Mountain range where a large scale containment perimeter has been set up. Due to the friendly relationship between the local Hutsuls and SCP-XXXX, they will be allowed to stay in the containment zone.
Addendum 2.1:
During the investigation of a Withering Event, a video camera belonging to one of the victims was discovered. The D-Class who viewed the footage stated he saw the basilisk looking at the camera. No effects were observed.
Slowing down the footage revealed that SCP-XXXX has a set of fully transparent nictitating membranes, which opens up during a visual based attack. Once opened, the creature’s pupils turn a luminescent golden yellow with a slight reddish ring surrounding it while the creature produces a vocalisation similar to the King Cobra’s growling. Once the target has been killed, this third eyelid closes and the eyes return back to normal.
Addendum 2.2:
Despite the discovery that its normal gaze is not lethal, the creature is still considered a major cognito-hazard and the necessary precautions are still needed to be taken. Since the gaze is neutralised as recorded footage, a specially designed set of automated goggles providing a video feed with a 0.1 second delay will be developed using the SCRAMBLE goggles.
FLIGHT LOG
DATE: 25th March 1999
LOCATION: Yugoslavia
The following is the recovered flight recording of an F-117 Night Hawk Callsign: Vega-6.
[BEGIN LOG]
0330: Vega-6 piloted by Lt. [REDACTED] is deployed for a clandestine mission over Yugoslavia. Escort considered redundant as area was already subject to SEAD operations.
0350: Vega-6 enters area. Begins recon.
0405: Target was located, coordinates [REDACTED].
0406: Vega-6 engages target: Drops 1 GBU 27 Paveway III. Vega-6 confirms target has been destroyed.
0407: Vega-6 rtb.
0410: On route, Vega-6 notices a small blip on the radar. Command confirms there are no aircraft detected in the area at the time.
0411: Vega-6 reports he sees a shape moving South East. Shape moves parallel to the aircraft.
0414: Shape begins moving towards Vega-6. Pilot describes a big, dark object approaching at high speed before performing a banking turn and disappears from view. Pilot exclaims, “Holy cow! It’s a dragon!”
0417: Shape has not reappeared. Vega-6 continues rtb.
0419: Aircraft gets impacted hard from the back of the aircraft. Elevators and rudders fail. Plane goes into an uncontrollable spin.
0420: Pilot attempts to eject. “Mayday! Mayday! It hit me! I’ve lost control to the elevators. I don’t think I can rec…..OH GOD!…………”, Screaming is heard before a loud smash is heard, followed by static.
0422: Despite multiple attempts to get a response, command loses contact with Vega-6.
[END LOG]
15 hours later, reports came that a Serb militia patrol discovered the wreckage of Vega-6. MTF Unit Volk-7 infiltrated behind Serbian lines to secure the crash site.
All non-authorised individuals involved were administered amnestics according to their degree of knowledge and involvement.
The incident is later overshadowed by the downing of another F-117 two days later by Serbian SAMs. The latter will be stated to be the first, and all evidence of the former were destroyed or altered.
Analysis of the wreckage shows damage to the back section of the aircraft with the vertical stabilisers being missing from what appears to be “claw” marks. However, the most damage was done to the cockpit, which was a gaping hole aside from some of the avionics and what was left of the canopy. The extent of the damage suggests that a large object had rammed into the cockpit at a high speed.
Pilot presumed K.I.A.
With seven similar recorded incidents of downings occurring nearby the Carpathians, it appears that SCP-XXXX has begun targeting aircraft. Further precautions will be added to its containment procedures.
Addendum 3: Observations in containment
Despite its size, the creature is incredibly agile, being able to move on land, scale up vertical structures, and fly with ease. The creature is primarily quadrupedal however is capable of bipedal locomotion as a means of quickly moving on flat ground and closing the distance between it and its prey.
SCP-XXXX has excellent vision, which helps it see in low-light conditions, and thermal pits on its beak which enable it to sense heat signatures, allowing it to see even in pitch darkness. The entity also possesses acute olfaction.
SCP-XXXX was discovered to have an additional 2 humanoid arms which come out from its body to use for tasks requiring more dexterity. It is unknown how these limbs are concealed in the body.
Examination of feather samples shows that they are covered with minute scales, creating an hard but lightweight protective surface. These scales along with the larger ones covering SCP-XXXX’s body are anomalously durable, impervious to damage from melee weapons and guns up to 30mm in caliber. SCP-XXXX’s scales also possess radar absorbent properties, allowing it to have a disproportionately small Radar Cross Section (RCS) compared to its size.
These findings imply that SCP-XXXX might have adapted to attack aircraft.
It is suggested that blast damage could stun the creature, and large explosions can possibly injure the creature enough to be safely handled or force it to retreat to heal.
The locals have been observed leaving food for the creature as offerings. These include livestock, bryndzaas well as other oily foods.
There has been an increase of arguments between personnel stationed in the mountains Complaints of taunts and misunderstandings are rife.
Addendum 4:
The following is a log of the Research Station 12's research expedition.
Exploration Video Log Transcript
Date: 16/6/2010
Exploration Team: MTF Kappa-2 (Mountain Men)
Subject: SCP-XXXX - Romanian Carpathians
Team Lead: Researcher Florin Nicolescu
Team Members: Agent Rednic, Agent Ciobanu, Agent Willard, D-1347, D-1688
[BEGIN LOG]
Goggle feed shows the men walking in the forest. Researcher Nicolescu is directing the team lead by Agent Rednic to the site from the station's security room.
Rednic: Goggles are operational.
Nicolescu: Everyone else?
Ciobanu: Working.
D-1347: Working.
Willard: Yes. Working fine.
D-1688: Good. They're quite bright.
Nicolescu: It's to help see in the dark, D-1688. Your eyes will adjust.
They continue walking until they reach a clearing. The carcass of a Red deer can be seen.
Ciobanu: We're at the spot. Coast is clear.
Nicolescu: Alright, you've been briefed on what to look for.
Ciobanu: Yes…yes. Feathers, scales, and shit.
Nicolescu: I suggest a little more clarity.
Ciobanu: Sorry. [Pauses] What's that word for shi-
D-1347: Faeces.
Ciobanu: (to D-1347) He's talking to me, buddy. Get to work! (whispering to Nicolescu])Yeahhhh, that.
Willard: Man you got schooled by a D.
Nicolescu: (Muffled giggling) Yes, collect the samples and return to base. Be wary of venom residue. Collect samples of that if discovered.
The D-class begin collecting samples.
Rednic: I think we should be worried about more than just venom.
Nicolescu: We're looking at the cameras. We've had the locals keep SCP-XXXX occupied far away with food. You'll have enough time.
Rednic: I hope so. I find it strange how they manage to keep it tame towards them.
D-1688: Well I'd be if I was getting free food. And that delicious.
D-1347: Hehe. I second that!
Ciobanu: Alright guys. Let's get the stuff.
D-1347: We are.
Rednic: That's true, the explanation for providing it caught my attention when I spoke with them.
Nicolescu: Hmm? What was it?
Rednic: Well among the offerings and peace keeping stuff, they mentioned, I'm not sure if I mistranslated this, fuel.
Nicolescu: Fuel?
Ciobanu: That's a weird way to say food.
Rednic: That's why I'm not sure. You guys speak the language.
Nicolescu: I'll take note of it and check it out. D-1347, have the samples been collected.
D-1347: Almost done. Got 4 feathers. Some scales, And blood samples from the carcass.. Just packing it.
Ciobanu: Well hurry up! We can't stay for long.
D-1688: Alright! Alright! We're done.
The D-class get up
Nicolescu: Good. Head back to base.
Rednic: Yes Sir.
The men begin making their way back. During the walk, D-1688 trips on a branch
D-1688: Shit.
Ciobanu: Watch your step D-1688. These are valuable samples.
D-1688: Ok! Ok!
Just as they continue walking, Agent Ciobanu stops.
Ciobanu: What did you say to me?
D-1688: What?
Ciobanu: Did you just call me a bitch!?
D-1688: N-No I didn't.
Nicolescu: Ciobanu, no one said anything.
Ciobanu: (Pauses)Ok. Go.
The men continue walking.
Ciobanu: (Points his gun at D-1688) Enough with this D-1688! Stop calling me that!
Willard: Ciobanu, calm down, we'll deal with him at base.
Agent Rednic and the D-classes turn to look at Ciobanu
D-1688: Look it didn…Woah! Calm down!
D-1347: What the hell are you on? No one said shit!
Rednic: Ciobanu stand down.
Ciobanu: This guy has been saying insults under his breath for the past two minutes. How can you not hear it?
D-1347: I'm right next to him. He said nothing!
Ciobanu: Bullshit!(Turns to Agent Willard.) You heard it too, right?
Willard: Yes. Come on D-1688. Just apologise.
The D-class and Agent Ciobanu begin arguing
Nicolescu: Everyone calm down! I repeat. Calm down. Ciobanu, I promise you no-one said anything.
D-1347: Exactly. Stop pointing-
Nicolescu: D-1347, refrain from making comments or you will face disciplinary action. And Ciobanu please lower your wea-Oh dear.
Rednic: What? What's wrong?
Nicolescu: (Away from the mic) I need eyes on it now. Check every camera.
Willard: What's going on? Shut up guys!
Rednic: Sir! What is happening?
(The men stop arguing and look at Agent Rednic)
Nicolescu: (Back to mic) Get back to base as quickly as you can, SCP-XXXX destroyed the camera, we lost foot-
(Speaking can be heard in the background)
Rednic: Affirmative. Hurry up guys, we have to go. Haul ass!
(The men begin running. D-1347's footage shows movement in the trees)
D-1347: What is that?
Nicolescu: SCP-XXXX has been spotted nearby your area. Recovery team is being prepped.
Rednic: Noted we're getti-
(Screaming can be heard from behind Rednic. The men turn to see Ciobanu writhing on the ground. Venom is seen being sprayed onto him by SCP-XXXX from the foliage.)
D-1347: Oh! What the fuck!
Ciobanu: AHHHHHH! AHH! AH FU- A-E-(incoherent sounds)
Willard: Fire! Fire!
Rednic: (Hands a pistol to D-1688) Take it! Go!
The Agents open fire while the D-class run with the samples. The creatures rushes forward and slashes Willard with its forelimb. It then hits Rednic with it's tail.
Rednic: AHH! My leg. Shit.(Pulls the pin-off some grenades.) Let's go you feathery bastard.
Agent Rednic's footage shows SCP-XXXX looking at him before quickly crawling away.
D-1347: Come on man! Le-
D-1347 and D-1688 get knocked over and they tumble down the slope. D-1688's goggles hit a rock and the footage cuts. D-1347 falls onto flat ground. His footage is now blurry. An explosion is heard.
Nicolescu: K-2-R12. Kappa-2-R12. Is anyone still alive?
(D-1347's footage begins moving.)
D-1347:(Grunts and coughs) I'm alive. Damn! My back! Myk. Where are you man?
Nicolescu: I'm sorry. He's dead. Get up, you need to get out of there.
D-1347: Myk. Oh fuck! He had a wife.
Nicolescu: D-1347 you need to-
(SCP-XXXX can be heard shrieking in the distance)
D-1347: Oh shit…shit!
D-1347 runs into a nearby crevice.
D-1347:The goggles! The goggles…they're cracked. What should I do!?
Trees can be heard rustling in background.
Nicolescu: [In Romanian] Daniel! Close your fucking eyes! Now!
D-1347 can be seen curled up in the crevice. The sounds of rocks crunching can be heard above. SCP-XXXX descends down the slope slowly. It crawls onto the ledge 15 metres from D-1347's location. It looks around and begins hissing.
Nicolescu: Do. Not. Move.
SCP-XXXX stands on its hindlegs, seeming to scan its environment. Its tongue flicks out. It turns its head in the direction of D-1347
Nicolescu: Oh no. No…no…no.
D-1347: [In Romanian] Wh-What's goin-
Nicolescu: [In Romanian] Shut your mouth!
SCP-XXXX stealthily crawls towards that direction. It is now 3 meters from the hidden D-class. D-1347's suppressed breathing can be heard increasing.
SCP-XXXX's neck turns the bend. It is seen staring directly at D-1347. It's low-pitched breathing is heard.
D-1347:(Muffled crying) Ma…mama.
SCP-XXXX opens its beak. Just as it goes to fully turn the bend, it is hit multiple times in the side of the head as gunfire rings out from the trees. SCP-XXXX turns to the source of the firing. It shrieks and charges at the shooter.
Nicolescu: Run! Now!
D-1347's instantly gets up and sprints into the forest. As he runs, he turns briefly to see the commotion. An orange figure is seen between the gunflashes before the creature flies into it.
After several minutes of running and Researcher Nicolescu giving him directions, D-1347 makes it to the research station.
Nicolescu: Yes! (Turns to other personnel.) Open the door!
The door to the station opens to see 2 guards along with Nicolescu. The man runs into the building as gunfire is heard behind him and the door slams shut. D-1347 collapses to the floor.
Nicolescu: You alright?!
D-1347: (Panting) I think so. Fucking hell.
Vocalisations are heard and SCP-XXXX is seen flying off from a window.
[END LOG]
RS-12 reported the situation and defences on the ground were kept on standby.
Addendum 5:
SCP-XXXX breached it's containment perimeter in Romania. A squadron of fighters from the nearest airbase was deployed. Despite the loss of two fighters, the combined air and ground defences were successful in downing the creature.
Personnel at the scene reported that all vegetation surrounding the creature began to wither, and a sickening odour was detected. One of the agents went close to SCP-XXXX and suddenly collapsed. He was diagnosed later with blood poisoning akin to the symptoms of radiation poisoning. MTF Beta-7 "Maz-Hatters" were immediately called to the scene.
It was discovered that SCP-XXXX's blood was extremely toxic. Despite this, the creature was confirmed dead and the body was taken for autopsy.
However, shortly after the killing of the creature, multiple Withering Events occurred consecutively at Foundation research stations across the Carpathians.
Footage showed multiple instances of the SCP-XXXX exiting the mountains and attacking Foundation assets throughout the Carpathians and in Pripyat. Several instances were reported breathing fire and razing Foundation vehicles.
Addendum 6:
Autopsy Report
Deceased: SCP-XXXX-1
Age: Adult⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀Length: 765 cm
Sex: Male ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀Weight: 260 kg
Examination
- Body in relatively good condition, due to isolation in the cave decaying process was delayed
- Body parts from the waist down are missing, colon slightly hanging out. Right forearm also missing
- Eyes open, brown iris slightly faded, pupils dilated
- Chalk stripes on the back of the jacket from presumably dragging motions
- Blood around the lips, sign of hemorrhagic shock
Diagnosis
1)Creature poss
2) Two (2) left ribs broken.
3) Head possess serpent eyes. Peeling back the third membrane showed. Opening the beak revealed a pair of hinged fangs and four rows of sharp, backwards curving teeth. Presence of a Jacobsin's Organ would have significantly improved olfaction.
4) Stomach contained several half digested bones and meat. The acid was measured to have a pH of 0.5. Above it is an organ resembling proventriculus, containing flammable stomach oil in a manner similar to the Fulmar.
5) Torso possess folds of extra skin. Opening these revealed two reptilian-humanoid arms. Hands posses 5 digits and opposable thumbs. On the underside of the right forearm was
a tattooed word, reading: "Dragan".
Summary
Based on the distinctiveness of the features, it is highly unlikely that this creature are a result of natural evolution. This level of adaptation is only possible via engineering.
Cause of death
Exsanguination
The Foundation would later receive information from Researcher Nicolescu and D-1347, who had survived the basilisks' attack on RS-12.
Due to the nature of the encounter, statements from SCP-XXXX were reenacted by the two personnel.
Log Transcript
The recording takes place around an hour after the downing of the SCP-XXXX instance. Research Station-12 was attacked by multiple instances of the creatures.
[BEGIN LOG]
Researcher Nicolescu and D-1347 are holed up in the security room.
D-1347: With all due respect I thought you had…like…the cavalry coming.
Nicolescu: It will probably take a while. The situation is a little dire out there.
D-1347: Just a "little dire". Come on Sir! One shredded the place and now there's God knows how many!
Nicolescu: Look I'm trying to get help. Pissing ourselves again is not going to help.
D-1347: Sure, but we only have rifles and a pistol against fu-
Nicolescu: (Holds up his index finger) Shhh!…Shhh. Do you hear that?
D-1347: Hear what?
Nicolescu: Listen.
The two men stay silent. Soft singing can be heard through the speakers.
D-1347: A survivor?
Nicolescu: Who the hell sings in this situation!
Singing gets louder.
D-1347: (Gulps audibly)Tha-That's Mykola's song.
Nicolescu: Pardon?
D-1347: Mykola. D-1688. He sings that at night to help him sleep. Could he-
Nicolescu: Sounds like an old man, I can't see whe-
Nicolescu turns to see D-1347 standing still.
Nicolescu: What's wrong?
D-1347: S-Sir
Nicolescu: Daniel. What's wrong?
D-1347 points at the door camera footage. An SCP-XXXX instance can be seen staring at the camera. It opens it's mouth slightly. A hissing sound can be heard along with the singing male voice.
They look at each other before looking at the door.
Nicolescu: Di- It-It's locked.
D-1347: I don't think that will stop it.
The singing stops.
SCP-XXXX: [In Romanian] Do you see me?
[The conversation is carried out in Romanian.]
(The men remain silent)
SCP-XXXX: I could make myself more visible by joining you in there. I would like to talk.
Nicolescu gestures to D-1347 to train his gun at the door.
Nicolescu: To be clear, we are armed, and backup is on the way.
SCP-XXXX: I think your backup is being eaten at the moment.
Nicolescu: (Pauses)
SCP-XXXX: May I know the owner of this voice?
Nicolescu: (Gulps) Uh-u- My name is Florin Nicolescu. I am a researcher.
SCP-XXXX: Ah! A local. Greetings. And your friend?
Nicolescu: He's local too.
D-1347: Yes. Why are you doing this?
SCP-XXXX: Why? Self-defence.
D-1347: Bullshit! You hunted us! You killed my friend!
SCP-XXXX: Oh! That wasn't me. That was my comrade.
D-1347: So?! You all still attacked us.
SCP-XXXX: You are forcing us into hiding, and thus hindering our efforts. I should hav-
Nicolescu: Wait pardon me. Hold on. What you mean "hindering our efforts"?
SCP-XXXX: You fools. We are here to stop the spread of the dracul. And you're fighting us?
Nicolescu: Drac- You mean the vampires.
SCP-XXXX: What else, doctor?! We have been doing so for years and then you send in aircraft to kill us, and keep us here, while that monstrosity thrives.
Nicolescu: You were killing peopl-
SCP-XXXX: We kill those who impede in our efforts and encroach upon our stronghold. Collateral is expected in the mission. I agree some could have been avoided. On behalf of my kin, I am sorry, but it is all for the greater good.
Nicolescu: Your kin downed a stealth aircraft. And several others.
SCP-XXXX: It's was-(Cocks head)Wait…Stealth?
(The instance produces a vocalisation of a vulture squawking in a manner similar to cackling)
SCP-XXXX: It was trying to stay hidden?! Dragan told us it lit up like a firefly.
D-1347: Who's Dragan?
SCP-XXXX: Huh? Oh that's the one who took it down. And the one who hunted you and…is now sadly dead. That bastard bombed one of our nests, and killed his wife, Elena. We all have names, I am Stefan. So he was understandably mad. He then convinced all of us to be wary of aircraft near our mountains.
Nicolescu: I believe that was accidental. The target was a Serb camp, n-not the nest.
SCP-XXXX: Hmmm…the others will have to be convinced.
Nicolescu: I'm sorry on behalf of our organisation.
SCP-XXXX: Apology accepted. But the fact remains that you are doing a big mistake by impeding our task. We have been forced to move through tunnels and fight underground.
Our numbers are only increasing, and so will the attacks. So I require you to make a deal. You might want a paper.
Researcher Nicolescu gestures to D-1347 to give him a paper. He takes out a pen and starts writing.
Nicolescu: Ready.
SCP-XXXX: We will stop the attacks if your organisation stops attacking and pushing us into captivity. We both have a common enemy, so it would be wise to work with each other to vanquish it.
Nicolescu: Done. I will relay the message.
SCP-XXXX: Good. I hope you are wise. Farewell.
The creature crawls out of the station and flies away.
[END LOG]
[When this recording was played to higher-ups, only the two personnel could be heard conversing. It has been realised that SCP-XXXX is capable of telepathic speech.]
The following is a reenactment of the song made by D-1347:
Addendum 6:
The following journal was provided to Foundation personnel together with a Shepard's axe by several village elders. This excerpt is translated from Rusyn for convinience.
To whomever this may concern… we did it. We created something that can keep back the dracul, the monsters in the night.
Our fate was in question. As much we loved the Grand Karcisist and his beliefs, we could not stand by as our fellow people are slaughtered to feed this…monstrosity. I do not care what is thought of us. No loving God will allow and even demand the blood of our loved ones. We made the fateful decision upon learning that the Mother is spreading. We will not allow others to befall the same fate as our country. So we left to the mountains to create something to stop this, in the only way we could.
To protect us from the beasts, we looked to the legends of old. And there we found our answer:
The Basilisk.
A creature which destroys life with its mere gaze and potent venom. We engineered our creation in its image. We travelled far and wide to collect samples for traits which would help it in combating the vampires. Lammergeier for aerial prowess and digestive abilities. Hamadryad for it piercing stare and, as well as multiple venomous creatures, for toxicity. We even spliced it with our own to give it awareness and ability to speak, and soon names.
And they have proven themselves. We must have hurt the beast as the earth shook. Quite a few times actually.
The basilisks have also begun mating and later laying eggs. We were overjoyed. We allowed them to spread throughout the mountains and make nests. Soon we would have an armada to rid this land of the beast.
Addendum 7:
A truce has been made with SCP-XXXX. The Foundation will allow them to inhabit the Carpathians to serve as a defence against SCP-2191 activity. Plans are being made.
The use of SCP-XXXX''s venom is being considered to neutralise Sarkic anomalies.