ノー・リターン ハブ
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        bottom: 0.5em;
        left: 0.5em;
        z-index: 15;
        font-family: san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888 !important;
        background-color: #fff !important;
        border-radius: 3em;
        color: #888 !important;
        text-decoration: none!important;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -25em;
        width: 17em;
        height: 100%;
        background-color: rgb(184, 134, 134);
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        -webkit-transition: left 0.5s ease-in-out 0.1s;
        -moz-transition: left 0.5s ease-in-out 0.1s;
        -ms-transition: left 0.5s ease-in-out 0.1s;
        -o-transition: left 0.5s ease-in-out 0.1s;
        transition: left 0.5s ease-in-out 0.1s;
    }
 
    #side-bar:after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
 
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        border: 1px solid #dedede;
        z-index: 10;
    }
 
    #side-bar:target + #main-content {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.3) 1px 1px repeat;
        z-index: -1;
    }
}
: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 screen and (prefers-reduced-motion: reduce) {
    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)); }
}

ノー・リターン ハブ
作成者: Dr_KasugaiDr_Kasugai
作成日: 02 Oct 2022 17:17
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        bottom: 0.5em;
        left: 0.5em;
        z-index: 15;
        font-family: san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888 !important;
        background-color: #fff !important;
        border-radius: 3em;
        color: #888 !important;
        text-decoration: none!important;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -25em;
        width: 17em;
        height: 100%;
        background-color: rgb(184, 134, 134);
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        -webkit-transition: left 0.5s ease-in-out 0.1s;
        -moz-transition: left 0.5s ease-in-out 0.1s;
        -ms-transition: left 0.5s ease-in-out 0.1s;
        -o-transition: left 0.5s ease-in-out 0.1s;
        transition: left 0.5s ease-in-out 0.1s;
    }
 
    #side-bar:after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
 
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        border: 1px solid #dedede;
        z-index: 10;
    }
 
    #side-bar:target + #main-content {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.3) 1px 1px repeat;
        z-index: -1;
    }
}
: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 screen and (prefers-reduced-motion: reduce) {
    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)); }
}
評価: +22+x


一つの選択が二つの世界を生し
瓜二つのタペストリーは展開せり
先駆者ヴァンガードのアイギス煌めき
出発点スレッショルドは線引けり


──返り道無きノー・リターン一線を。

TestNoReturn


多元宇宙規模の異常事物の減衰は、魔法の世界を蹂躙し、幻想幽玄の土地や街々は次第に滅びゆく。財団、そしてその敵と味方は、何かが変わらなければならないことを突きつけられた。“難局”ならびに、財団、異常、かの大変動の本質を結ぶ隠微な関係性を調査せよ。危機に瀕する世界を分析し、最終的にどう希望を齎すかを決定せよ。



SCP-6500: 避けえないもの

by S D Locke, HarryBlank, PlaceholderMcD, Ihp, Grigori Karpin, DarkStuff, Aethris

“難局”に立ち向かう財団の道を追いかけろ──死にゆく魔法の領域を通る各々の“道”で、根源的な力のアーティファクトを回収する者たちの旅路を辿っていけ。是非によらず、それらがどう振るわれるかを選択せよ。



Warrior.png

戦士

by HarryBlank

Mage.png

魔術師

by Ihp

Cleric.png

僧侶

by Grigori Karpin

Thief.png

盗賊

by DarkStuff

zNpYxbP.png

異端者

by PlaceholderMcD

Warlock.png

ウォーロック

by HarryBlank

Reliquarians.png

遺物学者遺物学者

by Ihp

Voyager.png

航海者

by PlaceholderMcD

Emissary.png

使者

by Grigori Karpin





主な分岐点後ポスト・ピボットの作品


スレッショルド タイムライン

Nobody Likes a Sneak

by Grigori Karpin

都会住まいの“何者でもない”は“難局”の解明を求めて調査を開始し、認識災害、Tレックスの骸骨、放浪者の図書館、パリのカフェを巡る物語に身を投じる。
そして全ては始まりに過ぎない。


Nobody's Looking For Trouble

by Grigori Karpin

“何者でもない”は独りじゃない。彼女は蛇の手と共闘し、近くの“何者でもない”は彼女だけというわけでもない。だが、彼らが財団が裁判後にO5-ゼロをどこへやったかを見つけられないのなら、そんなことはどうだっていい。


