vohzd.com
SCP-7028

The Poor Sisters of Divine Restoration

Series
8
Size
41.5 KB
Views
0

SCP-7028

Byㅤ AriadnesThread

Published on 28 Sep 2022 19:45

[[iftags +component]]

This is a component that animates the ACS header upon loading.

How to use:

Put this in anywhere in the article:

[[include :scp-wiki:component:acs-animation]]

And you're done!

Example: SCP-5935


Note:

- Two variables, --timeScale and --timeDelay, control the timings of the animation. For example:

[[module CSS]]
:root {
--timeScale: 2;
--timeDelay: 0.5s;
}
[[/module]]

--timeScale slows down the entire animation by a factor of 2, and --timeDelay delays the starting point of the animation by half a second. Default values are 1 and 0s, respectively.

To change the default values, put the above after the [[include]]. --timeDelay is recommended if the ACS isn't the first content element, or you're using it in conjunction with other animation modules (a la Fade In.)

- Likely incompatible with other types of ACS headers*.

*To use with PeppersGhost's ACS Lite, add the following patch after the [[include]]:

[[module CSS]]
/-- ACS Lite Animation Compatibility Patch --/
.anom-bar > .bottom-box::before { display: none; }
.anom-bar > .bottom-box { box-shadow: none!important; }
div.diamond-part { clip-path: none; animation: none; box-shadow: none!important; }
@media (max-width: 480px) {
div.top-right-box { clip-path: polygon(0% -30%, 100% -30%, 100% 130%, 0% 130%); }
}
[[/module]]

- Inspired by the works of AnAnomalousWriter.


Source Code:

:root {
--timeScale: 1;
--timeDelay: 0s;
}

/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > div.bottom-box { box-shadow: none; position: relative; }
.anom-bar > div.bottom-box::before {
position: absolute;
content: " ";
width: 100%;
height: 0.5rem;
bottom: 100%; left: 0;
background-color: rgb(var(--swatch-menubg-black-color, 12, 12, 12));
}

/* 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 > * {
white-space: nowrap;
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.65s * var(--timeScale));
animation-delay: calc(0.55s * 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;
}
.bottom-box > div.diamond-part {
box-shadow: none;
}
.bottom-box > div.diamond-part::before {
content: "";
position: absolute;
width: 0.5rem; height: 100%;
top: 0; right: 100%;
background-color: rgb(var(--swatch-menubg-black-color, 12, 12, 12));
animation-name: diamondBorder;
animation-duration: calc(0.475s * var(--timeScale));
animation-delay: calc(0.775s * var(--timeScale) + var(--timeDelay));
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(.28,.72,.55,.91);
animation-fill-mode: backwards;
}

/* MOBILE QUERY */
@media (max-width: 480px ) {
.anom-bar > div.bottom-box { position: initial; }
.anom-bar > div.bottom-box::before { bottom: initial; top: 40vw; }
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 screen and (prefers-reduced-motion: reduce) {
div.anom-bar-container { --timeScale: 0!important; }
}

/-------------------------/

@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; width: 1%; }
to { opacity: 1; width: calc(100% - 0.25rem); }
}
@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 { height: 0; }
to { height: 100%; }
}

[[/iftags]]

Man has killed fellow man for millennia because they believed that God had told them to.

Imagine how much worse it would be if they had proof they were right.

.
23

Item#: SCP-7028

Level4

Containment Class:

euclid

Secondary Class:

none

Disruption Class:

keneq

Risk Class:

caution

link to memo


From: Site Director Zala Abebe
To: Staff (ALL)
Subject: RE:Incident 7028-78


After the latest attempted breach of the Reliquary, I would like to take this moment to address the most common question of anyone new to Site-89 as this moment should serve as an important object lesson to the answer. “Why do we lock down the books 7028 creates to such a degree? Why the intense security and secrecy? Why would anyone care?” After today, I hope it is understood that many do care.

What we protect at this Site is at its core information; information that people can and will kill to get their hands on. Religious, cultural, or otherwise, 7028 creates information that has been lost to humanity. These pages might seem as niche academic interests to most, but in some cases what can be confirmed in these documents would overturn consensus reality in an instant or even destroy the Veil entirely. Man has killed fellow man for millennia because they believed that God had told them to.

