Beidou
Practical config
Use beidou in configs. Aliases: None listed.
Code
beidou char lvl=90/90 cons=0 talent=9,9,9;
beidou add weapon="favoniussword" refine=5 lvl=90/90;
beidou add set="emblemofseveredfate" count=4;
beidou 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 beidou_basic_loop() {
if .beidou.skill.ready {
beidou skill;
}
if .beidou.burst.ready {
beidou burst;
}
beidou attack:3;
}Use skill[counter=...]
Number of counter hits. Default 0. 2 for perfect counter. Does not affect frames.
skill[counter=...]
Action params go inside brackets on the exact action you are casting.
Code
beidou skill[counter=1];Actions you can write
attack usable directly
Code
beidou attack:3;charge Not implemented yet.
Code
beidou attack, charge;skill usable directly
Code
beidou skill;burst usable directly
Code
beidou burst;dash usable directly
Code
beidou dash;jump usable directly
Code
beidou jump;walk No action followed by walk has proper frames.
Code
beidou walk;swap usable directly
Code
beidou swap;Special action params
skill[counter=...] - Number of counter hits. Default 0. 2 for perfect counter. Does not affect frames.
Code
beidou skill[counter=1];Fields for conditions
No special entries documented.
Frames
Count: Sheet (credit: Kurt#5846)
Hitlag Data
- Normal
- Charge Attack
- Skill
- Burst
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| N1 | 0.09 | 0.01 | true | false |
| N2 | 0.12 | 0.01 | true | false |
| N3 | 0.09 | 0.01 | true | false |
| N4 | 0.09 | 0.01 | true | false |
| N5 | 0.12 | 0.01 | true | false |
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| CA-Spinning | 0.03 | 0.01 | true | true |
| CA-Final | 0.15 | 0.01 | true | true |
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| E-Base | 0.09 | 0.01 | true | false |
| E-Stage1 | 0.09 | 0.01 | true | false |
| E-Stage2 | 0.15 | 0.01 | true | false |
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| Q-Initial | 0.1 | 0.01 | false | false |
AoE Data
- Normal
- Charge Attack
- Skill
- Burst
- Cons
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| N1 | Circle | Player | - | 0.5 | 2 | 270 | - | - | - |
| N2 | Box | Player | - | - | - | - | 2 | 2.5 | - |
| N3 | Circle | Player | - | 1 | 2 | - | - | - | - |
| N4 | Circle | Player | - | 1 | 2 | 270 | - | - | - |
| N5 | Box | Player | - | -0.5 | - | - | 2 | 3 | - |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| CA-Spinning | Circle | Player | - | 0.3 | 3 | - | - | - | not implemented yet |
| CA-Final | Circle | Player | - | - | 3.5 | - | - | - | not implemented yet |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| E-Base | Circle | Player | - | - | 6 | - | - | - | - |
| E-Stage1 | Circle | Player | - | - | 7 | - | - | - | - |
| E-Stage2 | Circle | Player | - | - | 8 | - | - | - | Also used for perfect counter. |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| Q-Initial | Circle | Player | - | - | 4 | - | - | - | C6 has an detection area of 5m around Player. |
| Q-Lightning | Single | GlobalValue | - | - | - | - | - | - | Is done as a chain of attacks starting at the target hit and moving on to a different, random enemy if such an enemy exists. |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| Q-C4 | Single | GlobalValue | - | - | - | - | - | - | Spawns on target that C4 proc'd on. |
Known issues
Names
- beidou
Legal Actions
| Ability | Legal | Notes |
|---|---|---|
attack | ✔ | - |
charge | ❌ | Not implemented yet. |
aim | ❌ | - |
skill | ✔ | - |
burst | ✔ | - |
low_plunge | ❌ | - |
high_plunge | ❌ | - |
dash | ✔ | - |
jump | ✔ | - |
walk | ⚠ | No action followed by walk has proper frames. |
swap | ✔ | - |
Params
| Ability | Param | Description |
|---|---|---|
skill | counter | Number of counter hits. Default 0. 2 for perfect counter. Does not affect frames. |