Skip to content

Commit

Permalink
Merge pull request #276 from FFXIV-CombatReborn/dragoon-core-fixes
Browse files Browse the repository at this point in the history
Dragoon Base hotfix
  • Loading branch information
LTS-FFXIV authored Jul 27, 2024
2 parents 258c82e + 3a90ebb commit 165e545
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions RotationSolver.Basic/Rotations/Basic/DragoonRotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ static partial void ModifyDisembowelPvE(ref ActionSetting setting)
{
setting.ComboIds = [ActionID.TrueThrustPvE, ActionID.RaidenThrustPvE];
setting.StatusProvide = [StatusID.PowerSurge_2720];
setting.CreateConfig = () => new()
{
StatusGcdCount = 3,
};
}

static partial void ModifyFullThrustPvE(ref ActionSetting setting)
Expand Down Expand Up @@ -97,7 +101,7 @@ static partial void ModifyDoomSpikePvE(ref ActionSetting setting)
setting.UnlockedByQuestID = 66605;
setting.CreateConfig = () => new()
{
AoeCount = 2,
AoeCount = 3,
};
}

Expand All @@ -111,6 +115,10 @@ static partial void ModifyChaosThrustPvE(ref ActionSetting setting)
{
setting.ComboIds = [ActionID.DisembowelPvE];
setting.TargetStatusProvide = [StatusID.ChaoticSpring];
setting.CreateConfig = () => new()
{
StatusGcdCount = 3,
};
}

//Class
Expand Down Expand Up @@ -164,7 +172,7 @@ static partial void ModifySonicThrustPvE(ref ActionSetting setting)
setting.StatusProvide = [StatusID.PowerSurge_2720];
setting.CreateConfig = () => new()
{
AoeCount = 2,
AoeCount = 3,
};
}

Expand Down Expand Up @@ -195,7 +203,7 @@ static partial void ModifyCoerthanTormentPvE(ref ActionSetting setting)
setting.ComboIds = [ActionID.SonicThrustPvE];
setting.CreateConfig = () => new()
{
AoeCount = 2,
AoeCount = 3,
};
}

Expand Down Expand Up @@ -224,7 +232,7 @@ static partial void ModifyDraconianFuryPvE(ref ActionSetting setting)
setting.StatusNeed = [StatusID.DraconianFire];
setting.CreateConfig = () => new()
{
AoeCount = 2,
AoeCount = 3,
};
}

Expand All @@ -237,6 +245,10 @@ static partial void ModifyChaoticSpringPvE(ref ActionSetting setting)
{
setting.ComboIds = [ActionID.SpiralBlowPvE];
setting.TargetStatusProvide = [StatusID.ChaoticSpring];
setting.CreateConfig = () => new()
{
StatusGcdCount = 3,
};
}

static partial void ModifyWyrmwindThrustPvE(ref ActionSetting setting)
Expand Down Expand Up @@ -267,6 +279,10 @@ static partial void ModifySpiralBlowPvE(ref ActionSetting setting)
{
setting.ComboIds = [ActionID.TrueThrustPvE, ActionID.RaidenThrustPvE];
setting.StatusProvide = [StatusID.PowerSurge_2720];
setting.CreateConfig = () => new()
{
StatusGcdCount = 3,
};
}

static partial void ModifyStarcrossPvE(ref ActionSetting setting)
Expand Down Expand Up @@ -300,4 +316,4 @@ protected override bool MoveBackAbility(IAction nextGCD, out IAction? act)
if (ElusiveJumpPvE.CanUse(out act)) return true;
return base.MoveBackAbility(nextGCD, out act);
}
}
}

0 comments on commit 165e545

Please sign in to comment.