Kanapes
: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)); }
}

The Sands of an Novice Jesuit

Item#: XXXX
Level3
Containment Class:
euclid
Secondary Class:
none
Disruption Class:
vlam
Risk Class:
caution


≃ Special Containment Procedures

[Paragraphs explaining the procedures]


≃ Description

SCP-XXXX Is an "Sand Humanoid" Entity Measuring an observable amount of 1.77~ meters height, bearing a strong resemblance of a Typical depiction of an Spanish conquistador which Lacks two human facial components, Being these a Mouth and Recognizable eyes. meanwhile others facial components such as a "Nose" and a "Bushy Beard" can be Easily recognized and associated.
As mentioned beforehand, the entity appearance is of a Tall Male Conquistador Foot Soldier which "wears" a Typical Spanish-Style Armor whose Recognizable Parts consist on; Breastplate, arms, leg greaves and a metal overlapping plates skirt, along a Morion-style Helmet.

JesuitDepictionFull

Depiction of SCP-XXXX, Made by an anonymous Artist, circa 1790. recovered from The X Y Museum, Spain.

It is to be noted that the Entity Entire body is Composed of a mixture of seemingly fine Black sands which has been observed to be Intermittent between The Solid and Watery State of matter, Meanwhile the entity's entire body has been observed to also contain Small Shiny minerals and tiny fragments of Shiny Minerals that flow through and out of the Insides of the Body, Arms, Head and legs of the Entity, these Minerals are often seen flowing in response to the Movements Made by the entity in question.

In Addition to all of above, SCP-XXXX Has Showed the Capability of Manifesting a slender, sharply-pointed two-edged Bladed Sword onto it's hand as well. The Sword Appearance has been identified as an Rapier-Style sword who shares the same materials composition as SCP-XXXX's Body. Besides this, it also been observed that the entity in question can also Extract a Small "Coin Purse" coming from his lower back side, more accurately, the Gluteus Medius Area. This Object has been observed to be formed of the same Material Type as the Local Algae and Pacific Ocean Algae. More accurately due to his Bright red color,and in unusual cases, dim. The Rhodophyta Type.

It is currently unknown if this "Coin Purse" is of any relevant use to SCP-XXXX or if it's being carried or formed by SCP-XXXX.


≃ Activity, Area of Interest and Cycle

Beachsidecut
SurveillanceLighthouse
SCP-XXXX Area of interest, Designed Zone-A.

SCP-XXXX's Main Point of Apparition and Subsequent Activities Occurs Yearly during the month of August on the South-West Beach-portion of the small Chilean island Known as -Colloquially and formally- Mocha Island, Located west of the coast of the Arauco Province (Bío Bío, VIII Region) in the Country of Chile of the South-American Continent.

SCP-XXXX Manifestation -As mentioned before- occur once a year in the Month of August, randomly selecting a set of 4 random Days of a Single week of the given month. These selections -and subsequent SCP-XXXX Manifestation- have been documented to happen only in relation to the Day's General Temperature, opting to appear only on Cold days with a general temperature of a Minimum 8º Celsius and a maximum of 13º Celsius. The State of the weather and Sea level doesn't seem to influence these selections, as far as recent observations, and as such, has been discarded until further research can make a direct correlation between these and the Selected days.

Once this criteria is met and SCP-XXXX apparition have occurred on the island's beach. SCP-XXXX Will manifest into the island and begin to make a Journey towards the island Forest. This "Journey" and Posterior activities that SCP-XXXX undergo have been documented after Reiterated observations, as part of SCP-XXXX Active Phase.


≃ "Initial discovery" and Recorded Recovery

The First Activities and Interactions Suspected and Considered to be of SCP-XXXX's work in this location as an Active Entity, have been described and formally documented to have taken place since the 19th (nineteenth) century onto our present day,


≃ Experimentation, Testing Logs

 

Testing Log Foreword

Due to the reiterated behavior and interactions that SCP-XXXX has made with it's environment in the last couple of decades in a Annual routine taking place on a set of four (4) random days of a week. and to an extend, being considered as an Ancient urban legend of sorts by the local and nearby continental populations. It has been considered that SCP-XXXX is not only a sentient entity, but a entity with limited or complete Sentience.
In order to understand this hypothesis, a couple of experiments has been Proposed to explore the extends of it's thought-to-be sapient state and interactions with live subjects.
 