Imagine how much worse it would be if they had proof they were right.

Secure. Contain. Protect.
Director Abebe


Biet Giyorgis, Lalibela, Ethiopia

Photo with Orthodox pilgrim in foreground. SCP-7028-1 is not visible.

Special Containment Procedures: Due to the historical importance of SCP-7028’s location and designation as a World Heritage Site, containment is focused upon restricting access to SCP-7028-1 as well as ensuring that any documents which make their way into public circulation are confiscated and secured at Site-89 for further research and/or destruction if deemed necessary. Successful infiltration of the Zamani Project by Foundation personnel has erased the appropriate access tunnel from public records; however due to the apparent cognitohazardous effect created by SCP-7028-1, regular patrols amongst the tourists, pilgrims, and civilian researchers to ensure redirection as well as information signs with strong countermemes throughout the complex will be required. Class C amnestics are to be administered to any visitor who cannot be easily redirected from attempting to access SCP-7028-1 or at the Site Director’s discretion.

Embedded agents in various libraries in Europe, Asia, and Africa.Specifically the British Library, Bibliothèque nationale de France, the Vatican Secret Archives, The Balme Library (University of Ghana, Accra),, National Library of India, 中国国家图书馆 (National Library of China, Beijing), Российская государственная библиотека (Russian State Library, Moscow), საქართველოს პარლამენტის ეროვნული ბიბლიოთეკა (National Parliamentary Library of Georgia, Tbilisi), and کتابخانه ملی (National Library of Iran, Tehran). will monitor collections directly for SCP-7028-3 instances, as well as smaller collections at nearby universities and historical sites when possible. To date, no documents have been found in libraries located in North or South America, but in order to ensure integrity of the Veil, monthly monitoring major libraries on both continents will be required.

All recovered instances of SCP-7028-3 are to be reviewed through the Department of Tactical Theology's 'Fourteen Holy Helpers' task force, in order to first check the document for cognitohazards, hostile meme corruption, or anomalous properties. After confirmation of the document's anomalous threats, Foundation historians, Department of Tactical Theology, and other researchers will then study the document for possible actionable intelligence regarding various GOIs or connections to other SCP anomalies. All SCP-7028-3 instances are to be stored in a secure reliquary room at Site-89 which will then be monitored twenty-four hours a day. Any unauthorized attempts at access will be met with appropriate force.


Description: SCP-7028 resembles a small medieval scriptorium, although with varied items and details from multiple geographical and chronological points making exact cultural, chronological, or geographical determination impossible. Access is via an anomalous subterranean tunnel designated SCP-7028-1 beneath the Biet Giyorgis (Church of Saint George), Lalibela, Ethiopia. This tunnel terminates with a single dark wooden door with a small square peephole, which is typically covered by a sliding slat of matching wood. On the center of the slat there is a crude carving of what appears to be two snakes comprising an uneven circle. Within the interior of SCP-7028, four scribe’s desks are situated into a square in the middle of the room, each facing the walls with room to walk between the wall and the desk. The walls are made of hewn volcanic tuff matching SCP-7028-1, with a single iron grated window on the wall opposite the door. This window appears to look directly into interstellar space, showing unidentifiable constellations or other astronomical features not mapped within the current Foundation records.

Five humanoid entities inhabit SCP-7028, designated SCP-7028-2α, -2β, -2γ, -2δ, and -2ε, each resembling a human woman of varying racial heritage. Each carry an additional designation which they will use to identify themselves, see Addendum 7028.1 for further details regarding behavior and individual appearances. All five instances are rarely in SCP-7028 at the same time, however it is not clear how these entities are able to leave the scriptorium space as no other entrances or exits are visible besides SCP-7028-1. At least one entity is present at all times, with the exception of ten-minute sessions during the day that match five of the seven Benedictine canonical hours (at the appropriate hour in East Africa Time), specifically Lauds, Prime, Sext, Vespers, and Compline. While empty, the main area of SCP-7028 may be entered and distant chanting is heard, although it does not match any known religious office and is in a language that is as yet to be deciphered. While audio monitoring is possible via remote recording equipment within SCP-7028, to date no successful video footage has been recorded past SCP-7028-1.

