SCP-XXX-JP - 素成装置(第4稿、批評待ち)

現在このページの批評は中断しています。

評価: 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はサイト-81██の標準物品収容ロッカーに保管します。実験の際はセキュリティクリアランスレベル3以上の職員の許可が必要であり、SCP-XXX-JPの画面の数字を「-2」~「1731」の範囲以外に設定することは禁止されています。

説明: SCP-XXX-JPは、一辺1mの立方体の形状をした装置です。SCP-XXX-JPを構成する未知の物質は異常な硬度や不変性を有し、既存のいかなる物質(反物質を含む)でも影響を与えることは不可能です。
SCP-XXX-JPの上底面には一般的に「タッチパネル」と称される画面が存在しており、操作が可能な状態となっています。画面には数字、特定の元素名、元素記号、「次」「前」「化合」「生成」「削除」のテキストが存在します。
以下は各テキストをタップした際の動作です。

・「次」数字が1増加。
・「前」数字が1減少。
(「次」「前」で調整した後の数字を原子番号とする元素の元素名が数字の下部に表示されます。)
・「化合」数字を固定し、数字の横に「+」と他の数字を表示。この数字も「次」「前」を押すことで調整が可能。これにより生成される物質を化合物にすることが可能。
・「生成」表示されていた元素名を持つ元素、またはそれらの元素で構成された物質がSCP-XXX-JP内部に出現。
・「削除」前回SCP-XXX-JPによって生成された物質を削除。

SCP-XXX-JPは前面を上方向にスライドすることで開閉可能であり、SCP-XXX-JP内部に生成された物質に接触することが可能です。SCP-XXX-JPによって生成された元素は天然に存在する元素と同一ですが、例外無く安定しています。

発見経緯: 2018/2/18 0:00、東京都██区に存在するビルの地下駐車場に突如として出現しました。同時刻、同駐車場出口付近にて「何か硬い物体が地面に衝突したような音を聞いた」という報告が相次ぎ、エージェントが捜索したところ、SCP-XXX-JPが衝撃音から推測される外傷が全く存在しない状態で発見されました。発見場所付近の防犯カメラには、SCP-XXX-JPが突如空中に出現し、地面に落下する様子が記録されていました。SCP-XXX-JPが発見された時刻に現場付近にいた一般人にはAクラス記憶処理を行いました。

実験記録: 以下はSCP-XXX-JPに関する実験記録の一部です。
実験記録XXX-JP-3 日時2018/2/18 17:39

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「3」

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

分析: 指定した元素、もしくはその元素で構成された物質を生成する装置のようだ。「化合」は化合物のことだろうか。-本成博士

実験記録XXX-JP-5 日時2018/2/18 17:47

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「1+1+8」

結果: SCP-XXX-JP内部に1m³の水が出現した。水は無味無臭だった。

分析: 水素と酸素の化合物が生成された。生成量は1m³で統一されているようだ。何によってこれらの元素は生成されているのだろうか。詳しい結果を得る為と言って飲んでしまったことを後悔している。 -本成博士

実験記録XXX-JP-6 日時2018/2/18 18:01

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「118」

結果: SCP-XXX-JP内部に1m³のオガネソンが出現した。SCP-XXX-JPの周辺の空気の濃度の低下が確認された。なお、本来非常に不安定な元素であるはずのオガネソンは、SCP-XXX-JPの新たに発覚した異常性により安定している。

分析: SCP-XXX-JPは周辺の空気から元素を生成する、また、発生させた元素を安定化させる異常性を持つ可能性が高い。-本成博士

実験記録XXX-JP-7 日時2018/2/18 18:19

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「0」

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

分析: 数字は自然数でなくとも良いようだ。-本成博士

実験XXX-JP-8において事故が発生しました。以下は本件を事故記録XXX-JP-1として記録したものです。
事故記録XXX-JP-1 日時2018/2/18 19:04

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「175」

結果: SCP-XXX-JP内部に1m³の[編集済]が出現した。[編集済]により、実験室内のSCP-XXX-JP以外の全物質が消失、実験室内部にて[編集済]を観測、実験に参加したD-XXXXXが[編集済]状態で終了した。SCP-XXX-JPの異常性によってSCP-XXX-JPに[編集済]の影響は及ばなかった。