The records have been Annexed in the following document.

Test Nº Subject Instructions Given Result Additional Notes
XX/XX D-7932 D-7932 is instructed to approach SCP-XXXX and sit in front of it during Phase Nº1 D-7932 slowly approaches the entity while he's visibly intimidated by it and proceeds to sit in front of it. during the initial process, SCP-XXXX Doesn't react to him until D-Class sits, at which point the entity stares at the subject for a brief moment before extending it's arm towards him. Subject responds by quickly raising up and getting away from it, from which the entity only stares momentarily, before heading towards a nearby trail. Initiating Phase Nº2 N/A
XX/XX D-7943 D-7943 is instructed to approach SCP-XXXX during it's Phase Nº1 to attempt to establish vocal communication with the entity. D-7943 Approaches SCP-XXXX. Same behavior from Test Nº1 ensues until D-7943 vocally communicate with it, from which point SCP-XXXX is observed to apparently Listen carefully to her, while leaning on it's rapier. No Further movements are made by the entity during the whole interaction until D-7943 retires from the Area. Moment that SCP-XXXX continues with it's Travel. From our perspective, we could see that it showed some interest into our Subject, now. The tricky part is to decipher if this "Interaction" actually meant something, or if it was only looking at her instead of understanding what she was saying. ~Researcher Cortéz
XX/XX D-7951 Replica of Test NºX, Additional debrief is given. D-7951 slowly approaches SCP-XXXX. The entity takes note of the subject's presence and it's equipment, Instantly assuming a Guard Stance while tracking D-7951's Movements. Subject attempts to attack SCP-XXXX, Who in retaliation Dodges Subject's attack proceeding to grab him tightly by the wrist at the same that it disarms and throws him into the ground swiftly, Holding him in place by putting it's "Rapier" onto his chest. No movements between the entity and subject is recorded for a duration of 1 minute, time that SCP-XXXX Let's D-7951 go while kicking the Subject's knife out of his reach. Foundation Staff Indicates D-7951 to leave the area. Time that the entity resumes his travel onto Phase Nº2. After this test, The Sapient designation was given to SCP-XXXX in addition to it's Sentient Designation.
XX/XX D-8275 D-8275 was supplied with a Italian-Style Rapier Sword in addition to a Low-standard "Protection Armor" and instructed to Attack SCP-XXXX. D-8275 approaches SCP-XXXX and Starts making gestures with his sword at it, Seemingly mocking it. Resulting in SCP-XXXX Assuming a Guard Stance while slowly closing distance towards him. A Couple of Sword parries and smalls cuts are exchanged between the two of them for a brief time before D-8275 over-extends a Sword thrust, exposing himself. To which SCP-XXXX retaliates in Inquartata Attack as it Dodges the thrust, piercing D-8275 through his Chest and violently falling to the ground, slowly bleeding before expiring. After the Subject's expiration, SCP-XXXX can be seen "cleaning" it's rapier before returning to his original routine. This shines the Entity's Ability as a tactician and a Fine Swordsman, Since D-8275 wasn't just a simple convict that happened to be requested here, he was a inmate sentenced to death due to his Cold blooded Murders related to swords… ~Researcher Goméz
XX/XX D-7983 D-7983 was Supplied with a Standard recording equipment in order to record SCP-XXXX in close proximity during it's Phases Nº2, 3 and 4. SCP-XXXX Didn't show any type of hostility towards D-7983 during the traject of Phase Nº2. Changing completely once it commenced it's Phase Nº3, in which point it started to show great hostility towards the subject. Subject is indicated to retire from the area. We Need to Learn More About Phase 3, I will retake the same experiment when the occasion arises. -Researcher XXXXX
XX/XX D-7983 Replica of the previous experiment, Additional Instruction to not leave the area is given. [DATA EXPUNGED] N/A

Afterword: Hi mom.

https://youtu.be/GRYbydPFIF4?t=311