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

Commit

Permalink
Update SCH_Default.cs
Browse files Browse the repository at this point in the history
per guide on art of war "At 2-3 targets, apply your DoT to all enemies before using this. At 4+ targets, skip your DoT application. Do not use on single target."
Bio for 2 or less targets, art of war for 4 or more
need to adjust count
  • Loading branch information
Rabalaba committed Apr 18, 2024
1 parent 67a2c05 commit 8ce6a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Healer/SCH_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act)
protected override bool GeneralGCD(out IAction? act)
{
if (SummonEosPvE.CanUse(out act)) return true;
if (BioPvE.CanUse(out act) && AllHostileTargets.Where(p => p.DistanceToPlayer() < 5).Count() < 2) return true;
if (BioPvE.CanUse(out act) && AllHostileTargets.Where(p => p.DistanceToPlayer() < 5).Count() < 4) return true;

//AOE
if (ArtOfWarPvE.CanUse(out act)) return true;
Expand Down

0 comments on commit 8ce6a81

Please sign in to comment.