SCP-7215 - 我预约了那天生病
: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)); } } /*-------------------------*/ @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)); } }
调查进行中
下列文件已被伦理委员会锁定,正在调查Site-115内有无对已收容异常的滥用以及玩忽职守。
指派站点 | 站点主管 | 研究领导人 | 指派特遣队 |
Site-115 | 主管S. Steele | 初级研究员Lennings | N/A |
特殊收容措施:SCP-7215被保存在Site-115休息室内。全体Site-115人员必须在使用SCP-7215前通告站点主管Steele。
描述:SCP-7215是一本标准格里高利历法月历,月历上只有一页,由光泽纸做成。在每月结束时,SCP-7215会改变其内容,展示出目前的月份。此页面上会自动更新Site-115将发生的重要事件,以钢笔书写。1
若有人员在SCP-7215上留下标记,他们将在标记的日期当天出现严重流感症状,尽管其并无被流感病毒感染的迹象。2这些症状会持续到该人员请假离开其工作地点为止,此时症状就将消失,对象依旧健康无恙。
附录7215.1:站点应用
在SCP-7215文件上线后不久,Site-115的病假次数大幅增加。站点主管Steele会见初级研究员Lennings,讨论对SCP-7215的可疑应用。
采访者:站点主管Stacy Steele
受访者:初级研究员Liam Lennings
日期:2018年4月6日
«开始记录»
Steele:Lennings,我叫你来是讨论你的过度请假。过去两周里面你都已经生病四次了。
Lennings:Lennings?专业态度哪去了?升职把你的脑袋搞坏了吗?(大笑)
Steele:总觉得我还是得担起职责。所以,解释下这些请假?
Lennings:我不会因此惹上麻烦的,对吧?
Steele:拜托,你知道我不会对你做那种事的。
Lennings:好吧,我就信你这句话。我们一直在使用休息室的那个月历。我们用它给自己休假,因为这样整个流程会走的更容易点。
Steele:他们是觉得如果我知道了,我会阻止他们?
Lennings:非常如此。你会闭一只眼的,对吧?
Steele:我还要更进一步。
«记录结束»
此后,主管Steele就SCP-7215向Site-115员工发布一则备忘。
致:Site-115(all.site115@scip.net)
自:Stacy Steele(stacy.steele@scip.net)
主题:请假增多,SCP-7215
我注意到有人在利用SCP-7215绕开请假的冗长流程。我当上主管才一个月,所以我知道被管理层逼得紧是怎样一回事。
你们有些人在我还是高级研究员的时候就认识我了。我对你们保证,我还是一样的那个人。我只求你们老实告诉我为何使用SCP-7215,还有要求你们不要滥用系统。
我是来帮忙的。
——主管Steele
附录7215.2:使用记录
病假日 | 姓名 | 事由 |
---|---|---|
2018年4月7日 | 初级研究员Polly Parks | Parks研究员在过去几个月里多次错过了她女儿的活动,此次要去参加女儿的唱诗班音乐会。 |
2018年4月10日 | 初级研究员Liam Lennings | Lennings研究员预约去更新驾照。他在主管Steele要求下于下午返岗工作。 |
2018年4月12日 | 高级研究员Alex Albert | Albert研究员在4月12日因收容突破3受到多种轻伤害。4对4月12日的标记是在4月18日留下,回溯性防止了Albert研究员于收容突破期间在场。5 |
2018年4月15日 | 特工Ria Ramirez | Ramirez特工的请假被前述收容突破打断。由于4月15日大体无事,将这一天用做为补偿日。 |
2018年5月1日 | 站点主管Stacy Steele | Steele主管连续工作数日直至30号,期间一直在撰写Site-115月度评估及对4月12日的收容报告。 |
2018年5月2日 | 全体站点人员,除了主管Steele | 参见附录7215.3 |
附录7215.3:意外表现
2018年5月1日,SCP-7215更新到了五月,然而,它在此刻之后并未记录任何日期。在这一发现后, Site-115间开始传出流言,认为SCP-7215上不再有日历日期意味着一次ZK级“时间终止”情景。
Site-115休息室内的监控摄像头记录到如下内容。
时间:2018年5月1日,16:26
镜头:休息室-内部
在场人员:高级研究员Albert,初级研究员Lennings,初级研究员Parks,特工Ramirez
«开始记录»
(所有在场人员进入休息室,正在对话着。)
Parks:(大喊) 我们不能就这么放弃!站里肯定有什么异常可以抵销这事,或者某种奇术仪式,或者是——
Albert:这只是个孤立事件而已!没有证据说所有时间都会终结。真要有事基金会现在就该搞明白了。
Parks:(指向SCP-7215)日历就在那摆着。你还要什么证明?!
Albert:(摇头)即便如此,明天如果真有事发生也该有其他征兆才对,但所有测试都没什么反映。也许是异常自己出了什么差错。
Parks:它以前从来没出过错!这东西目前已经预言了站里的所有事情。它记住了收容突破,它能安排会议——靠,它还预言了Liam食物中毒!而且现在还没完!
Lennings:值了。
Parks:这就是时间要终结了!你们怎么还能这么淡定?
Albert:因为我们已经花了一整天想办法!我们现在还能做什么?
(所有人静默。空调打开,整个记录中一直发出低沉嗡鸣。)
Ramirez:也许这是一次局部事件。也许它只影响站点别的都没事。
Lennings:我觉得它不是这么回事。
Ramirez:但这就能解释为什么你找不到任何地方有问题。这是一次局部事件,并非全世界。所以……
(Ramirez走向SCP-7215留下一个标记。)
Ramirez:我要待在家里。
(Ramirez离开休息室。)
Lennings:还剩三个人了。
Parks:(双手举向空中)好吧!我觉得次最佳方案就是撤离站点。
Lennings:我会通知所有人。
(Lennings跑出休息室。)
Albert:我们还没弄清楚!
Parks:继续自欺欺人吧。
(Albert叹气,环视休息室。水冷器在角落里咕嘟响。)
Albert:所以,你明天还来吗?
(Parks走向SCP-7215留下标记。而后她转过身来摇了摇头。)
Parks:不了。
(Parks离开房间。Lennings随后进入。)
Lennings:忘了预约我生病了。
(Lenning走向SCP-7215留下标记。而后他小跑离开休息室。)
Lennings:(隐约地)回头见Alex!
(Albert站在休息室里两分钟。他走过去检查SCP-7125。一分钟后,他也在SCP-7215上留了标记。而后Albert离开房间。)
«记录结束»
结语:之后的三十分钟里,多名人员进入休息室在SCP-7215上留下标记。在此期间的对话要么是重复早先的评论,要么与SCP-7215完全无关。
Steele主管并不知晓该情况,6在5月2日前来上班。她发现SCP-7215上贴了一张便利贴,在阅读其内容后,她提醒全体Site-115人员立即返岗上班。 SCP-7215已经更新到了有预测状态,准确无误地列出了本月剩余日期情况。
便利贴内容抄录如下:
抱歉各位,我的打印机刚没墨水了。现在修好了!
——Mason,时间异常部
请按如下方式引用此页:
“SCP-7215”,作者 CowscantgoMoo,来自 SCP 维基。原文链接:https://www.scpwiki.com/scp-7215。译者 ashausesall,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/scp-7215。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
更多维基文档信息,请见版权信息总览。