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

クロリンデ

実用設定

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

スターターをコピー

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

コンボ例

Night Watch loop

During skill state, attack until Bond of Life is high enough, then press skill again.

.clorinde.status.clorinde-night-watch

True while Clorinde is inside her skill stance. The loop ends when the stance ends.

.clorinde.bolratio >= 1

Reads Bond of Life as a ratio. When it is high enough, skill becomes the spender.

while status

Only loop while the status exists. Avoid `while 1` for stance-only logic.

コンボをコピー

fn clorinde_combo() {
  clorinde skill;
  while .clorinde.status.clorinde-night-watch {
    if .clorinde.bolratio >= 1 {
      clorinde skill;
    } else {
      clorinde attack;
    }
  }
}

Combo into burst

Same loop, then burst after the stance ends.

コンボをコピー

clorinde skill;
while .clorinde.status.clorinde-night-watch {
  if .clorinde.bolratio >= 1 {
    clorinde skill;
  } else {
    clorinde attack;
  }
}
clorinde burst;

安全な基本ループ

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

if .character.skill.ready

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

attack:3

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

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

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

コンボをコピー

fn clorinde_basic_loop() {
  if .clorinde.skill.ready {
    clorinde skill;
  }
  if .clorinde.burst.ready {
    clorinde burst;
  }
  clorinde attack:3;
}

書けるアクション

attack 直接使用可能

コマンドをコピー

clorinde attack:3;

charge Need to use attack right before charge.

コマンドをコピー

clorinde attack, charge;

skill 直接使用可能

コマンドをコピー

clorinde skill;

burst 直接使用可能

コマンドをコピー

clorinde burst;

dash 直接使用可能

コマンドをコピー

clorinde dash;

jump 直接使用可能

コマンドをコピー

clorinde jump;

walk 直接使用可能

コマンドをコピー

clorinde walk;

swap 直接使用可能

コマンドをコピー

clorinde swap;

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

特殊項目はまだ記録されていません。

条件用フィールド

特殊項目はまだ記録されていません。

フレーム

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

Hitlag データ

能力停止時間倍率防御停止設置物
N10.030.01truefalse
N20.030.01truefalse
N3-10.030.01truefalse
N3-20.030.01truefalse
N4-10.020.05truefalse
N4-20.020.05truefalse
N4-30.020.05truefalse
N50.030.05truefalse

範囲データ

能力形状中心X オフセットY オフセット半径扇形角度矩形 X矩形 Yメモ
N1CirclePlayer-1.11.7----
N2CirclePlayer-1.31.9----
N3CirclePlayer-1.22.1----
N4-1BoxPlayer-1.3--23.5-
N4-2BoxPlayer-1.3--23-
N4-3BoxPlayer-1.3--23-
N5CirclePlayer-1.42.5----

既知の問題

既知の問題はありません

名前

  • clorinde

使用可能なアクション

能力使用可メモ
attack-
chargeNeed to use attack right before charge.
aim-
skill-
burst-
low_plunge-
high_plunge-
dash-
jump-
walk-
swap-

パラメータ

能力パラメータはありません

フィールド

フィールドはありません