Zum Hauptinhalt springen

Clorinde

Praktische Config

Nutze clorinde in configs. Aliase: Keine Aliase eingetragen.

Starter kopieren

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;

Combo-Beispiele

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.

Combo kopieren

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.

Combo kopieren

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

Sichere Basis-Schleife

Das ist der sicherste Start. Die Schleife prueft erst, ob Skill oder Burst bereit sind, und nutzt danach Angriffe als Fuellung. Nutze sie, wenn du die echte Combo noch nicht kennst.

if .character.skill.ready

Liest den Cooldown. Wenn ready wahr ist, kann die Aktion jetzt benutzt werden. Wenn nicht, ueberspringt der Simulator sie.

attack:3

`attack:3` bedeutet drei normale Angriffe hintereinander. Aendere die Zahl beim Testen.

Keine Endlosschleife hier

Dieser Helper laeuft nur einmal, wenn du ihn aufrufst. Die Wiederholung der Rotation gehoert aussen in die Haupt-`for`-Schleife.

Combo kopieren

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

Schreibbare Aktionen

attack direkt nutzbar

Befehl kopieren

clorinde attack:3;

charge Need to use attack right before charge.

Befehl kopieren

clorinde attack, charge;

skill direkt nutzbar

Befehl kopieren

clorinde skill;

burst direkt nutzbar

Befehl kopieren

clorinde burst;

dash direkt nutzbar

Befehl kopieren

clorinde dash;

jump direkt nutzbar

Befehl kopieren

clorinde jump;

walk direkt nutzbar

Befehl kopieren

clorinde walk;

swap direkt nutzbar

Befehl kopieren

clorinde swap;

Spezielle Aktionsparameter

Keine speziellen Einträge dokumentiert.

Felder für Bedingungen

Keine speziellen Einträge dokumentiert.

Frames

Video-Credit: shizukayuki
Zählung: Tabelle (Credit: shizukayuki)

Hitlag-Daten

FähigkeitHaltezeitSkalierungDefense HaltDeployable
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

AoE-Daten

FähigkeitFormZentrumOffset XOffset YRadiusFächerwinkelBox XBox YNotizen
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----

Bekannte Probleme

Keine bekannten Probleme

Namen

  • clorinde

Gültige Aktionen

FähigkeitErlaubtNotizen
attack-
chargeNeed to use attack right before charge.
aim-
skill-
burst-
low_plunge-
high_plunge-
dash-
jump-
walk-
swap-

Parameter

Keine Fähigkeitsparameter

Felder

Keine Felder