《史上最大的侵略》
评分: 0+x
:root {
 
/* 常规颜色 */
 
    --sns-base-text-color: 0, 0, 0;
    --sns-border-color: var(--sns-base-text-color);
    --sns-gui-color: 100, 100, 100;
    --sns-button-color: 60, 60, 60;
    --sns-pressed-button-a-color: 48, 157, 219;
    --sns-pressed-button-b-color: 0, 200, 0;
    --sns-pressed-button-c-color: 200, 0, 0;
    --sns-pressed-button-d-color: 48, 157, 219;
    --sns-pressed-button-e-color: 48, 157, 219;
    --sns-locate-link-color: 138, 137, 136;
    --sns-normal-link-color: 2, 117, 224;
    --sns-intro-background-color: 0, 0, 0;
 
/* 账号颜色 */
 
    --administrator-account-color: 186, 186, 32;
    --general-account-color: 119, 111, 227;
 
/* 深色模式下的颜色 */
 
    --dark-sns-base-text-color: 255, 255, 255;
    --dark-sns-border-color: 190, 190, 190;
    --dark-sns-pressed-button-a-color: 48, 157, 219;
    --dark-sns-pressed-button-b-color: 90, 197, 90;
    --dark-sns-pressed-button-c-color: 197, 90, 90;
    --dark-sns-pressed-button-d-color: 48, 157, 219;
    --dark-sns-pressed-button-e-color: 48, 157, 219;
    --dark-sns-gui-color: 126, 124, 120;
    --dark-sns-button-color: 180, 180, 180;
    --dark-sns-locate-link-color: 200, 199, 198;
    --dark-sns-normal-link-color: 36, 149, 255;
    --dark-administrator-account-color: 224, 224, 80;
    --dark-general-account-color: 176, 170, 255;
 
/* 账号头像图片的尺寸 */
 
    --post-account-image-size: clamp(2.125rem, 1.761rem + 1.82vw, 3.125rem);
 
/* 按钮使用的 Fontawesome 字符 */
 
    --sns-button-a-content: "\f0e5";
    --sns-pressed-button-a-content: "\f075";
    --sns-button-b-content: "\f087";
    --sns-pressed-button-b-content: "\f164";
    --sns-button-c-content: "\f088";
    --sns-pressed-button-c-content: "\f165";
    --sns-button-d-content: "\f097";
    --sns-pressed-button-d-content: "\f02e";
    --sns-button-e-content: "\f08e";
    --sns-pressed-button-e-content: var(--sns-button-e-content);
 
}
 
/* 帖子整体 */
 
.post-wrap {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgb(var(--sns-border-color));
    border-bottom: 1px solid rgb(var(--sns-border-color));
}
 
.sns-intro + .sns-intro .post-wrap,
.sns-intro + br + .sns-intro .post-wrap,
.sns-intro + br + br + .sns-intro .post-wrap,
.sns-intro + br + br + br + .sns-intro .post-wrap,
.sns-intro + br + br + br + br + .sns-intro .post-wrap {
  border-top: none;
}
 
.post-wrap:not(.post-reply-false) {
    margin-left: 1.5rem;
    padding-left: 0.5rem;
}
 
/* 帖子版头 */
 
.post-header {
    display: grid;
    grid-template-areas:
        "sender-image sender-info sender-more"
        "sender-image sender-locate sender-locate";
    grid-template-columns: calc(var(--post-account-image-size) + 6px) 1fr 24px;
    grid-template-rows: 1fr 1fr;
    padding-top: 1.2rem;
    width: 100%;
}
 