Crude wooden shelving has been set against the other wall with various manuscript-making tools and supplies, and completed texts without any apparent ordering or cataloging system. While no locking mechanism exists for the completed manuscripts on the shelving, as was common in some medieval scriptoriums, it is recommended that agents and researchers ask for permission from an SCP-7028-2 entity if present, before taking a book or item for further research. It is worth noting that nothing taken from the room will remain with a person once they exit out of SCP-7028-1 and will reappear upon the shelf or surface they were taken from. The mechanism for this automatic return process is unknown.

During occupied hours, SCP-7028-2 entities can be seen working on manuscripts in a manner of a medieval scribe, using feather pens, simple black or brown ink, and cured animal hide parchment (although the species of animal the materials come from have not been conclusively identified as no objects can be removed for further study). While in the process of inscription, the manuscript will appear to be a nondescript folio covered in simple light brown leather, regardless of what appearance that the resulting SCP-7028-2 instance takes on upon completion. At any given time, there is at least one SCP-7028-2 instance working as scribe with all four desks appearing occupied in roughly 27% of visits by Foundation personnel. The process of inscribing the text within the folio can take anywhere from two months to a full year, depending upon the length of the text. The scribe will continuously work on the manuscript, with the exception of the aforementioned religious offices, ignoring all questions and writing in an unknown language.

Upon completion, the SCP-7028-2 entity will place the manuscript upon a shelf where it will transform over the course of the next five hours into a visually distinct, specific textual work now designated SCP-7028-3. These texts have been found with content ranging from known works by historical personages, religious or fictional texts that have been theorized as having existed by historians and archeologists but never found in complete form, or a previously unknown work, typically associated with one or more world religions or anomalous religious groups. While most of these documents do not differ in meaningful ways from the copies that exist already within known collections (to the extent that the copies are indistinguishable from the originals), the lost and previously unknown documents are often either entirely contradictory to religious or academic understanding of the subject, include definitive mentions of various anomalous Groups of Interest and religions, and would likely result in either Veil disruption or societal unrest, particularly coupled with the instance in 77% of these documents of harmful cognitohazardous messaging designed to inflame the religious or political tendencies of those reading the document and those exposed to the information from a third party, as well as cause the viewer to never question its authenticity.

Seven days after its completion and transformation the book will vanish, no matter where it is placed in SCP-7028 or if observers are present. Of the 231 books completed during the Foundation's monitoring of the site, 187 have reappeared within the collections of major European, Asian, and African public and academic libraries, typically uncatalogued by library staff. See Recovered Item List for further details. The mechanism for this transfer is not understood, and will occur even if the instance is visually monitored at the time of disappearance.


Discovery: It is believed by Foundation archaeologists that the anomaly does not predate the construction of the Biet Giyorgis, however this has not been directly confirmed. Oral tradition places initial discovery by local Ethiopian Orthodox priests after construction of the monolithic structure was completed, typically dated to the twelfth century CE after the conquest of Jerusalem by Saladin. Discovery of SCP-7028-1 resulted in the formation of rudimentary containment procedures by the resident religious authorities, consisting of primarily ensuring that pilgrims to the site were prevented from accessing SCP-7028-1 as well as confiscating and destroying any instances of SCP-7028-3 discovered outside of SCP-7028.

The Foundation became aware of SCP-7028 after an instance of SCP-7028-3 (specifically SCP-7028-3a) was discovered in the collections of the Bibliothèque nationale de France by a graduate student from the Sorbonne doing research for their dissertation on 6/18/1947. The discovery generated considerable excitement within both the academic and Jewish communities as initial analysis by codicology and paleography experts indicated the artifact's apparent authenticity. An article written by one of the archivists in the BNF Manuscripts Room in a trade newsletter about the improbability of finding an overlooked copy of a famously 'lost' document in a major library was picked up by JOVE (Joint Occult Venture of Europe) who contacted the Foundation for assistance in determining the source of the document. Over the next four years, three more instances of SCP-7028-3 were found in various libraries in Europe and Asia.

The connection to SCP-7028 was established in 1951 after the diaries of German explorer Freidrich Rohlfs (who was the first documented European visitor to the Labibela Churches) were discovered as an unconfirmed SCP-7028-3 instance in a Taiwan university library. The highly unusual discovery of the document by library staff caught the notice of Foundation assets in the area, and the diary was recovered, detailing the route to SCP-7028-1 and his meeting with an SCP-7028-2 entity and allowing the Foundation to investigate and secure the location. The Foundation then established Site-89 to secure SCP-7028 and other anomalies in the Horn of Africa region.


