Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Update WAR_Default.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV authored Apr 6, 2024
1 parent 66769d9 commit 0275dbc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions BasicRotations/Tank/WAR_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ protected override bool GeneralAbility(out IAction? act)
if (EquilibriumPvE.CanUse(out act)) return true;
}

if (!HasTankStance && NascentFlashPvE.CanUse(out act)) return true;

return base.GeneralAbility(out act);
}

Expand All @@ -115,8 +113,6 @@ protected override bool DefenseSingleAbility(out IAction? act)
//10
if (RawIntuitionPvE.CanUse(out act, onLastAbility: true)) return true;
}

if (NascentFlashPvE.CanUse(out act, onLastAbility: true)) return true;

return false;
}
Expand Down Expand Up @@ -144,4 +140,14 @@ protected override bool DefenseAreaAbility(out IAction? act)
if (ReprisalPvE.CanUse(out act, skipAoeCheck: true)) return true;
return base.DefenseAreaAbility(out act);
}

[RotationDesc(ActionID.NascentFlashPvE)]
protected override bool HealSingleGCD(out IAction? act)
{

if (NascentFlashPvE.CanUse(out act)
&& (InCombat || NascentFlashPvE.Target.Target?.GetHealthRatio() > 0.6)) return true;

return base.HealSingleGCD(out act);
}
}

0 comments on commit 0275dbc

Please sign in to comment.