.sender-image {
    grid-area: sender-image;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
 
.account-image {
    height: var(--post-account-image-size);
    width: var(--post-account-image-size);
    overflow: clip;
    overflow-clip-margin: content-box;
    object-fit: cover;
    border: 1px solid rgb(var(--sns-gui-color));
    border-radius:50%;
    position: relative;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
 
.sender-info {
    grid-area: sender-info;
    padding-left: 6px;
    vertical-align: middle;
    left: 55px;
    width: 100%;
}
 
.sender-info span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: larger;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
 
.sender-info .sender-account-name {
    --wght: 700;
    color: rgb(var(--sns-base-text-color));
    font-weight: 700;
    padding-right: 0.5rem;
}
 
.sender-info .sender-account-id {
    --wght: 700;
    color: rgb(var(--sns-gui-color));
    font-weight: 700;
}
 
.sender-info .sender-post-time {
    color: rgb(var(--sns-gui-color));
}
 
.sender-post-time.time-false {
    display: none;
}
 
.sender-more {
    grid-area: sender-more;
    color: rgb(var(--sns-gui-color));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
 
.sender-locate {
    grid-area: sender-locate;
    color: rgb(var(--sns-gui-color));
    padding-left: 6px;
    vertical-align: middle;
    width: 100%;
}
 
.sender-locate.locate-false {
    display: none;
}
 
.sns-locate-link.locate-link-false {
    pointer-events: none;
}
 
.sns-locate-link:is(*, :hover, :active, :focus, :focus-within) {
    color:rgb(var(--sns-locate-link-color));
}
 
/* 帖子正文 */
 
.post-body {
    padding-left: calc(var(--post-account-image-size) + 6px);
    position: relative;
    border: none;
    color: rgb(var(--sns-base-text-color));
    padding-top: 2rem;
    font-size: clamp(0.97rem, 0.923rem + 0.24vw, 1.1rem);
}
 
.post-body :is(a, a.visited, a.newpage):is(*, :hover, :active, :focus, :focus-within) {
    color: rgb(var(--sns-normal-link-color));
}
 
.post-header:not(:has(.hide-locate-false)) + .post-body {
    padding-top: 0;
}
 
.attached-image:not(.attached-image-false) {
    border: 1px solid rgb(var(--sns-gui-color));
    border-radius: 16px;
    margin-top: 1em;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    width: calc(100% - 3px);
}
 
.attached-image-false {
    display: none;
}
 
/* 帖子末尾 */
 
.post-footer {
    padding: 1rem 0 1rem calc(var(--post-account-image-size) + 6px);
    color: rgb(var(--sns-gui-color));
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
 
.post-footer-button {
    font-size: clamp(0.625rem, 0.475rem + 0.75vw, 1.038rem);
    color: rgb(var(--sns-button-color));
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: .75rem;
    vertical-align: -15%;
    position: relative;
}
 
.post-footer-button .fa {
    font-size: 1.33333333em;
    text-rendering: auto;
    transform: translate(0, 0);
    transition: color .3s cubic-bezier(.4,0,.2,1);
}
 
.post-footer-button-number {
    position: absolute;
    padding-left: 1.5em;
    transition: color .3s cubic-bezier(.4,0,.2,1);
}
 
.post-footer-button-a:hover,
.post-footer-button-a:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-a-color));
}
 
.post-footer-button-a .fa::before {
    content: var(--sns-button-a-content);
}
 
.post-footer-button-a:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-a-color));
    content: var(--sns-pressed-button-a-content);
}
 
.post-footer-button-b:hover,
.post-footer-button-b:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-b-color));
}
 
.post-footer-button-b .fa::before {
    content: var(--sns-button-b-content);
}
 
.post-footer-button-b:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-b-color));
    content: var(--sns-pressed-button-b-content);
}
 
.post-footer-button-c:hover,
.post-footer-button-c:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-c-color));
}
 
.post-footer-button-c .fa::before {
    content: var(--sns-button-c-content);
}
 
.post-footer-button-c:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-c-color));
    content: var(--sns-pressed-button-c-content);
}
 
.post-footer-button-d:hover,
.post-footer-button-d:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-d-color));
}
 
.post-footer-button-d .fa::before {
    content: var(--sns-button-d-content);
}
 