Partial List of Recovered SCP-7028-3 Instances


For complete list of all Recovered SCP-7028-3 Instances, contact Director Ababe.

Instance: SCP-7028-3a
Title: The Book of the Wars of the Lord (Hebrew: סֵפֶר מִלְחֲמֹת יהוה)
Description: Lost biblical text that is referenced in both the Books of Numbers and Exodus, detailing various campaigns of the Israelites united under Moses and Joshua against the Amorites, Amaleks, and other Canaanite peoples.
Date Recovered: 6/18/1947
Location Recovered: Bibliothèque nationale de France (Paris, France)
Notes: First known document created by SCP-7028. Confirmation was made of its construction by SCP-7028-3β during a brief interview where the entity refused its return, stating that "this was not the purpose", presumably of SCP-7028. Of note, the work includes several verses dedicated to a violent conflict with the Daevites, containing multiple cognitohazards which compel the reader to prepare for an immediate threat or attack by any means necessary.
Status: Stored within Reliquary 1 at Site-89.

Instance: SCP-7028-3j
Title: Bēowulf
Description: Manuscript appears to be dated to the eighth century, making it a precursor to the Nowell Codex. Includes additional lines about other battles Beowulf waged in his service to Hrothgar and his rule over the Geats.
Date Recovered: 7/15/1951
Notes: Content of the text varies greatly from the Norwell Codex, with a much stronger emphasis on pagan religious elements and little to no mention of Christian worship. Beowulf also has an encounter with beings described as 'terrible, made of metal and shouting praise to their god of the shattered', but there is no further context to definitively associate this to a known GOI.
Status: Stored within Reliquary 5 at Site-89.

Note from Director Abebe: While the Foundation recognizes the historical importance of documents such as SCP-7028-3j, for the sake of Veil integrity these lost literary works must remain contained. The benefit of their 'discovery' by the academic world cannot counterbalance the risk that someone ends up asking the wrong questions about where they're coming from.

Instance: SCP-7028-3y
Title: Guide for Those-Who-Seek-Knowledge
Description: A small jar containing a papyrus scroll (3.5m in length, roughly 35cm in width throughout the roll), written in ancient proto-Hieratic script. The content is a dialogue between two unnamed figures, although one is strongly implied to be Thoth, the ancient Egyptian god of wisdom and learning. The dialogue outlines various ways the gods wield their power as well as specifics as to how, along with animal communication methods, alchemical recipes, and guides to thaumaturgic and ritualistic practices.
Date Recovered: 6/8/1979
Location Recovered: کتابخانه ملی , Tehran, Iran.
Notes: Testing has shown that many of the directions mentioned in these dialogues produce effective results with expected anomalous outcomes.
Status: Stored in Reliquary 5 at Site-89.

Instance: SCP-7028-3bn
Title: The Complete Avesta
Description: Manuscript is written in Avestan or Old Persian in a script no longer used by any modern Arabic populations. The paper and paleography used can date the document to roughly Second or Third Century CE, placing its theoretical creation in the height of the Sassanian Empire. Manuscript contains significantly more content than the K1 manuscript of the Avesta, and could possibly be the theorized 'Sassanian Archetype' of the document. The full history of the teaching of Ahura Mazda to Zoroaster is recounted in the first folio, with the usual place of Alexander the Great's conquest being replaced by an invasion of Sarkic hordes who inflict similar chaos without lasting occupation of Persian lands. The known texts mostly match known versions of the Avesta, but sections of the Vendidad include extensive additions of laws dictating the disposal of human remains as well as other restrictions not present in other versions.
Date Recovered: 3/4/1981
Location Recovered: Bodleian Library, Oxford, United Kingdom.
Notes: ORIA has discovered the existence of this instance through unknown means and has requested its return, or at least the ability to study the text directly..Internal investigations have not shown the presence of infiltrating third parties, an internal security breach, or installation of surveillance technology. O5 Decision is pending.
Status: Stored Reliquary 11 at Site-89.