分析: 二度と「175」以降の数字を設定してはならない。こんな物質は宇宙に存在してはならない。今、実験室にいる彼の姿は、あまりに酷く悍ましい。-本成博士

実験記録XXX-JP-9 日時2018/3/21 14:00

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「-1」

結果: SCP-XXX-JP内部に1m³の反水素が出現した。SCP-XXX-JPの異常性によってSCP-XXX-JPとの対消滅は起こらなかった。

分析: 反物質も生成出来るようだ。だがこれは非常に危険な操作である。反リチウム以降の反物質があの装置で生成されると、対消滅で莫大なエネルギーを発すると予想されるからだ。今後はこれに該当する実験は禁止される。…分かりきっているだろう。この装置の持つ異常性は、安定した原子の強制生成。それだけだ。普通に使ってさえいればなにも警戒する必要はないのだ。-本成博士

実験記録XXX-JP-10 日時2018/3/21 14:20

対象: SCP-XXX-JP

SCP-XXX-JPの画面の数字: 「███2

結果: SCP-XXX-JPの画面に「⚠Error! 当該装置の更新が必要な為、次の電話番号にご連絡下さい。自動新元素登録サービスにより更新されます。[編集済]」というテキストが表示された。

分析: 電話番号について調査する必要がある。-本成博士

追記: 実験XXX-JP-10にて表示された電話番号を調査した結果、現時点で使用されていない番号であり、また、過去にこのような番号があったという記録は存在しないことが判明しました。「自動新元素登録サービス」という名称の制度を適用している団体は現時点で存在しません。調査は継続されています。

追加情報の取得には、認証が必要です。

職員コード
パスワード

ページコンソール

批評ステータス

カテゴリ

SCP-JP

本投稿の際にscpタグを付与するJPでのオリジナル作品の下書きが該当します。

GoIF-JP

本投稿の際にgoi-formatタグを付与するJPでのオリジナル作品の下書きが該当します。

Tale-JP

本投稿の際にtaleタグを付与するJPでのオリジナル作品の下書きが該当します。

翻訳

翻訳作品の下書きが該当します。

その他

他のカテゴリタグのいずれにも当て嵌まらない下書きが該当します。

コンテンツマーカー

ジョーク

本投稿の際にジョークタグを付与する下書きが該当します。

アダルト

本投稿の際にアダルトタグを付与する下書きが該当します。

既存記事改稿

本投稿済みの下書きが該当します。

イベント

イベント参加予定の下書きが該当します。

フィーチャー

短編

構文を除き数千字以下の短編・掌編の下書きが該当します。

中編

短編にも長編にも満たない中編の下書きが該当します。

長編

構文を除き数万字以上の長編の下書きが該当します。

事前知識不要

特定の事前知識を求めない下書きが該当します。

フォーマットスクリュー

SCPやGoIFなどのフォーマットが一定の記事種でフォーマットを崩している下書きが該当します。


シリーズ-JP所属

JPのカノンや連作に所属しているか、JPの特定記事の続編の下書きが該当します。

シリーズ-Other所属

JPではないカノンや連作に所属しているか、JPではない特定記事の続編の下書きが該当します。

世界観用語-JP登場

JPのGoIやLoIなどの世界観用語が登場する下書きが該当します。

世界観用語-Other登場

JPではないGoIやLoIなどの世界観用語が登場する下書きが該当します。

ジャンル

アクションSFオカルト/都市伝説感動系ギャグ/コミカルシリアスシュールダーク人間ドラマ/恋愛ホラー/サスペンスメタフィクション歴史

任意

任意A任意B任意C
    • _


    コメント投稿フォームへ

    新たなコメントを追加

    批評コメントTopへ

ERROR

The T2_8na's portal does not exist.


エラー: T2_8naのportalページが存在しません。利用ガイドを参照し、portalページを作成してください。


利用ガイド

  1. portal:7801238 (02 Jan 2022 00:52)
特に明記しない限り、このページのコンテンツは次のライセンスの下にあります: Creative Commons Attribution-ShareAlike 3.0 License