Skip to content

Commit

Permalink
Fix Yelan C2 from 12% HP 1.6s CD -> 14% HP 1.8s CD (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie-Zheng authored Jun 8, 2022
1 parent 395e069 commit 4fbee11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/characters/yelan/burst.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func (c *char) summonExquisiteThrow() {
}
if c.Base.Cons >= 2 && c.c2icd <= c.Core.F {
ai.Abil = "Yelan C2 Proc"
ai.FlatDmg = 12.0 / 100 * c.MaxHP()
c.c2icd = c.Core.F + 1.6*60
ai.FlatDmg = 14.0 / 100 * c.MaxHP()
c.c2icd = c.Core.F + 1.8*60
//TODO: frames timing on this?
c.Core.Combat.QueueAttack(ai, core.NewDefCircHit(0.1, false, core.TargettableEnemy), burstHitmarks[3], burstHitmarks[3])
}
Expand Down

0 comments on commit 4fbee11

Please sign in to comment.