メインコンテンツまでスキップ

キィニチ

実用設定

使う kinich を config に書きます。 別名: 登録された別名はありません。

スターターをコピー

kinich char lvl=90/90 cons=0 talent=9,9,9;
kinich add weapon="favoniussword" refine=5 lvl=90/90;
kinich add set="emblemofseveredfate" count=4;
kinich add stats hp=4780 atk=311 atk%=0.466 cr=0.311 cd=0.622 er=0.110;

コンボ例

Cannon loop

Attack to build Nightsoul points, wait until 20 points, then fire held skill.

.kinich.nightsoul.points

Current Nightsoul points. His cannon route usually waits for 20.

.kinich.nightsoul.state

Prevents casting the cannon after Nightsoul ended.

skill[hold=1]

This is Kinich's cannon/held skill branch, not the opener skill.

コンボをコピー

fn kinich_combo() {
  kinich skill;

  for let c=0; c<5; c=c+1 {
    kinich attack[direction=1]:2;
    while .kinich.nightsoul.points < 20 && .kinich.nightsoul.state {
      wait(1);
    }
    if .kinich.nightsoul.state {
      kinich skill[hold=1];
    }
  }
}

安全な基本ループ

最初に使うための一番安全な型です。スキルや元素爆発が使えるか確認してから押し、空いた時間は通常攻撃で埋めます。まだ本当のコンボが分からないキャラはここから始めます。

if .character.skill.ready

クールタイムを読んでいます。ready なら今使えます。false ならその行はスキップされます。

attack:3

`attack:3` は通常攻撃を3回続ける意味です。テスト中は数字を変えてください。

ここで無限ループにしない

この helper は呼ばれた時に一回だけ動きます。ローテーション全体の繰り返しは外側の `for` に置きます。

コンボをコピー

fn kinich_basic_loop() {
  if .kinich.skill.ready {
    kinich skill;
  }
  if .kinich.burst.ready {
    kinich burst;
  }
  kinich attack:3;
}

.kinich.blind_spot が続く間だけ待つ

The direction of the Blind Spot relatively to Kinich. -1 - in clock-wise direction; 1 - in counter clock-wise direction; 0 - does not exist at the moment.

現在状態

初期設定ではありません。そのフレームでのシミュレータ内部状態です。

待機上限

状態が変わらない時に設定が止まらないよう、フレーム上限を置きます。

コンボをコピー

let start = f();
while .kinich.blind_spot > 0 && f() - start < 300 {
  kinich attack;
}

attack[direction=...] を使う

Direction in which Kinich move when attached to the opponent: -1 - in clock-wise direction; 1 - in counter clock-wise direction. Default: -1

attack[direction=...]

行動パラメータは、その行動の角括弧内に書きます。

コンボをコピー

kinich attack[direction=1];

skill[travel=...] を使う

弾や投射物の移動時間をフレームで指定します。

skill[travel=...]

行動パラメータは、その行動の角括弧内に書きます。

コンボをコピー

kinich skill[travel=10];

書けるアクション

attack 直接使用可能

コマンドをコピー

kinich attack:3;

charge Need to use attack right before charge. Cannot charge in nightsoul blessing

コマンドをコピー

kinich attack, charge;

skill 直接使用可能

コマンドをコピー

kinich skill;

burst 直接使用可能

コマンドをコピー

kinich burst;

dash 直接使用可能

コマンドをコピー

kinich dash;

jump 直接使用可能

コマンドをコピー

kinich jump;

walk 直接使用可能

コマンドをコピー

kinich walk;

swap 直接使用可能

コマンドをコピー

kinich swap;

low_plunge Previous action must be a jump buffed via Xianyun's burst for example. Cannot low plunge in nightsoul blessing.

コマンドをコピー

kinich low_plunge[collision=0];

high_plunge Previous action must be a jump buffed via Xianyun's burst for example.

コマンドをコピー

kinich high_plunge[collision=0];

アクションの特殊パラメータ

attack[direction=...] - Direction in which Kinich move when attached to the opponent: -1 - in clock-wise direction; 1 - in counter clock-wise direction. Default: -1

コマンドをコピー

kinich attack[direction=1];

skill[travel=...] - 弾や投射物の移動時間をフレームで指定します。

コマンドをコピー

kinich skill[travel=10];

skill[c6_travel=...] - 弾や投射物の移動時間をフレームで指定します。

コマンドをコピー

kinich skill[c6_travel=10];

skill[hold=...] - 0 は通常 tap、1 以上は hold や長い派生を意味することが多いです。

コマンドをコピー

kinich skill[hold=1];

条件用フィールド

.kinich.blind_spot - The direction of the Blind Spot relatively to Kinich. -1 - in clock-wise direction; 1 - in counter clock-wise direction; 0 - does not exist at the moment.

条件をコピー

if .kinich.blind_spot > 0 {
  # action here
}

フレーム

動画クレジット: ange1o5
カウント: シート (クレジット: ange1o5)

Hitlag データ

能力停止時間倍率防御停止設置物
N10.060.01truefalse
N20.090.01truefalse
N30.120.01truefalse

範囲データ

能力形状中心X オフセットY オフセット半径扇形角度矩形 X矩形 Yメモ
N1BoxPlayer--0.7--33-
N2BoxPlayer--1--23.9-
N3BoxPlayer----2.24.3-
E-N1-1CirclePrimaryTarget--0.5----
E-N1-2CirclePrimaryTarget--0.5----

既知の問題

  • The actual Kinich's circular movement is not simulated, so Loop Shots/Scalespiker Cannon will damage the Primary target, which does not depend on attack angle.

名前

  • kinich

使用可能なアクション

能力使用可メモ
attack-
chargeNeed to use attack right before charge. Cannot charge in nightsoul blessing
aim-
skill-
burst-
low_plungePrevious action must be a jump buffed via Xianyun's burst for example. Cannot low plunge in nightsoul blessing.
high_plungePrevious action must be a jump buffed via Xianyun's burst for example.
dash-
jump-
walk-
swap-

パラメータ

能力パラメータ説明
attackdirectionDirection in which Kinich move when attached to the opponent: -1 - in clock-wise direction; 1 - in counter clock-wise direction. Default: -1
skilltravelScalespiker projectile travel time. Default: 13 frames.
skillc6_travelC6 Bounce Scalespiker projectile travel time. Default: 50 frames.
skillhold0 for Tap (default), value between 1 and 301 for Hold to enter Nightsoul and between 1 and 181 to shot Scalespiker. Subtracted by 1 to account for requiring a 1 to activate.

フィールド

フィールド説明
.kinich.blind_spot
The direction of the Blind Spot relatively to Kinich. -1 - in clock-wise direction; 1 - in counter clock-wise direction; 0 - does not exist at the moment.
複数のフィールドがある場合は、どれを使っても機能します。