HOGSLICE、友達ができる


: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)); }
}
評価: +19+x

うわヤッバ。まさかのAndroid?

何ダテメェハ?????
— HOGSLICE

android使ってんならなんでAppleのフォーラムにいたの?

フルーツ食ッテル腰抜ケ野郎ドモニハロボット(ANDROID(クールダ))ノ方ガフルーツ(俺ナラ握リ潰セル、ズットソウシテキタ)ナンカヨリヨッポド良イッテ思イ知ラセテヤンナキャナンネェ
— HOGSLICE

なんでそんな気が狂ったみたいな文体なの?あとhog slice豚の薄切りって何?
あ、もしかしてポークチョップのこととか

HOGSLICEハ俺ノ名前ダ、ボケナス
— HOGSLICE

わかった「HOGSLICE」ね次からそう書く。趣味ってあるの?お化けとか好き?

オ化ケナンテノハ股間ノコトシカ考エテネェエロガキ共ヲ泣カスタメノオトギ話ダ。俺ハ泣カネェ。ウチノ犬(ブルータス)ガハチニ刺サレタトキ以外ハナ。
— HOGSLIE
ファック
***HOGSLICE

だよね、私もお化け大っ嫌い。

俺ノマネハヤメロ
— HOGSLICE


事案レポート


SCP-6599-1の調査中、同実体がペンシルベニア州ピッツバーグの放棄された倉庫に出現しました。財団の監視カメラは以下の映像を捉えました。


転写


(SCP-6599-1は空室を歩き回っている。時間が経過するにつれ、その様子は明らかに怒りを募らせている。)

SCP-6599-1 クソアマメ、何処ニ隠レテヤガル?

(アメリカ合衆国国歌の一節が実体のポケットから流れる。SCP-6599-1はHuawei Ascend Y530と特定された自身の携帯電話をポケットから取り出し、入力を始める。)

マジで?なんでここが?

何処カラ俺ヲ見テヤガル
— HOGSLICE

そのヒゲ激カワじゃん。自分で染めてんの?

ドウナッテンダコノカスビッチ、殺スゾ。
— HOGSLICE

吹いた

俺ガオ前ノ喉ヲ掴ンダラ、ソノ""吹キ出ス""トヤラモオ終イダ。コノガバ穴ガ。
— HOGSLICE

元気だねー

(SCP-6599-1が、積み上げられた何も置かれていない木製パレットのいくつかをランダムに破壊し始める。)

SCP-6599-1 ファック!

まあ、まあ、落ち着いて~~~~…
向こうにあるパイプ見える?

何ダ
— HOGSLICE

左側の角のとこ行ってみ。パイプがあるの。そいつらがアンタの体ブヨブヨだって言ってた。

俺ヲ担ゴウッタッテソウハイカネェゾ。ココニ残ルパイプハ俺ノパンツノ中ノ1本ダケダ。
— HOGSLICE

(SCP-6599-1は配管の露出した一角に接近する。SCP-6599-1は執拗に銅管を殴りつけ始める。)

SCP-6599-1 俺ニ勝テルト思ッテンノカ!俺ニ勝テル奴ハイネェ。俺ナラ勝テルガナ。

(配管の形状が歪み始める。)

SCP-6599-1 汚ネェピエロガ。ケツデモ舐メテロ。

(配管が破裂し、吹き出した高温の蒸気がSCP-6599-1の顔に掛かる。実体は後ろに倒れ込み、融けた肉が顔から滴り落ちると同時に痛みから叫び始める。)

SCP-6599-1 ヤリヤガッタナ!

(SCP-6599-1が消失する。)

待ってどこ行ったの?

クソッタレ。騙シヤガッタナ。薬局デイブプロフェン買ッテコナキャナラネェジャネェカ。
— HOGSLICE

ひどいなお兄さん、私たち似た者同士だと思ったのに

俺ノタイプジャネェ。俺ガ好キナノハ女ダ
— HOGSLICE

私れっきとした女なんですけど
ねぇ?
もしもーし?
どーも :)
死ね。

アタシハ幽霊少女ダ
—MADDSLICE
ありだな


事案レポート(続)


SCP-6764の発見以後、同オブジェクトはこの事象に関連付けられています。SCP-6599およびSCP-6599-1の活動に変化はなく、後者にパイプの破裂による創傷は存在しません。

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