Skip to main content

Tighnari

Practical config

Use tighnari in configs. Aliases: None listed.

Code

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

Combo recipes

Safe basic loop

This is the safest starter pattern. It checks if skill/burst are ready before pressing them, then uses attacks as filler. Use it when you do not know a character combo yet.

if .character.skill.ready

This reads the cooldown. If it says ready, the action can be used now. If it is false, the sim skips that action.

attack:3

`attack:3` means three normal attacks in a row. Change the number while you test.

No infinite loop here

This helper runs once when you call it. Put the repeated rotation outside, in your main `for` loop.

Code

fn tighnari_basic_loop() {
  if .tighnari.skill.ready {
    tighnari skill;
  }
  if .tighnari.burst.ready {
    tighnari burst;
  }
  tighnari attack:3;
}

Use attack[travel=...]

Projectile travel time. Default 10 frames.

attack[travel=...]

Action params go inside brackets on the exact action you are casting.

Code

tighnari attack[travel=10];

Use aim[hold=...]

0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Wreath Arrow. If his E state is active, then hold is 2 by default.

aim[hold=...]

Action params go inside brackets on the exact action you are casting.

Code

tighnari aim[hold=1];

Actions you can write

attack usable directly

Code

tighnari attack:3;

aim usable directly

Code

tighnari aim[weakspot=1,travel=10];

skill usable directly

Code

tighnari skill;

burst usable directly

Code

tighnari burst;

dash usable directly

Code

tighnari dash;

jump usable directly

Code

tighnari jump;

walk Only aim followed by walk has proper frames.

Code

tighnari walk;

swap usable directly

Code

tighnari swap;

Special action params

attack[travel=...] - Projectile travel time. Default 10 frames.

Code

tighnari attack[travel=10];

aim[hold=...] - 0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Wreath Arrow. If his E state is active, then hold is 2 by default.

Code

tighnari aim[hold=1];

aim[travel=...] - Projectile travel time. Default 10 frames.

Code

tighnari aim[travel=10];

aim[weakspot=...] - Hit weakspot with aimed shot. Default 0 (false), 1 for true.

Code

tighnari aim[weakspot=1];

aim[wreath=...] - Projectile travel time for Clusterbloom Arrows from when the Wreath Arrow hits. Only available if level is 1. Default 35 frames.

Code

tighnari aim[wreath=1];

skill[travel=...] - Projectile travel time. Default 5 frames.

Code

tighnari skill[travel=10];

burst[travel=...] - Projectile travel time. Default 0 frames.

Code

tighnari burst[travel=10];

Fields for conditions

No special entries documented.

Frames

Video credit: Kolibri#7675
Count: Sheet (credit: Kolibri#7675)

Hitlag Data

AbilityHalt TimeScaleDefense HaltDeployable
Aim-Head0.120.01falsetrue
FullAim-Head0.120.01falsetrue
FullAim-Lv2-Head0.120.01falsetrue

AoE Data

AbilityShapeCenterOffset XOffset YRadiusFan AngleBox XBox YNotes
N1BoxPrimaryTarget--0.5--0.11-
N2BoxPrimaryTarget--0.5--0.11-
N3BoxPrimaryTarget--0.5--0.11-
N4BoxPrimaryTarget--0.5--0.11-

Known issues

Does not have any known issues

Names

  • tighnari

Legal Actions

AbilityLegalNotes
attack-
charge-
aim-
skill-
burst-
low_plunge-
high_plunge-
dash-
jump-
walkOnly aim followed by walk has proper frames.
swap-

Params

AbilityParamDescription
attacktravelProjectile travel time. Default 10 frames.
aimhold0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Wreath Arrow. If his E state is active, then hold is 2 by default.
aimtravelProjectile travel time. Default 10 frames.
aimweakspotHit weakspot with aimed shot. Default 0 (false), 1 for true.
aimwreathProjectile travel time for Clusterbloom Arrows from when the Wreath Arrow hits. Only available if level is 1. Default 35 frames.
skilltravelProjectile travel time. Default 5 frames.
bursttravelProjectile travel time. Default 0 frames.

Fields

Does not have any fields