Instance: SCP-7028-3ej
Title: The Bir of Guru Granth Sahib
Description: Document resembles an illuminated manuscript copy of Adi Granth (see notes) as it was finalized by the tenth guru of the Sikh faith, Guru Gobind Singh. Edition varies slightly from the original manuscript which is held at Gurdwara Thum Sahib, but is embellished with a high degree of artistic design and appears to be dated to the Seventeenth Century CE.
Date Recovered: 3/19/1992
Location Recovered: Hong Kong Central Library.
Notes: This instance was later followed by five related documents, including copies of various hukamnama,.Edicts issued by various Sikh Gurus. documents relating to the Indian Independence effort against the British Empire, and literary works believed lost in the burning of the Sikh Reference Library in 1984 by the Indian Army. This follows a pattern, although inconsistent, of SCP-7028-2 instances as replacements of lost literature or religious documents.
Status: Stored in Reliquary 12 at Site-89.

Instance: SCP-7028-3cz
Title: Star Signals
Description: Hardcover copy of SCP-1425, nearly exactly matching the copy stored at Site-40 (which remains in Foundation custody without any breach of its containment).
Date Recovered: 7/28/2008
Location Recovered: Vatican Secret Archives, Vatican City.
Notes: Testing confirmed that the instance retained the anomalous properties of the original to an equal degree. However, this instance includes an additional appendix added to the end of the book which provides detailed instructions to reverse cognitohazardous infection by the text. These instructions have proven to work roughly 45% of SCP-1425 infection in controlled Foundation testing.
Status: Instance was remanded to O5 Council custody at their request.

Instance: SCP-7028-3fa
Title: Memo on Project Tsarina
Description: Printed document on 8"x11" copy paper outlining a detailed plan of attack against Site-87 Archeological Containment Unit with the express purpose of destruction of SCP-1348. Instance appears to be an internal dossier on a SAPPHIRE raid planned to take place on 10/1/2020.
Date Recovered: 9/21/2019
Location Recovered: საქართველოს პარლამენტის ეროვნული ბიბლიოთეკა, Tbilisi, Georgia.
Notes: Based on the information detailed by the instance as well as informants within SAPPHIRE, a joint operation with the Horizon Initiative's Project Malleus and members of the Foundation's Tactical Theology Division were able to intercept the assault force prior to their arrival at Site-87 and protect SCP-1348 from attack. The day after the incursion, a member of C-1348-A found a small inscription, previously unnoticed on the exterior walls of SCP-1348-03, which translated out of Amharic simply read 'Thank you'.
This marks the first time that a SCP-7028-3 instance showed advanced information, although it should be noted that SAPPHIRE created the dossier several weeks before the planned attack per the document itself, and therefore should not be taken as evidence of precognizance. Per O5 directive, all currently stored and future SCP-7028-2 instances are to be re-examined for any actionable information.
Status: Stored in Reliquary 14 at Site-89.


ADDENDUM 7028.1

Physical Descriptions of SCP-7028-2 Instances


  • SCP-7028-2 General Behavior
  • SCP-7028-2α
  • SCP-7028-2β
  • SCP-7028-2γ
  • SCP-7028-2δ
  • SCP-7028-2ε

As stated earlier, at least one SCP-7028-2 instance is always present within the main part of SCP-7028 with the exception of five apparent religious offices of an unknown provenance. While entities will acknowledge entrants to the interior of SCP-7028 and will nod in permission if asked about further study on a specific SCP-7028-3 instance, it appears that the entities have taken a religious vow of silence and will not answer direct questions. See Interview Log 7028.01 for further information.

Instances of SCP-7028-2 are semi-translucent in appearance, suggesting a degree of incorporeality although collision occurs as expected if any attempt is made to touch one of the entities and they have no difficulty interacting with the physical objects within SCP-7028. Each of the instances do display expected coloration, if slightly muted and are capable of creating sound while walking or attending to various tasks, etc.


Admission Protocol: Visitors are to knock twice at the doorway found at the end of SCP-7028-1 and wait until one of the instances present opens the door, nodding their head twice at the visitor who should then respond in kind. The instance will return to their tasks without speaking to the visitor, but will not impede any investigation of the texts and objects on the shelving around the room..It should be noted that the texts and objects change at unpredictable intervals which, coupled with the inability to remove items from SCP-7028 itself, has made cataloging and further research of these artifacts difficult.