思い出を振り返って

by HarryBlank, LizardWizard

「かつて敵対的で、生きていたらしきアノマリーを、12ドル節約するために取り壊したいと?」


Fafnir

by Ethagon

いつだって現状を維持した方が得する者もいるものだ。その中の一つ、とある古代のドラゴンは、“難局”とその終局の間の方がよく眠れただろう。これは事態がどうなったかの話だ。


Undaeveling

by Guezma

難局が終わった後、ジュディス・ロゥはSCP-140をNeutralisedに更新した。ダエーバイトもそう簡単であればよかったのだが。


関連するポスト・ピボットの作品



Character Interactions Disguised As An Epilogue

by Ihp

厳密に言えばBlack Autumn IV: Nothing to Fearの結末であるこのTaleは、SCP-6500の終結前〜終結後にかけて、サイト-87の登場人物たちの視点から2021年の出来事のモンタージュを綴っていく。


SCP-5056 (II): 鏡像

by HarryBlank

フィリップ・ディアリング、かつてのSCP-5056-Bは、複雑な気持ちで奇妙極まりない1年を振り返る。


SCP-5974: The Interactive Fiction

by HarryBlank

財団の裏切者は、“難局”以前の活動を追体験させられる──ユーザーフレンドリーの面で最悪のビデオゲームを通じて。


SCP-6056: 起爆

by HarryBlank

ウォーロックの道の直後、いくつかの心情的な会話があった──突然ブッた切られたが。

SCP-7007: ミスフォーチュン・ゴージ

by Grigori Karpin

SCP-6500の出来事から1年が過ぎようとしていた頃、ヴィキャンデル=ニード・テクニカル・メディアは財団の最近の言動について思うところがあり、彼らをゲームショウに招く。


ヴァンガード タイムライン

サーキック・ヒート

by Grigori Karpin

ヴァンガードの設立直後、ティルダ・ムースはアルト・クレフ博士とカルキスト・ヴァリスにモスクワの“ハンターの黒きロッジ”襲撃の指揮を依頼する。これはバディコップ・コメディだと考えてくれ──ボディ・ホラー付きの。


A Sarkic By Any Other Name

by Grigori Karpin

Sarkic Heatの後、ヴァリスとクレフはヴァンガードのためにサーキック系アノマリーへの対処を続けていたが、この頃SCP-2480周辺では対立が激化し、GOCとの衝突が迫っていた。


God meat's back on the menu

by Guezma

古代の邪悪が封印を暴かれ、街に解き放たれた。画してヴァンガードはこの状況にぴったりな能力を持つ味方を呼び寄せる。


Thump Thump Tick Tock

by UNCGriffin

ほとんどの人にとっては、ヴェール崩壊は新世界への第一歩だった。だがかつての異常界と、その知られざる闘争にその身を投じてきた人はどうだろうか?


With Many Choices

by LizardWizard and Grigori Karpin

SCP-939が正常化された結果、ヴァンガードとGOCは世論という法廷で闘争する。


Voice of Vanguard

by Guezma

人類は、この世界で唯一の存在じゃないことを知るべきだ。そして、ヴァンガードのポッドキャストはこのメッセージを広めるうえで有用だ。今週のゲストはパラウォッチから来てもらったけど、彼はもう少しそのことを知らないといけない。


Facing Forward

by Guezma

Voice of Vanguardの出来事の後、ロン・ガンビの人生は変わったが、果たしてどこに向かっているのだろう? 新たな機会と古い友人が、彼が自分の道を見つけるのを手伝ってくれる。


The Trainee Gets Trolled

by Guezma

ヴァンガードのPR部門の研修の一環で、ロン・ガンビはVoidをインストールし、完璧なソーシャルメディア体験を送る。


Gambi's Gambit

by Guezma

20年間に渡る収容の後、マルセル・ガンビは隠れている。ヴァンガードは彼を探し出し、いくつか質問をしたいと考えている。ロン・ガンビは長らく行方不明だった兄弟と再開したがっている。だが不幸なことに、彼らだけがマルセルを探しているわけではない。


Esterberg (City) — Wikipedia

by Esoterica, Jasiu06, Jerden, Ralliston, and Zygard

ヴェール崩壊から十年以上が経ち、世界は大きく変貌した。世界の本当の姿を見に行こうか。今度はもっと偏見の少ない組織が語ってくれている。


