作者:
Swred
小的时候,父母工作总是很忙,有的时候就感觉……很孤单。或许这个面包先生就是我当时想要的吧。
: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;
}
/* 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)); }
}
特殊收容措施:对已开封的SCP-CN-452不需要特殊的收容措施,其活动范围被指定为Site-CN-10内。鉴于项目的特性,该项目目前被集中于10号站点的员工休息室内,允许员工与项目交谈并将其视为日常娱乐,且目前作为一种主要的缓解压力的方式。交谈时应注意保持语气的欢快与缓和,在合理范围内可对其进行适当哭诉。关于该项目的一切实验应在一名3级专项人员的允许下进行。
未打开包装的SCP-CN-452均被收容在Site-CN-10的低威胁物品收容柜内。
于██/██/2019重新编辑:在第█次后实验后,禁止食用SCP-CN-452。
描述:SCP-CN-452是一种形似面包的异常实体。该项目拥有面部,手臂和腿部。其直立时身高22cm,腿长10cm,臂长10cm,体长12cm,值得注意的是,该项目的腿与手臂均呈条状,直径1.5cm。SCP-CN-452喜欢绕着他们发现的人类奔跑,在奔跑时会咧开嘴发出“哈哈哈”的笑声,其奔跑姿势与普通人类无异,但普遍性会将身体向后仰。目前尚不知其是以何种方式进行运动。
与SCP-CN-452交流的人员会陷入一种愉悦的状态下,通常表现为对生活的热爱与满足感。在食用SCP-CN-452后这种感觉会更加显著,持续时间为24小时。
未打开包装的SCP-CN-452个体均无生命,其外部包装样式更像玩具包装。在打开包装后,SCP-CN-452个体会立即“醒来”并说出:“嗨,我是快乐面包先生。”
下列文件被发现于SCP-CN-452的包装中。
Wondertainment博士,dado和安布罗斯餐厅…
联名出品!
快乐面包先生!tm
你有没有想过像动画片里一样,拥有一个可以给你带来快乐的好伙伴?不要孤独,不要寂寞,统统不要!我们的联名产品轻松扫除一切不开心!快乐面包先生!
tm您的不二之选。
一个人在家带着无聊?不用担心。晚上一个人睡觉害怕?不用害怕。记住,这统统不叫事!有了我们Wondertainment,dado和安布罗斯餐厅的联名快乐面包先生!tm赶走一切孤独与不快乐!
其实我只能算是这个项目的发起人,而dado则是药物专家1,安布罗斯餐厅是一位好厨子。所以我决定干脆把把我们的特长综合。但产品还是我们Wondertainment的!下面让我的合作伙伴dado和安布罗斯餐厅说几句:
dado的话:
- 快乐面包先生tm只属于孩子,这是他们的快乐!
- dado对你由于贪吃而导致的一切后果不负责。
- 记住!dado是好资本家,随时欢迎你来找我订药。
- 感谢Wondertainment帮我改错字,我的仓鼠太不老实了。
- 我们不接受任何追偿、诉讼、联合抵制、抗议、寻仇和对线(dado痛恨对线!)
安布罗斯餐厅的话:
- 本产品由安布罗斯餐厅,dado和Wondertainment联合出品,如在使用过程中出现问题,请联系Wondertainment!
- 本餐厅2仅负责制作,项目本身是Wondertainment提出的。
- 我们现在已经与Wondertainment没有任何关系了,求求你们了,出什么事不要来找我们,好吗?
- 再重复一次:出什么事不要来找我们!
你的永远朋友,
Wondertainment博士,怪诞与奇想的践行者!
dado, 租金和短期借贷负债者!
安布罗斯餐厅,神秘又美味的餐厅!
这里没有小字!别看啦!
1. dado没有任何水平的医药执照。
2. 重复:我们现在与Wondertainment没有任何关系,这馊主意都是那个混蛋想的!
附录1:通话记录
以下通话记录由基金会敏感事务调查部获取。
Wondertainment:嗨,dado,安布罗斯餐厅,在吗?
dado:在,设么事?
安布罗斯餐厅:在,怎么了?
Wondertainment:我有个新计划,不知道你们有没有兴趣?
安布罗斯餐厅:愿闻其详。
Wondertainment:我想做一款面包玩具,可以吃的那种。
安布罗斯餐厅:嗯,然后呢?
Wondertainment:当孩子们和它交流时会变开心,也可以和它做游戏。
安布罗斯餐厅:听起来不错。
Wondertainment:和他交流让别人变愉快这点我可以做到,但我想让吃完了也可以……
安布罗斯餐厅:所以你想让我帮忙?
Wondertainment:不,这点我觉得dado可能会更好。
安布罗斯餐厅:他来也行,话说他人呢?
Wondertainment:@dado,你还在吗?
dado:偶在偶在,刚刚区未仓鼠了。
Wondertainment:我们刚刚说的你看到了吗?
dado:dado眉有离开点脑。
Wondertainment:我想要一种可以使人变愉悦的药,你能做吗?
dado:dado眉问题,dado什么药逗能左。
Wondertainment:那太好了,不过我想要药粉状的,可以和在面团的那种
dado:眉问题,dado可以左到。
Wondertainment:好的,工序麻烦吗?
dado:布麻烦,泥要药粉不用药片所以布麻饭。
Wondertainment:OK,因为我比较急,想赶快收到。
dado:眉问题,dado回尽快的,刀时候用啊马训给你邮寄果去。
Wondertainment:是亚马逊吗?
dado:四,dado的错字号像太多了。
Wondertainment:没事,到时候邮寄过来就行,感谢。
安布罗斯餐厅:需要我做些什么吗?
Wondertainment:啊,你来的正好,我需要一种特殊的制作面包的原料。不知道你行不行。
安布罗斯餐厅:怎么个特殊法?
Wondertainment:首先,保质期得长,但不能加防腐剂。
安布罗斯餐厅:没问题。
Wondertainment:第二,做出来的面包在不吃的时候得经得起玩,你知道的,小孩子比较……
安布罗斯餐厅:嗯,我懂,你接着说。
Wondertainment:第三,当你吃的时候这个面包的口感得好。
安布罗斯餐厅:这个……
Wondertainment:果然不行吗……
安布罗斯餐厅:也不是不行,只是难度比较大。
Wondertainment:那就行。
安布罗斯餐厅:还有需求吗?
Wondertainment:有,最后一条,我需要让我做出来的玩具面包可以和人一样运动。
安布罗斯餐厅:让它能动可以,不过你怎么让它动?
Wondertainment:这点交给我。
安布罗斯餐厅:建议分享一下吗,我心里得有个数。
期间部分消息因未知原因丢失。
安布罗斯餐厅:不,Wondertainment,你他妈一定是疯了!
Wondertainment:可是我没有办法了呀。
安布罗斯餐厅:不,Wondertainment,如果你真这么干,我打死也不会帮你!
Wondertainment:当是我求你了,我们已经快没钱运作了。
安布罗斯餐厅:那我也不管。
Wondertainment:真的,我求你了,我们现在好多人都出去自己单干了,有出去卖魔术道具的,还有出去卖减肥产品的。我们真的快撑不住了,求你了。
dado:我页觉得你改帮绑他。
Wondertainment:我知道我们是资本家,但我们真的快不行了。
安布罗斯餐厅:可这太不道德了。
Wondertainment:我会把“它们”好好“清洗”一遍的。
安布罗斯餐厅:那这也……
Wondertainment:求你了,兄弟,看在上帝的份上。
安布罗斯餐厅:行吧,我帮你。但这个不会出现在我们安布罗斯餐厅的菜单上,永远不会!
Wondertainment:没关系,谢谢你帮助我,太感谢了。
安布罗斯餐厅:不过事先说好,我不担任何责任,出了事别让任何人找我。
Wondertainment:你尽管放心吧。
安布罗斯餐厅:好,那先这么定了。
Wondertainment:OK。
dado:dado回金块做药的。
Wondertainment:谢谢你,dado。
dado:布用客气,dado死好的资本家。
Wondertainment:谢谢你们帮我,愿上帝保佑你们。
附录2:实验记录
实验编号:CN-452-1
食用对象:SCP-CN-452
食用者:Dr. Bank
食用前提:Dr. Bank在食用前无任何情绪波动。
结果:Dr. Bank表示其心情明显变愉快了,这种现象持续了24小时。
实验编号:CN-452-5
食用对象:SCP-CN-452
食用者:Dr. Chaoz
食用前提:Dr.Chaoz在食用前刚失恋不久。
结果:Dr. Chaoz表示其已将失恋的事放下了,说他对生活充满希望。
实验编号:CN-452-14
食用对象:SCP-CN-452
食用者:Vincent
食用前提:Vincent在食用前正处于失去战友的悲痛中。
结果:Vincent表示虽他还对战友表示痛惜,但他的心情好多了。
实验编号:CN-452-█
食用对象:SCP-CN-452
食用者:Dr. Pack
食用前提:Dr. Pack在食用前无任何情绪波动。
结果:Dr. Pack,在食用1小时后,反应情绪出现暴躁的现象。2小时后,反应其有杀人的冲动。5小时后,其性格完全变化。
后经调查,其性格与在163天前处决的D-14690相同,随后Dr. Pack被处决。
以下内容摘自Darry的日记
……好吧,打死我也没想到,Wondertainment居然真的这么干了。他们还真是丧心病狂,平日给我们带来快乐的面包先生……
现在,禁止再食用SCP-CN-452。