If the visitor attempts to read over whatever text the SCP-7028-2 instance is currently working on, the script will be indecipherable to the reader and the instance will continue to work without offering explanation. All instances except SCP-7028-2γ will bow as the visitor departs the main room via SCP-7028-1.

If the knock is not answered by an instance and the time period matches one of the expected religious offices, visitors may enter SCP-7028 directly, although permission by the Site Director must be issued first. If there is no answer outside the expected religious office hours, the Site Director is to be contacted immediately.

SCP-7028-2α appears to be a human woman, appearing to be roughly 30-40 years of age and of apparent southern European heritage..Note that while SCP-7028-2 instances have distinct appearances, none have aged visibly during the time of Foundation observation. It wears the religious habit of a typical nun of the Poor Clares Order with a black and white wimple and visible devotional scapular made of tooled leather displaying the fivefold design of the Roman Catholic Church attached to a leather cincture at the waist. Of note, they do not wear a visible crucifix or rosary.

Within SCP-7028-2α's apparent order they are referred to by the designation 'Sister Mary Celeste'..This information, as well as the designations of the other SCP-7028-2 instances, were disclosed by SCP-7028-2α prior to Interview 7028.1. SCP-7028-2α speaks with a heavy northern Italian accent but understands English fluently. To date, SCP-7028-2α is the only instance to speak with Foundation personnel See Interview Log 7028.1 for further information.

SCP-7028-2β appears to be a human woman roughly 40 years of age and of apparent southeast Asian heritage wearing a traditional kāṣāya..Buddhist religious garment, specifically the yellow shade of the Mahāsāṃghika order. In addition to the triple robe, they also wear an ornate samakaksika which bears the Eight Auspicious Signs worked in gold thread. Their hair is shaved close to the scalp and they are never seen wearing footwear.

Within SCP-7028-2β's apparent order they are referred to by the designation Ani Chomden. SCP-7028-2β also has a visible tattoo upon their left leg of unknown significance that resembles two snakes in a coiled circle, one solid, one outlined. This tattoo somewhat matches the crude carving on the door found at the end of SCP-7028-1.

SCP-7028-2γ appears to be a human woman, likely twenty years of age and of northern European heritage. Unlike other SCP-7028-2 instances, 2γ wears the white monastic habit of a Mendicant monk rather than nun with her hair clipped short, but not in the traditional tonsure against the scalp. They wear a devotional scapular at their waist with veneration of the Virgin Mary, specifically the Order of the Blessed Virgin Mary of Mercy, and a short sword on the left hip. To date, SCP-7028-2γ has drawn their sword four times, specifically upon visitors to SCP-7028 who do not ask permission before entering, but have yet to injure any Foundation personnel..Oral tradition of the local Ethiopian priests holds that SCP-7028-2γ has killed intruders in the past, but this has not been confirmed.

Within SCP-7028-2γ's apparent order they are referred to by the designation "Sister Vouthon." They are also the SCP-7028-2 instance least likely to be seen working as scribe, but often present within the main structure observing.

SCP-7028-2δ appears to be a human woman of roughly 40 years of apparent Asian heritage. They are dressed in a traditional white jōe no sodegukuri no o.Shinto religious garment, typically worn by priests but adopted by some nuns as well. as well as a black peaked tate-eboshi cap upon their head.

Within SCP-7028-2δ's apparent religious order they are referred to by the designation "Ane Shinnyo." They have been noted to complete the most SCP-7028-3 instances of any of the five SCP-7028-2 entities. They also appear to conduct a ritualistic 'cleansing' of SCP-7028 on a semi-regular timetable which resembles Shinto purification rituals including salt and water, with a dried flowered plant stem place of a more traditional paper wand, which has yet been conclusively identified.

SCP-7028-2ε appears to be a human woman of roughly 50 years of age of apparent African heritage, wearing a dark Άνάλαβος.Traditional Eastern Orthodox religious habit, specifically showing the degree of Grand Schema, typically the highest rank of monastics within Greek Orthodox traditions. as well as the καλυμαύκι headcovering favored by nuns in African sects.

