Salty_149の著者ページ


: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)); }
}
saegusa-01.jpg
[[div class="scp-image-caption"]]
七種隊長。20██年に撮影

氏名: 七種さえぐさ 鉄幹てっかん

SCL: 3

所在: サイト-██、任務に応じ現場に派遣

職務: 機動部隊は-61("荒籠")の統率、[SCL不足により制限]

職位: 機動部隊は-61("荒籠")隊長

人物: 七種隊長は年齢70歳、身長184cmの男性です。普段着としてコートを着用することが多く、外出時には黒い中折れ帽をかぶっている様子がよくみられます。

 七種隊長は日本刀、特に太刀の扱いに精通しており、作戦行動中だけでなく、日常的に太刀を身に着け職務にあたっています。刀身は██cmほどであり、本来なら目立たず持ち運びすることは困難ですが、七種隊長は後述の理由からそれを可能にしており、オブジェクトの確保、要人警護、要注意団体の拠点の襲撃など、あらゆる作戦行動において佩用しています。

 七種隊長は呪術に関する知識が豊富であり、前述した太刀による高度な戦闘技術および豊富な知識、経験を高く評価され、呪術的性質を持つオブジェクトの収容や、宗教・儀式に関連する要注意団体の対処を専門とする機動部隊は-61("荒籠")の隊長を任命されました。当初は隊長を務めることにあまり乗り気ではありませんでしたが、現在は隊員らにも非常に慕われており、本人も意欲的にその職務を行っています。
 
 近年七種隊長は、は-61の隊員の増加に伴い、解呪や結界術などの作業の大部分を隊員に任せるようになり、これについて七種隊長は「後任を育てるのも儂の役目じゃろう。」とコメントしています。

決して儂がサボりたいからやっとるわけじゃないぞ、決して。奴らには儂がおらんでもやっていけるようになってもらわないといかん。-七種隊長

 七種隊長は現在開発および試験的に運用されている、反ミーム技術を利用した偽装戦闘服(仮称:タグリヌス-甲型)の着用者として選出されています。これは作戦行動中の着用者の一部あるいは全体を反ミーム的に認識および記憶不可能にするものであり、着用者によるコマンド入力によって隠匿範囲の決定が可能です。七種隊長はこれを「五行の構え」を組み合わせて行っており、これによって財団関連施設外において警戒されることなく太刀の佩用を可能にしています。タグリヌス-甲型が可能な隠匿範囲は現在公開されていませんが、一部の反ミーム効果は財団職員全員が雇用時に受けるミーム接種によって無効化可能なものであるとされています。

 七種隊長が着用している偽装戦闘服は、着用時の安定感や戦闘時の可動性、本人の意向に鑑みて、彼の体形に合わせて動きやすく設計された茶色のコートを模しています。

コートに日本刀の時点で割と動きづらそうですが……。 -██博士
意外とそうでもないんじゃなあ、これが。設計担当の奴に感謝せねばな。-七種隊長

 七種隊長は無類の酒好きで、仲の良い職員と、職位の枠を越えて頻繁に飲んでいる姿が見られます。酒にはかなり強く、いくら飲んでも泥酔した姿を見せることはないため、「あの人、一定以上呑んだらもう酔わない体になっているんじゃないのか」「正体は蟒蛇かなにかなんじゃないか」と噂されることもあるようです。

 人に酒を奢ることも多く、酒を共に飲むのが初めての相手でも、その人に合った酒を奢ることが出来るようで、本人はこれを「数少ない特技」と称しています。

それにしても休肝日を言い当てられたのはちょっと不気味だったぞ。 -██技師
なんとなくお前さんがそういう顔をしておったからの。 -七種隊長

書いたSCP

SCP Rating Comments Created Last Comment

書いたTale

Tale Rating Comments Created Last Comment

翻訳したもの

Translation Rating Comments Created Last Comment
Extra Black Highlighter テーマ 22 1 05 Jun 2024 07:23 10 Jun 2024 07:15
全ての戦線で戦え テーマ(Sigma-9) 16 1 13 Mar 2024 09:32 13 Mar 2024 09:39
全ての戦線で戦え テーマ(BHL) 22 1 12 Mar 2024 07:04 12 Mar 2024 08:32
SCP-3076 5 1 27 Jan 2024 04:54 27 Jan 2024 05:00
SCP-2563 -1 1 14 Dec 2019 09:13 14 Dec 2019 09:20
SCP-2554 7 1 31 Oct 2019 14:17 31 Oct 2019 14:35
SCP-2534 12 1 10 Sep 2019 12:03 10 Sep 2019 13:27
SCP-2340 5 1 27 Aug 2019 10:57 27 Aug 2019 11:07
SCP-4165 35 6 08 Jul 2019 11:15 04 Apr 2020 10:27

執筆や翻訳において役立つサービスやツール等をまとめており、有志の方々によるものを多く含みます。なお、公式のリンク集に掲載されているものは除外しているため、そちらを先に参照することをお勧めします。

執筆

画像

CCライセンスやパブリックドメインで使用できる画像を探す際に便利なサイトです。
すべての画像がSCP-JP上で利用できるわけではないため、画像を利用する際には必ずご自身でライセンスを確認してください。

のいずれかとなっています。

  • 不気味なCC画像bot: SCP記事に使用可能な不気味な雰囲気の画像を紹介するTwitterアカウントです。
  • #寝る前のPDandCC: パブリックドメインやCCライセンスの画像を紹介するTwitterハッシュタグです。

翻訳

  • SCP英単語辞書: SCP記事に頻出する通常語や造語の意味(訳)をまとめた単語集です。翻訳の際に見慣れない単語を見つけた際はここを参照してみてください。
  • SCP用語訳語調査: SCP財団で用いられる用語の訳語を調査したスプレッドシートです。訳語揺れリストも参考になります。
  • toribamiの著者ページ: SCP記事を翻訳し批評に出す際に有用なブックマークレットが多く紹介されています。私自身、本家記事のソースを青字で表示するブックマークレットをよく利用させていただいています。
特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。