SCP-XXX-JP - 素成装置(9/6-更新0)

このぺージは削除されていません。

下記ぺージは削除用カテゴリに置かれています。
draft:7801238-9-0205

ページを完全に削除するには「オプション」から「削除」を選択し、「ページを完全に削除する」にチェックをいれてから削除してください。


評価: 0+x
blank.png
: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)); }
}
アイテム番号: XXX-JP
レベル2
収容クラス:
safe
副次クラス:
none
撹乱クラス:
dark
リスククラス:
notice

特別収容プロトコル: SCP-XXX-JPは、標準物品収容ロッカーに保管されます。実験の際はクリアランスレベル3以上の職員の許可を必要とし、また、SCP-XXX-JPの画面の数字を「-2」~「173」の範囲外に設定する行為は禁止されています(インシデント記録XXX-JP参照)。

説明: SCP-XXX-JPは、1辺1mの立方体の形状をした装置です。SCP-XXX-JPを構成する物質は異常な硬度や耐性を有し、既存のいかなる物質でも影響を与えることは不可能です。SCP-XXX-JPの前面は開閉可能であり、SCP-XXX-JP内部に出現した物体に接触することが可能です。SCP-XXX-JPの上部には数字とテキストが表示されたホログラムが存在します。以下は各テキストとそれをタップすることで起こる動作の一覧です。

・「次」「前」数字が1進退。
・「化合」元の数字を固定し、右隣に「+」と新たな数字を表示(これにより化合物の生成が可能となる)。
・「生成」数字と同じ原子番号を持つ元素で構成された物体がSCP-XXX-JP内部に出現。
・「削除」前回生成された物質を消去。

発見: 2018/2/18 0:00、東京都██区に存在するビルの地下駐車場付近で「何か硬い物体が地面に強く衝突したような音を聞いた」という報告が相次ぎ、駆けつけたエージェントが調査した結果、SCP-XXX-JPが無傷の状態で発見されました。発見場所付近の監視カメラ映像では、SCP-XXX-JPが突如空中に出現し、落下する様子が捉えられています。

以下はSCP-XXX-JPの実験記録です。
実験記録XXX-JP-3 - 日付2018/2/18 14:35

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「3」

結果: SCP-XXX-JP内部に1m³のリチウムが出現した。

分析: 数字と同じ原子番号を持つ元素が装置内部を埋め尽くすようだ。-本成博士

実験記録XXX-JP-5 - 日付2018/2/18 15:04

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「1+1+8」

結果: SCP-XXX-JP内部に1m³の水が出現した。

分析: 化合物も生成出来るようだ。生成の対価として何か消費しているものがあるのだろうか。-本成博士

実験記録XXX-JP-6 - 日付2018/2/18 15:29

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「118」

結果: SCP-XXX-JP内部に1m³のオガネソンが出現した。この時、SCP-XXX-JP周辺の空気の一時的減少が観測された。

分析: 周辺の物質から特定の元素を生成するようだ。-本成博士

実験記録XXX-JP-8 - 日付2018/2/18 16:34

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「-1」

結果: SCP-XXX-JP内部に1m³の反水素が出現した。

分析: 物質から反物質を生成出来るようだ。これまでの傾向から「-3」と入力すると反リチウムが生成されることが予想されるが、対消滅で発生するエネルギーによって実験室を惨事に巻き込むことになるだろう。-本成博士

実験XXX-JP-10にて事故が発生しました。以下は当事案をインシデント記録XXX-JPとして記録したものです。
インシデント記録XXX-JP - 日付2018/2/18 17:06

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「174」

結果: SCP-XXX-JP内部に1m³の[削除済]が出現した。[削除済]により、実験室内の全物質が消失、実験に参加したD-XXXXXが[編集済]状態で終了した。

分析: 「174」以降の数字を設定してはならない。あれは存在してはならない。悍ましい物質だ。-本成博士

実験記録XXX-JP-12 - 日付2018/3/11 14:47

対象: SCP-XXX-JP

SCP-XXX-JPのホログラムの数字: 「███1

結果: SCP-XXX-JPのホログラムに「⚠Error! 更新の為、次の電話番号に連絡して下さい。自動新元素登録プログラムが対応致します。████-███-████」と表示された

分析: この番号について調査が必要である。-本成博士

実験XXX-JP-12にてSCP-XXX-JPのホログラムに表示された電話番号は現時点で使用されていない番号であり、過去にこのような番号が使用されていた記録も存在しません。調査は続行されています。
補遺: 20██/7/3、日本新奇原子研究開発所(以降JNARDと表記)の地下一階2に存在する研究室にて小型粒子加速器の開発が進んでいることについてインタビューを実施しました。以下はその記録です。
インタビュー記録XXX-JP

対象: 叶見研究員

インタビュアー: 本成博士

付記: 叶見研究員はJNARDの上席研究員です。

<録音開始>

[無関係な内容を省略]

本成博士: では、あなた方が開発を進めている小型粒子加速器について教えて下さい。

叶見研究員: 私達は、粒子加速器をコンパクトにすることで、素粒子にまつわる研究を飛躍的に進歩させることができると考えています。現在は、直径10mサイズのものが開発されています。最終的に直径1mサイズまで縮めることが目標です。

本成博士: なるほど。それをどのように活用する予定でしょうか。

叶見研究員: 将来的に、他の研究と併せて、小型の装置にする予定です。

本成博士: 他の研究とは?

叶見研究員: 他の物質の影響を受けない素材の開発、原子を素粒子に分解して再利用する研究、時間を逆行させる技術の検証などですね。

本成博士: 時間を逆行させる技術、ですか。

叶見研究員: はい。もし実現すれば、研究にどれほど時間がかかっても、過去に送り返せばその時間を短縮していることになるので、良いのです。何十年経っても、何百年経っても、その時間を帳消しに出来るのですから。

本成博士: では最後に、途中で仰った「小型の装置」の完成図を見せて頂けますか?

叶見研究員: 構いませんよ。少々お待ち下さい。

[叶見研究員が退出し、3分後に再び着席する。叶見研究員が資料を提示する。]

本成博士: これは…

叶見研究員: これが私達、JNARDの最終目標、"特定元素生成装置の開発"の完成図です。

<録音終了>

叶見研究員の提示した資料に描かれていた完成図はSCP-XXX-JPに酷似していました。JNARDは異常な技術を有している可能性が高い為、現在まで調査が続いています。

特に明記しない限り、このページのコンテンツは次のライセンスの下にあります: Creative Commons Attribution-ShareAlike 3.0 License