Within SCP-7028-2ε's apparent religious order they are referred to by the designation "Sister Petros". singularly among the SCP-7028-2 instances, they can often be found standing in front of the window which appears to look out into interstellar space and to date are the only instance who has been found within SCP-7028 during one of the five times of religious office.


On 10/10/2019, after the discovery of SCP-7028-3fa and failed raid on SCP-1348, SCP-7028-2α approached Junior Researcher Walker Harwood and requested a meeting with Site Director Abebe. This marks the first time that one of the SCP-7028-2 entities was willing to speak with a Foundation representative. The interview was conducted within the Interior of SCP-7028 with no other Foundation researchers or SCP-7028-2 entities present at the time, although Director Abebe was able to record the conversation via remote transmission to Site-89.

where the black moon may not howl

Interview Log 7028.1


Interviewed: SCP-7028-2α

Interviewer: Site Director Zala Abebe and Junior Researcher Walker Harwood.


<Begin Log, 8:41 p.m. East Africa Time>


Director Abebe: Thank you for agreeing to speak with us, Alpha..This address was agreed upon before the interview by both parties.

SCP-7028-2α : A vow of silence, however earnest in its piety, should not be used to avoid painful truths. I think that we all understand now that it is past time, don't we? Surely you have seen the signs yourselves?

Junior Researcher Harwood: Could you elaborate? Signs of what, exactly?

SCP-7028-2α : The signs of the absence, child. Surely you have watched as the threads of this world have grown ever more frayed? The rules begin to vanish, replaced by chaos in their absence, eating itself until there is nothing remaining.

Harwood mumbles to himself unintelligibly.

Abebe: Walker, not now.

SCP-7028-2α : I suppose that is a valid concern. You deal with so so many who fight the same battle that we are joined to, but do so without care. If you did not choose your allies carefully, you might easily be led astray, as they were.

SCP-7028-2α pauses for a moment, looking intently at both Abebe and Harwood per their notes.

SCP-7028-2α: We were once of your world, until we we were no longer. While full understanding eludes us, we five have moved from shadow to light. You have already learned that there are so many other places besides where you are now, this should not come as any great surprise to you. Nor would you be shocked to find there are forces far greater and far older than than what we currently understand, working in a cosmic dance we can merely guess at. It is not as simple as light versus dark, as well you know.

Abebe: These are truths we are well aware of, yes.

SCP-7028-2α : And that is why it is well past time, Director. You have found many relics from this conflict for generations now, bleeding into your world and you have stood against their threats again and again. You have held the gates closed. You deserve the chance to see beyond the dark.

Abebe: Please. Describe this threat for us.

SCP-7028-2α : I am afraid that is beyond my ability, but not yours. There are worlds beyond the stars that you have managed to glimpse, and even here you have already noticed one of the patterns that will be of aid against what seeks to destroy so completely.

Abebe: We've noticed many patterns, but it seems here that many of these things you create are replacing something which was lost?

SCP-7028-2α : Indeed we are. For every act of obliteration, there is one who acts to preserve. We have been called to resist, and will continue to do so as is our charge.

Harwood: If I can be honest, no you're not. You're just writing books. You're not resisting anything, not really. And you won't give us any straight answers about what's coming. If you could just explain…

SCP-7028-2α interrupts, her tone slightly clipped.

SCP-7028-2α : If you will excuse me, Compline is starting.


<End Log, 8:58 p.m. East Africa Time>


After Researcher Harwood and Site Directer Ababe were asked to leave SCP-7028, the next attempt to speak with SCP-7028-2α was met with silence. No further communication from SCP-7028-2 entities has followed, with the presumption that the vow of silence SCP-7028-2α spoke of during the interview has been resumed. Junior Researcher Harwood has been transferred at his request, pending reassignment.

where the black moon may not howl

More From This Author

AriadnesThread's Works

SCPs

SCP-8131

SCP-6830

SCP-8028

SCP-9028

SCP-7801

SCP-8520

Tales/GoI Formats

I Think I Could Be Brave

Koyaanisqatsi

Ever Burning Brightly

Frollicles (and the Fantabulous Emancipation of One Baba Yaga)

The Virtue of Resilience

Dokein: A Journal for Tactical Theology

Your Place Was Empty

Other

Ariadne's Malibu Dream House (of Leaves)