Skip to main content

Traveler (Hydro)

Practical config

Use travelerhydro in configs. Aliases: aether-hydro, lumine-hydro, aetherhydro, luminehydro

Code

travelerhydro char lvl=90/90 cons=0 talent=9,9,9;
travelerhydro add weapon="favoniussword" refine=5 lvl=90/90;
travelerhydro add set="emblemofseveredfate" count=4;
travelerhydro 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 travelerhydro_basic_loop() {
  if .travelerhydro.skill.ready {
    travelerhydro skill;
  }
  if .travelerhydro.burst.ready {
    travelerhydro burst;
  }
  travelerhydro attack:3;
}

Start with base_atk_buff

0 for no +3 base atk, 1 (default) for +3 base atk. Set via '+params=[base_atk_buff=...]' in the char's line.

+params=[...]

Character params go on the `char` line.

Code

travelerhydro char lvl=90/90 cons=0 talent=9,9,9 +params=[base_atk_buff=1];

Start with skirk_story_buff

0 for no buffs, 1 (default) for +7 base atk, +15 EM, +50 base HP. Set via '+params=[skirk_story_buff=...]' in the char's line.

+params=[...]

Character params go on the `char` line.

Code

travelerhydro char lvl=90/90 cons=0 talent=9,9,9 +params=[skirk_story_buff=1];

Actions you can write

attack usable directly

Code

travelerhydro attack:3;

charge Need to use attack right before charge.

Code

travelerhydro attack, charge;

skill usable directly

Code

travelerhydro skill;

burst usable directly

Code

travelerhydro burst;

dash usable directly

Code

travelerhydro dash;

jump usable directly

Code

travelerhydro jump;

walk Only skill and burst followed by walk have proper frames.

Code

travelerhydro walk;

swap usable directly

Code

travelerhydro swap;

Special action params

-[base_atk_buff=...] - 0 for no +3 base atk, 1 (default) for +3 base atk. Set via '+params=[base_atk_buff=...]' in the char's line.

Code

travelerhydro -[base_atk_buff=1];

-[skirk_story_buff=...] - 0 for no buffs, 1 (default) for +7 base atk, +15 EM, +50 base HP. Set via '+params=[skirk_story_buff=...]' in the char's line.

Code

travelerhydro -[skirk_story_buff=1];

skill[hold=...] - 0 for Tap (default), 1 for Hold.

Code

travelerhydro skill[hold=1];

skill[hold_ticks=...] - Number of ticks for Hold E. Default 22, maximum 22, minimum 0. Only works if hold = 1. If 0, then a shorter version of Tap will be performed.

Code

travelerhydro skill[hold_ticks=1];

skill[travel=...] - Projectile travel time. Default 6 frames. Only works if hold = 1.

Code

travelerhydro skill[travel=10];

dash[pickup_droplets=...] - Number of picked up Sourcewater Droplets. Default 0.

Code

travelerhydro dash[pickup_droplets=1];

Fields for conditions

No special entries documented.

Frames

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

Hitlag Data

No hitlag data for character

AoE Data

AbilityShapeCenterOffset XOffset YRadiusFan AngleBox XBox YNotes
Aether-N1BoxPlayer----1.42.2-
Aether-N2CirclePlayer-0.61.7180---
Aether-N3BoxPlayer-0.4--1.52.2-
Aether-N4CirclePlayer-0.61.7----
Aether-N5CirclePlayer-0.61.75240---
Lumine-N1CirclePlayer-11.6----
Lumine-N2BoxPlayer----1.42.2-
Lumine-N3CirclePlayer-0.71.5----
Lumine-N4CirclePlayer-0.71.5----
Lumine-N5CirclePlayer-11.6----

Known issues

Does not have any known issues

Names

  • travelerhydro
  • aether-hydro
  • lumine-hydro
  • aetherhydro
  • luminehydro

Legal Actions

AbilityLegalNotes
attack-
chargeNeed to use attack right before charge.
aim-
skill-
burst-
low_plunge-
high_plunge-
dash-
jump-
walkOnly skill and burst followed by walk have proper frames.
swap-

Params

AbilityParamDescription
-base_atk_buff0 for no +3 base atk, 1 (default) for +3 base atk. Set via '+params=[base_atk_buff=...]' in the char's line.
-skirk_story_buff0 for no buffs, 1 (default) for +7 base atk, +15 EM, +50 base HP. Set via '+params=[skirk_story_buff=...]' in the char's line.
skillhold0 for Tap (default), 1 for Hold.
skillhold_ticksNumber of ticks for Hold E. Default 22, maximum 22, minimum 0. Only works if hold = 1. If 0, then a shorter version of Tap will be performed.
skilltravelProjectile travel time. Default 6 frames. Only works if hold = 1.
dashpickup_dropletsNumber of picked up Sourcewater Droplets. Default 0.

Fields

Does not have any fields