SCP-7591


: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 > * {
    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.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!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 { 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)); }
}
avaliação: +1+x

por PlaguePJP
Traduzido por Sr Editor

Item nº: 7591
Nível1
Classe de Contenção:
pendente
Classe Secundária:
{$secondary-class}
Classe de Disrupção:
{$disruption-class}
Classe de Risco:
{$risk-class}

Procedimentos Especiais de Contenção: N/A

Descrição: SCP-7591 é um método de assassinado usado por Pesquisador Alex Thorley em pelo menos uma pessoa. Por natureza, assassinatos usado SCP-7591 são incapazes de ser confirmados, qualquer evidência física é completamente apagada da realidade atual. Isso inclui uma arma, o falecido, vestígios de DNA e outras informações que levariam à confirmação do assassinato.

Apesar da falta de evidências, aqueles que encontrarem uma pessoa que usou SCP-7591 invariavelmente se tornarão conscientes de que um assassinato ocorreu e que o usuário de SCP-7591 é responsável.

Adendo 7591.1: Investigação

Em 24 de Dezembro de 2019, Alex Thorley foi transferido para o Sítio-322 como parte de uma pesquisa investigativa não relacionada. Durante esse período, SCP-7591 foi criado ou descoberto em segredo por Thorley, que o usou no mesmo dia.

TRANSCRIÇÃO


«INICIO DO REGISTRO»

É dia de pizza, então a cafeteria está muito lotada.

Hoover: Alex Thorley matou alguém.

Schantz: Eu sabia!

Hoover: Shhhhh! Cristo, Neil. Não chame atenção para nós.

Schantz: Todos sabemos que ele matou alguém.

Kline: Sim, é bem claro.

Schantz: Alex Thorley matou um cara.

Kline: Alex Thorley matou um cara.

De outra mesa, Doutor Marley Mooney se junta a conversa.

Mooney: Vocês estão conversando sobre Thorley?

Hoover: Sim, nós estamos.

Mooney: Ele definitivamente matou alguém.

Schantz: Cem por cento.

Mooney: Gostaria de saber como? Como você pode ser tão ruim em matar alguém que todos conhecem?

Quando estava passando, Pesquisador Coix intervém.

Coix: Vocês estão conversando sobre Alex Thorley ter matado alguém?

Hoover: Sim.

Mooney: Sim.

Schantz: Sim.

Kline: Sim.

Coix: Beleza.

Coix sai, picando um donut como ele faz. O resto dos convidados da cafeteria começam a discutir as maquinações das ações assassinas de Thorley.


Diretor Lague e SCP-5595 entram na cafeteria e manobram para a fila do buffet.

Lague: Eu não preciso tolerar isso de você.

SCP-5595: COMO VOCÊ TOLERA UM ASSASSINO.

Lague: Eu disse para você calar a boca.

SCP-5595: OH, VOCÊ ESTÁ ENCOBRINDO ISSO AGORA, É? COP. COP. COP.

Lague: Estamos fazendo uma revisão interna.

SCP-5595: VOCÊS OUVIRAM ISSO? ELE DISSE ISSO. COP. COP. RIR DO PORCO.

Lague: Não posso demitir alguém sem provas.

SCP-5595: TODOS NÓS SABEMOS QUE ALEX THORLEY MATOU UM CARA.

Lague: Fazer isso maior do que é não está ajudando ninguém.

SCP-5595: QUER VER MAIOR?

SCP-5595 vira para a cafeteria.

SCP-5595: EI TODO MUNDO, ALEX THORLEY MATOU UM CARA.

Toda a cafeteria responde em uníssono.

Hospedes da cafeteria: Nós sabemos.

«FIM DO REGISTRO»

Após a pressão sobre a alta administração do Sítio-322, Pesquisador Thorley foi convidado a discutir essas acusações com o Diretor Lague.

TRANSCRIÇÃO


«INICIO DO REGISTRO»

Lague: Você já teve pensamentos violentos?

Thorley: Eu suponho.

Lague: Com que frequência?

Thorley: Eu deveria contar?

Lague: Em média.

Thorley: Raramente.

Lague: Já agiu de acordo com eles?

Thorley: Não.

Lague: Na infância. Você já fez a coisa da lupa de formiga?

Thorley: Não.

Lague: Você se consideraria uma pessoa temperamental?

Thorley: Eu não sei. Provavelmente não.

Lague: Filme favorito?

Thorley: Que?

Lague: Cristo, me dê uma pista. Eu tenho lidado com isso o dia todo e quero ir para casa. Você matou alguém?

Thorley: Não…?

Lague: Porque todo mundo acha isso?

Thorley: Eu não sei.

Lague: Se eu executar varreduras inteiras de suas atribuições de moradia nos últimos dez anos, isso o preocuparia?

Thorley: Eu devo me preocupar?

Lague: Você me diz.

Thorley: Não.

Lague suspira.

Lague: Ok, obrigado, Alex.

Thorley: Claro.

«FIM DO REGISTRO»

Adendo 7591.2: Transferência

Em 25 de dezembro de 2019, à medida que se tornava cada vez mais claro que Thorley realmente havia assassinado alguém, apesar da falta de evidências, ele foi forçado a se transferir para outro Sítio para evitar problemas de produtividade em todo o Sítio-322. Thorley foi instruído a estar pronto para o transporte até o final do dia 25. Nessa data, teve lugar o seguinte evento:

TRANSCRIÇÃO


«INICIO DO REGISTRO»

Thorley começa a embalar os pequenos itens que eles têm, colocando seu laptop de trabalho, cadernos, pedaços de papel soltos e um cubo mágico em uma pequena bolsa de ombro.

Thorley vai buscar suas roupas no armário do quarto. Quando eles abrem a porta, um corpo ensanguentado cai de cara primeiro. Thorley fica claramente assustado e corre para o extremo oposto da sala.

Lentamente, Thorley se aproxima do corpo, pegando seu braço e rolando-o, revelando que o corpo pertence a Alex Thorley.

Thorley olha para o cadáver dele enquanto ele parecem se acalmar.

Thorley recupera seu telefone e disca um número de três dígitos.

Thorley: Ei.

[…]

Thorley: Aconteceu de novo.

[…]

Thorley: No armário dessa vez.

[…]

Thorley: É.

[…]

Thorley: Pior.

[…]

Thorley: Todo mundo. O Sítio inteiro.

[…]

Thorley: Não. Eu vou— Por favor. Não.

[…]

Ele suspira.

Thorley: Eu vou fazer isso.

Thorley recupera um saco de lixo do carrinho de um zelador não supervisionado.

Thorley coloca seu corpo mutilado no saco de lixo, em seguida, prende o saco de lixo em um grande saco de pano e o coloca sobre o ombro, quase se desequilibrando.

Ele espreitam a cabeça para fora da porta, embaralham para frente e para trás em seu quarto, em seguida, rapidamente sai do Sítio-322.

«FIM DO REGISTRO»


Salvo indicação em contrário, o conteúdo desta página é licenciado sob Creative Commons Attribution-ShareAlike 3.0 License