.post-footer-button-d:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-d-color));
    content: var(--sns-pressed-button-d-content);
}
 
.post-footer-button-e:hover,
.post-footer-button-e:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-e-color));
}
 
.post-footer-button-e .fa::before {
    content: var(--sns-button-e-content);
}
 
.post-footer-button-e:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-e-color));
    content: var(--sns-pressed-button-e-content);
}
 
/* sns-intro */
 
.sns-intro:not(.intro-false) {
    margin: 2em -6em;
    padding: 6em 6em 27em 6em;
    background: linear-gradient(rgb(var(--sns-intro-background-color)), rgb(var(--sns-intro-background-color)), transparent); z-index: -2;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    --sns-base-text-color: var(--dark-sns-base-text-color);
    --sns-border-color: var(--dark-sns-border-color);
    --sns-pressed-button-a-color: var(--dark-sns-pressed-button-a-color);
    --sns-pressed-button-b-color: var(--dark-sns-pressed-button-b-color);
    --sns-pressed-button-c-color: var(--dark-sns-pressed-button-c-color);
    --sns-pressed-button-d-color: var(--dark-sns-pressed-button-d-color);
    --sns-pressed-button-e-color: var(--dark-sns-pressed-button-e-color);
    --sns-gui-color: var(--dark-sns-gui-color);
    --sns-button-color: var(--dark-sns-button-color);
    --sns-locate-link-color: var(--dark-sns-locate-link-color);
    --administrator-account-color: var(--dark-administrator-account-color);
    --general-account-color: var(--dark-general-account-color);
}
 
.sns-intro:not(.intro-false) .post-wrap {
    border: none;
}
 
@media only screen and (max-width: 1040px) {
    .sns-intro:not(.intro-false) {
        margin: 2em 0;
        padding: 6em 3em 27em 3em;
    }
}
 
@media only screen and (max-width: 540px) {
    .sns-intro:not(.intro-false) {
        padding: 6em 0 27em 0;
    }
}
/* common-sns */
 
:root {
    --sns-button-b-content: "\f021";
    --sns-pressed-button-b-content: var(--sns-button-b-content);
    --sns-button-c-content: "\f08a";
    --sns-pressed-button-c-content: "\f004";
}

恶魔的预言 Chapter 0

the Jotarothe Jotaro,泯然大众,若是硬要找出相对特别之处,那么只有在记忆已模糊的角落里,他曾参与过某个小说网站的运营,只是那记忆早早迷失,就连所谓网站的地址和内容,也早就回忆不起来了。

为什么要用这么奇怪的昵称?保护真实信息可是大事。

某一周末,睡梦中,the Jotarothe Jotaro突如其来地清醒察觉自己正闭眼躺在漆黑之中,一身影飘立眼前身上,潦草得仿佛简笔火柴人。此刻,the Jotarothe Jotaro注定迎来他最悲怆的终局。

他,以及所有人都将坠入无穷尽数量与模样的非现实,这便是……

“来找我们。”它说,”来……“

PedderPedder!“

”不,不是,谁?“我从梦中惊醒,脱口而出的名字陌生却又熟悉,当我想要捉住时,它和所有幻梦一样顿时消散。”刚刚那个,是什么来着?P——?“

PedderPedder。”

PedderPedder?”

“嗯。PedderPedder。”

“哦,对。PedderPedder……”

我呆坐在床上咀嚼这个陌生音节,隐隐总觉得熟悉。忽然我意识到这并非自己的脑内旁白,然而这被凌晨盖上玻璃蓝色滤镜的房间里实在不像是有第二个人存在的样子。风吹开窗帘,打在我脸上,稍稍被清醒后我摸出眼镜下床,站到窗边,扶着窗沿,街道上路灯尚且亮着,商铺小贩还未开门,已有环卫在工作,气温依旧清冷。我照常看了会街边的梧桐——为了护眼——风卷起残存的树叶,却长出了动画片样标准的简笔画”风“线条,两片树叶忽然悬空不动,周边的线条也聚集起来,勾勒出一个大头火柴人,最后有一簇碎叶置顶,大概是充当头发。那些线条定住了,这形象让人眼熟。