SCP-6483: The Polar Express

by LORDXVNV and Ralliston

サイト-120に新たな人型アノマリーがやって来たが、彼は本当にクリスマス精神に溢れている。このホリデーぴったりの記事で、この異常性持ちの人物が、ヴァンガードへの移行に伴い、収容から雇用に移り変わる様子を見ていってくれ。


Miau Miau, Asheworth-kun

by LORDXVNV

ダニエル・アシュワースは、同僚にヴァンガードの新たな現状を受け入れさせる……はずだった。 (あと、彼は猫人間ですが、一時的なものです)


Vikander-Kneed Worldwide News

by Cole 13

VKTMはついに財団による50年超の収容から解放され、このヴァンガードの未来で、大々的に大衆に訴えかけている。


The First Occult Flame War

by Guezma, Ralliston and Zygard

何万年もの厄介な歴史を持つ2つの宗教を想像してくれ。彼らが戦争に進み、とてつもない損失を被ったと想像してくれ。彼らがかつての自分たちの影に収まるほどになってしまったと想像してくれ。彼らが現代抱いている恨みつらみを想像してくれ。
光景を思い描けたか?
それじゃそいつをTwitterに投げ込んでくれ。

SCP-7629: Sanctuary of The Sky Keepers

by WarriorofChaos

サイト-120は地下に隠れた、魔法の起源にルーツを持つ古代の強大な種族の末裔を発見する。新たな古代史が明らかになり、共通の敵を持つに至ったことで、SCP財団はこの民族が遥か昔にそうであったように偉大なものとなる支援を行うと決定する。

それに、ハッピーエンドを迎えるドラゴンの記事がそろそろ必要だと思ったんだ!


Public Release of OPERATION: WITNESS Materials

by Jasiu06 and Ralliston

時代は変わったが、GOCは──そう変わらない。ほら、連合がヴェール無き世界のことをどう思ってるのか見に行こう。まあこれあいつらのプロパガンダ資料なんどけどね。


常態

by Jack Ike

ヴェール崩壊は世界を変え、一新した。だが何もすべてがそうなる必要も無い。


関連するポスト・ピボットの作品



I Did Not Fade

by Ralliston

時は2057年、ヴァンガードは30年以上に渡って活動を続け、ダニエル・アシュワースは終わりが迫っていた。彼は長い人生を生きてきた。そして10月10日に彼は目を覚まし、今日が命日だと知っていた。


Order MEF-7629

by Zygard

痕跡を残さず誰かを殺したいけど、一定の基準を持ったプロフェッショナルでもある? そんな貴方にお誂向きの商品がこちら! ハンター・インダストリーズ提供、“ロキータ”ピストル!


Audiolog VNP-507-5386

by Nykacolaquantum

二人の嫌々ながらの次元旅行者が偶然出会い、マルチバース、彼らの人生特有の負担、アラガッダのワインについて、放浪者の図書館の孤立したバージョンで語り合う。





知られざる時間軸



SPC-6500: INFINITESIMAL

by LORDXVNV

SCP宇宙では終わりなき物語が語られる。では、“SPC”宇宙はどうだろう?

分派的解釈


End of the Lonely Wanderer

by Karpfisch

ある者は精魂尽き果てた。ある者は幸福を甘受した。だが多くの者たちは、何年も背負ってきた重荷から解放された。大いなる事変の悲壮な始まり。





詳細



概要


ノー・リターンは『SCP-6500: 避けえないもの』の後日談となるカノンですが、もうお分かりだと思います。このカノンで重要なのは、何よりもまず結末です──我々がSCP-6500を執筆していた時にはっきりしたのですが、読者がどちらのタイムラインを選ぼうとも、財団の概念はもう戻れないほどに変わってしまいます。でもそれでいいのです。『避けえないもの』は、まさに気候変動の寓話そのものなのですから。我々はどちらのタイムラインを出発点にしても、続編を展開させられるような舞台設定を作ろうとしました。

それで、『ノー・リターン』とは何なのでしょうか? それは分岐点の後、2つの全く異なる歴史を辿った世界です。一方では、財団が異常界の支配を続けていますが、知る者たちはSCP-6500が財団のせいであることを把握しています。もう一方では、財団は解散、様々な要注意団体と新組織を結成し (『使者』を読んでください!)、大衆に異常界について教育しようとしています。




評価: +22+x


特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。