SCP-3318-JP ダイヤモンドの光

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

評価: 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)); }
}
アイテム番号: 3318
レベル4
収容クラス:
keter
副次クラス:
none
撹乱クラス:
keneq
リスククラス:
warning
pink_diamond_round_cut_gem_stone_cut_glass_facets_reflection-1250579.jpg%21d

収容室内のSCP-3318-JP。写真はDクラス職員によって撮影されました。

特別収容プロトコル: SCP-3318-JPの収容は現在不能です。SCP-3318-JPの周囲6km内は常に閉鎖し、立ち入る人物が現れないように常に拳銃を持たせたDクラス職員によって監視されます。

SCP-3318-JPは、黒曜石で構成された収容室に収容してください。SCP-3318-JPの収容室には監視カメラ、窓などのSCP-3318-JPが視認できる手段がないようにしてください。SCP-3318-JPを用いた実験はいかなる場合でも許可されていません。SCP-3318-JPの回収は、必ずDクラス職員にやらせてください。回収に用いたDクラス職員は回収完了時に終了してください。また、SCP-3318-JPに触れた人物も直ちに終了してください。

SCP-3318-JP-1は確認次第破壊してください。

現在、SCP-3318-JP-Bは逃走中ですが、SCP-3318-JP-Bの胴体にGPS装置を付けることに成功したため現在機動部隊り-45("クリスタルスレイヤー")にて行方を追っています。SCP-3318-JP-Bは発見次第破壊が検討されています。

説明: SCP-3318-JPは、ラウンドカットされたピンクダイヤモンドです。SCP-3318-JPは███産で、発掘作業中に発見されました。

SCP-3318-JPは、光が当たっていないにも関わらず常に光を反射します。その光を見た人物は、やがて苦しみ始め、下痢、嘔吐をします。15~██分後、徐々にその症状は治まり、SCP-3318-JPを持ち帰ろうとします。SCP-3318-JPを6分以上持ち続けた人物は、脳内のSCP-3318-JP以外の記憶を喪失してしまい、脳内はSCP-3318-JPに洗脳されることによってSCP-3318-JPを守り続けます。この状態になった場合、最高強度の記憶処理を実行した場合でも洗脳は解除することは不能です。そして、SCP-3318-JPに触れようとする人物を全て殴殺します。25~██分後、その人物は落ち着き始め、通常の人間のように振舞いますが、またSCP-3318-JPに触れようとする人物が現れた場合は殴殺します。

他の異常性として、SCP-3318-JPの周り5km内には常に放射線に酷似した物質(SCP-3318-JP-Aに指定)が飛び交っています。SCP-3318-JPに当たった人物は、放射線に触れたときと同じような悪影響を及ぼしますが、SCP-3318-JP-Aをすり抜けさせない唯一の物として、黒曜石が挙げられます。そのため、SCP-3318-JPの収容室には黒曜石が使用されています。SCP-3318-JP-Aをすり抜けさせない物が黒曜石の理由は判明していません。

SCP-3318-JP-Aは、ダイヤモンドも影響を受けます。SCP-3318-JP-Aの影響を受けたダイヤモンドはSCP-3318-JP-1に指定されます。

diamond_2.jpg%21d

SCP-3318-JP-Aの影響を受けたSCP-3318-JP-1。

SCP-3318-JP-1は、1時間の間固まっています。固まっている間、重さは█████████tに変わり、現在の技術では動かすことが出来なくなります。1時間が過ぎた後、重さは通常のダイヤモンドと同じ███gに戻りますが、次第に崩壊していきます。最終的に大きさが1.█mmになります。ですが、それから6分後に徐々に大きさが大きくなり、最大で23cmに達します。そしてまた崩壊し始めます。やがて、穴が開き始め、その中から大型爬虫類に酷似した有翼の大型生物(SCP-3318-JP-Bに指定)が出てきます。

White%20dragon.png

機動部隊り-45("クリスタルスレイヤー")隊員にて描かれたSCP-3318-JP-1から出たSCP-3318-JP-B。

SCP-3318-JP-Bは全ての生物に敵対的で、現在逃走中です。また、XK-クラス世界終焉シナリオを引き起こす可能性があります。そのため、SCP-3318-JP-BのオブジェクトクラスはApollyonに分類されています。

収容経緯: SCP-3318-JPは、当初収容不可能でした。ですが、SCP-3318-JP-Aには財団特製の黒曜石で造られた防護服を着させたDクラス職員によってSCP-3318-JPをロボットアームを用いて収容させました。

付与予定タグ: scp jp keter 可視化 岩石 結晶 放射性 k-クラスシナリオ 爬虫類


ページコンソール

批評ステータス

カテゴリ

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 superyuri777's portal does not exist.


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


利用ガイド

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