the Jotarothe Jotaro,好久不见。“它说。

PedderPedder?”这正是那古怪人声的来源,竟然是一堆凭空的黑线,我说不准是睡出梦中梦了——

正当我一头将自己闷回被窝里,无故一阵狂风当即把我掀翻,我看到那堆线条朝我飞来。

”听着,the Jotarothe Jotaro““the Jotarothe Jotaro是什么东西?”“就是你,你就是the Jotarothe Jotaro,听着”“那你就是我梦里出现的PedderPedder?”“是”“你是什么玩意?”“我是人”“人?”“对。不对,别打断我”“好,你说。”

“别打断我!”

一阵风吹了我一耳光——当然只是从我脸侧吹过——它脸上两片叶子向外45°竖起,大概是怒了。

“听我说,the Jotarothe Jotaro。你的退休生活要终止了——我指的不是65岁退休。那个人还活着,飞机失事也不过是幌子。”它的声音突然飘忽不定,线条们也开始躁动,“将会有严重的事故发生,我需要你。现在你会拥有可以随意调出object-c-300 暂停选单的力量,你肯定知道怎么做,然后,你会想起来。”

线条舞动,溶解散开。

“来找我——”

又一阵风吹过,卷走了组成它的虚幻黑线,枯黄的树叶涌起深海磷虾群般的漩涡,好像蝗虫群掠过房间,我放下护眼的手臂,一切又归为原样,它曾短暂存在过的地方只留下了一片梧桐叶缓缓飘落。

我抓住那片叶子,透过瞳仁样的孔洞,我看到了。

那个暂停选单

我希望你能够理解。


蓝色夜晚的记忆 Chapter Ⅰ

[透过暂停选单的帮助,the Jotarothe Jotaro恢复了曾经与后室中文维基相关的记忆,他当即登录了那个现名异常收录维基的网站,却发现曾经以为是鬼故事搜集论坛的网站现在不知为何已经关停,所有的变化和帖文最终都停滞在数年前的某天零点,尝试发帖但全部失败,此时,the Jotarothe Jotaro震惊的发现自己房间有不下半数区域变成了Level 0的模样,他甚至能够通过暂停选单的功能对这些已经变化的区域的墙壁进行切行而前往真正的后室。想到PedderPedder所透露的话,他猜测这一切可能都源自离奇失踪的Lambda CoreLambda Core,为了阻止这一现象并探明真相,他找到PedderPedderPedderPedder告知他已先行唤醒了曾经一同共事的AmbersightAmbersightcakelord114514cakelord114514的记忆,但唯独azureactiveazureactive始终无法取得联系。AmbersightAmbersightcakelord114514cakelord114514已先行前往寻找Lambda CoreLambda Core并留下了各自掌握的线索。the Jotarothe JotaroPedderPedder决定分头行动,PedderPedder前往Lambda CoreLambda Core家中,the Jotarothe Jotaro寻找另外二人。]

各位,听说过异常收录维基吗?

在数个年前,它曾叫做后室中文维基。所谓后室,即是一个遥远辽阔的非现实空间,它不曾存在,却能通过形似游戏穿模的放进藉由我们现实世界的物质进入,如果感到疑惑,就姑且将之视作某个九又四分之三站台吧。


黑暗都市 Chapter Ⅱ

[所有的信号突然消失,设备失灵,人类社会一夜间失去了互联网——除了异常收录维基。the Jotarothe Jotarocakelord114514cakelord114514汇合,根据cakelord114514cakelord114514收获的情报,可以确定Lambda CoreLambda Core并未消失,多地的监控和证人都表明他依然在世且活跃着,有证据显示Lambda CoreLambda Core早已完全掌握暂停选单的使用并经常利用切行以实现在现实中瞬间移动。然而突如其来异常现象使得正常行动举步维艰,并且后室入侵现象正在迅速扩大,他们必须马上找出缘由并阻止。于此同时,异常收录维基毫无征兆的重新开放,作为目前唯一可用的社区网站,大量新用户涌入挤满了发帖区提问,the Jotarothe Jotarocakelord114514cakelord114514二人的私信中突然同时收到来自AmbersightAmbersight的求救,她声称自己找到了Lambda CoreLambda Core……]


