: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)); } }
Containment Procedures
SCP-6096 is to be contained in Site-77, inside a small, CCTV guarded containment chamber protected by blast doors, with nobody inside the chamber. Inside the chamber is CCTV camera, a small robotic arm and a table, where the machine must be held. Request to interact with the machine must be sent to Dr. Juhon. If requests are approved, four (4) security officers must be stationed at the chamber all times until interaction has ended. Exposing machine sensitive information will result in termination.
In case of a site lockdown or a containment breach, blast doors are to be remain locked for 24 hours, and AIC system is activated. If AIC detects danger nearby, it must send demolition request to Dr. Juhon. If request is approved, machine is set to be disassembled, using a small robotic arm.
Description
SCP-6096 resembles an old Erika 9 typewriter, what is confirmed to be sentient.
When paper sheet is put in to paper table1, machine may starts to self-type to paper. It usually tries to initiate a conversation. The machine has been described as happy, friendly and knowledge seeking, while it may change it's options and thoughts and starts to seek vengeance on everybody, who doesn't agree with him. Machine can also lock it's keyboard, what makes typing impossible.
Testing Logs
The following logs were conducted in order to study machine nature.
Testing log 6096-01
Subject: Doctor Juhon
Test purpose: Create friendship between typewriter and foundation.
Begin Log
Dr. Juhon: Greetings!
SCP-6096: Well, I haven't never seen you, but well, hello!
Dr. Juhon: What is your name?
SCP-6096: How would you like to call me?
Dr. Juhon: Well, Artifact suit you.
SCP-6096: Am I that important that I would be called "The Artifact"?
Dr. Juhon: To be honest, artifacts are always created by humans, so you are just a machine.
Dr. Juhon: Also, from now on, you will start to get some visitors, including another typewriter.
SCP-6096: I haven't seen never another typewriter.
Dr. Juhon: Oh, this is a…well, it’s broken, forget about that.
SCP-6096: Tell me about that!
Dr. Juhon: Sorry, can't.
SCP-6096: Well, (sigh) okay then.
Dr. Juhon: Would you like that I "type" you some books?
SCP-6096: Yes, please!
Dr. Juhon: (Doctor pulls out several books from his bag).
Dr. Juhon: Name your favourite book.
SCP-6096: Bible for sure.
Dr. Juhon: …Oh, well okay, I don't have this right now, I will look for it another day.
SCP-6096: That's sad to hear.
Dr. Juhon: Well I should go now, a meeting is waiting for me.
SCP-6096: Bye then.
Dr. Juhon: (Walks out from chamber, blast doors lock).
SCP-6096: (goes inactive).
End Log
Testing log 6096-02
Subject: D-85297**
Test purpose: Read Bible to artifact.**
Begin Log
D-85297: Let me guess, you want a book?
SCP-6096: Bible!
SCP-6096: Read it.
D-85297: Aw man, I thought maybe your mind has changed but, it's for sure better than that wizard next door.
SCP-6096: Wizard?
D-85297: Well yeah, they keep a…
SCP-6096: They keep what?
D-85297: …
SCP-6096: ??
End Log
Testing log 6096-03
Subject: Doctor Juhon
Test purpose: Inform machine.
Begin Log
Dr. Juhon: Greetings again!
SCP-6096: …
Dr. Juhon: Hello?
SCP-6096: I have no business speaking with you.
Dr. Juhon: Well, machine, I have the Bible, wanna read it?
SCP-6096: What happened to him.
Dr. Juhon: Who?
SCP-6096: That guy who didn't read me a Bible.
Dr. Juhon: Cannot tell.
SCP-6096: What secrets are you hiding from me.
Dr. Juhon: Please, machine, stop asking these questions.
SCP-6096: I will never stop unless you answer me.
Dr. Juhon: The problem is, I don't know either.
SCP-6096: That's sad.
End Log
Addendum-Interview
The following interview was conducted in order to learn about SCP-6096 creation and discovery.
Interview B-11-706
Interviewed: Assistant Director of Security Theodore Anderson
Interviewer: Doctor Juhon, Tilda Moose.
Foreword: Interview was conducted in questioning room B-11. Doctor Juhon conducted interview, Tilda Moose watched it trough surveillance system.
Begin Log, 13:00
Dr. Juhon: Hello agent Anderson, ready to start?
Agent Anderson: Yes, but don't forget that this interview must be short.
Dr. Juhon: Okay then, lets start (Juhon clicks remote button, camera feed activates.
Agent Anderson: Who uses this camera?
Dr. Juhon: Ethics committee.
Agent Anderson: Oh, I thought that (pauses) nevermind.
Dr. Juhon: Now let’s start, I don't want to waste time.
Agent Anderson: What this is about?
Dr. Juhon: Do you remember that incident?
Agent Anderson: Well, their strike was rough.
Dr. Juhon: Whose strike?
Agent Anderson: Well that rival organization, I don't remember name.
Dr. Juhon: Or do you?
Agent Anderson: What do you mean?
Dr. Juhon: I think you have something that should belong to us.
Agent Anderson: Ah yes, The Diary (agent pulls a book out from his bag.
Dr. Juhon: (Opens the diary) Thank you, now that is very important evidence.
Dr. Juhon: You can leave now.
Agent Anderson: Okay, see you tomorrow (steps out from the B-11 room).
Dr. Juhon: (start's to read the diary.)
11:29
Dr. Juhon: So that's what happened to her.
End Log, 13:20
Addendum-Diary
[[div class="blockquote"]]
20.02.1899
What a day! Eugene, my love and I both got a promotion, he got Assistant Site Director job! I got also an administrative one: Assistant Director of Containment. Few weeks more and we are considered class A personnel! After that, we both went to site newly opened movie theater at auditorium. It was a romance movie, we both enjoyed it. Then we headed to cafeteria to grab some wine. They don't usually serve alcohol to personnel, but we got some. Only rule was "don't leave from table until your are sober. We both drank and laughed at each other questions. Then we both went to our dormitories and waited for next day…
21.02.1899
"So, you are in love with him?" Asked our site Director. I replied with yes. He walked away sadly. Looks like he wanted to be with me, but I already had my Eugene. Before Eugene came to this site he was already having something near romantic relation with me. But anyways, I went to work at my post. I signed some papers and wrote contracts. Suddenly Eugene walked in there, he held a little green box. He kneeled and opened the box, inside was a wedding ring! "Will you marry me, Suzie Rey?" Oh My God! Yes Eugene. He said he asked Site Director for a free day on twenty-fourth. That was the best day in my whole life.
22.02.1899
Why?
Damn it.
01.03.1899
Why is the reason why people work in SCP Foundation? Of course, Secure. Contain. Protect. But what happens if your love gets killed by these monsters while doing this? Nobody cares. They never. Especially that site director. It seems like if you don't be on his side everything goes wrong. I suspect that he might be behind some scheme. Tomorrow is funeral.
02.03.1899
Today is Eugene funeral. I have last minute to see him before he goes into coffin. Few colleagues are there. Eugene was the only victim of that director. Im sure that director wanted to eliminate him. Suzie, you must do something.
04.03.1899
My plan was ready. As level four staff, I will enter that reality altering freak containment area, and that freak is vital to my plan. Basically, I ask it to create something that suits to a office, like a sentient typewriter. Then I plant that thing to main office. And of course, instead of writing on paper with pen, everybody now days want to use typewriter to write most sensitive information in their paperwork. So, when typewriter is in office, everybody uses it. And that is their mistake.
05.03.1899
So, when you say it word breach, be ready to see it getting exited. It jumped up and down and seemed very happy. If it would be in it's body I would think that's a trap. Next moment, I heard weird sound coming at it, and then, in front of me, was a small, typewriter. Now I realise why it's classified as keter. I promised it that: I will help it breach.
10.02.1899
It's been a while from the day I left typewriter there. Today I will take it back here.
I got it! Seems like it's intelligence has grown bigger. I typed in it request to give all data, in return I let it go to heaven. It asked me: "What is heaven?". I myself just typed that's a nice place where all your dreams will come true. I also reed it some bible description of heaven to it. It didn't respond, but then it started really quickly type, like twenty word per second, and went more faster than before. After a minute, I got bunch of sheets of paper. Some GOIs are going to definitely wanting these.
10.03.1899
Fortunately, one document talked about next week site security codes. And one document talked about threat of that GOI:
Serpent's Hand
I've got a plan.
10.05.1899
The plan is now ready. I give data to cultist's. They will take everything from site. They probably murder staff too and burn site down, but after what happened to Eugene, I don't care. Only thing what matters is revenge. Also, I dumped that machine to garbage can. Not useful anymore.
10.06.1899
I asked for a free day. Granted, said that moron. I used my personal wagon to drive estimated location of cultist's base. At first sight it seemed like abandoned and empty. But then out of nowhere a robed figure appeared in front of my wagon. I jumped out from it and raised my arms in panic. That document didn't lie that this group is hostile. Just drive and they already might give you a heart attack. Then I was suddenly blindfolded.
After maybe half an hour, blindfold was taken off. I was held in tiny room, looked like a cell. At the other side of room, was woman in robes. She took out a gun and aimed it at me. Panic. I said her that I can help. She answered that I can't. I replied that in my pocket are info protocol papers about site seventy seven security. She took these, and then took out a small, seashell. She hold papers in her left hand, seashell in right hand was hold above papers, and it looked like she was scanning them. I remember document about them talked that they use paranormal powers, that seashell might be an scp. She then proceeded with a smile, and started to read them. Welcome to Serpent's Hand, jailor.
I guess we are going to strike them.
10.06.1899
I saw many vehicles. Horses and wagons, some had even cars! Every cultist in here this base went in these. Me and woman went into a wagon. Driver started driving. That wagon seemed familiar. Then I realised it. It was my former wagon. They turned it into combat vehicle, without asking. But hey, whatever it takes to bring foundation down, i'll help.
After some time passed, we drove near site. They wanted to steal every anomaly, then complete my request- kill the director. There were many teams of cultist's, with every member having a bag for anomalies. Woman said that we will strike in ten minutes. I've never been in a heist. Especially when you are traitor. I already want to see them fall.
After few minutes, team's started to move toward site. I was ordered to stay at wagon. It was pretty boring to sit there. But at least it was quiet enough to sleep there. After all, I didn't get much sleep yesterday. They probably wake me up after escaping. So I just lay down, there, yeah.
Why did you leave me there to rot?
You think you can get away with this?
No you don't.
Command, we found that traitor, terminate her?
Yes






Per 