沉睡的少女Chapter Ⅲ

[ AmbersightAmbersight死了。准确的说,她尚且处于死亡的边缘。the Jotarothe Jotarocakelord114514cakelord114514追随求救信息来到她的身边时,AmbersightAmbersight手中虚握着一把手枪,她的脑部和心口都已中弹,血泊满地。但诡异的是,AmbersightAmbersight冰冷的身躯尚有呼吸,心脏也依然缓慢地跳动着,她还没死,没完全的死。她的手中紧握一页纸条,上面记录了她跟踪一个男人数天的情况,并最终认定此人为Lambda CoreLambda Core,当二人将纸翻页,发现上面有另一串陌生字迹留下的文字,来自azureactiveazureactive。]


影的继承者 Chapter Ⅳ

[ cakelord114514cakelord114514决定留下照顾AmbersightAmbersight,带着“尸体”一起切入后室寻找复生的方法,而the Jotarothe Jotaro接过武器,根据留言内容寻找质问azureactiveazureactiveazureactiveazureactive,他是除了Lambda CoreLambda Core外最初后室网站职员组的五人中最先因意外出发暂停选单而恢复了被Lambda CoreLambda Core抹去的与网站相关记忆的人,与其他同好不同,他从一开始就狂热的坚信后室真实存在并向往,在他恢复记忆后,以Lambda CoreLambda Core身份的伪装在世界各地活跃,追寻Lambda CoreLambda Core的脚步,他开始发觉Lambda CoreLambda Core的最终目的——让后室彻底覆盖现实世界。azureactiveazureactive毫不犹豫的接受并开始坚定执行这一理念与目的,他相信在后室彻底取代现实后,在后室中生存这一全体性的难题能够让人类社会重新意识到合作与和平的重要性,能够在更大的困难压力下消灭战争压迫等。在被AmbersightAmbersight发现时,他曾向AmbersightAmbersight发出邀请,但遭到拒绝,AmbersightAmbersight试图阻止这一疯狂行径,表示失望的azureactiveazureactive随后射杀了她,但出于个人感情用混和了Object C-8 治愈水晶的特制杏仁水保留了她的生命,纸条与她手中的武器也是azureactiveazureactive刻意留下的。azureactiveazureactive开始邀请the Jotarothe Jotaro加入,真正前往后室。]


恶魔的审判 Chapter Ⅴ

[与Chapter Ⅲ同时,PedderPedder来到了Lambda CoreLambda Core的住址前,然而,此处已经完全变成了Level 0的样子,根据邻居描述,周边也时有实体出没。PedderPedder闯入房间,此处的空间已经异常,一番搜寻后他发现Lambda CoreLambda Core正站在某处等他到来。Lambda CoreLambda Core向他表明,自己当初发现后室真实存在且可以通过暂停选单进入后,便开始在其中探险,他通过某种phenomenon-c-120 失落的技术窃取了后室的某些权限,使得后室能够根据他的意志入侵现实,本文的斜体旁白正是他的台词,并将自己的理念加之于azureactiveazureactive,为了证明他将其他四人传送过来——cakelord114514cakelord114514、昏迷中的AmbersightAmbersightthe Jotarothe Jotaro以及在他脚边的azureactiveazureactive的尸体。交涉无果后,the Jotarothe Jotaro开枪击杀了Lambda CoreLambda Core,也许至少能够短暂的保证现实稳定。]



并不全部符合CC BY-SA 3.0协议,但已完成的备份页面是的