From 6ee67312d47069cf40e0aa82bb35c266491a9b15 Mon Sep 17 00:00:00 2001 From: Ehl'tee Es <127939494+LTS-FFXIV@users.noreply.github.com> Date: Sat, 6 Apr 2024 02:08:08 -0500 Subject: [PATCH] add logic to nascent flash as a mit/heal --- BasicRotations/Tank/WAR_Default.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BasicRotations/Tank/WAR_Default.cs b/BasicRotations/Tank/WAR_Default.cs index c52026e..17118d7 100644 --- a/BasicRotations/Tank/WAR_Default.cs +++ b/BasicRotations/Tank/WAR_Default.cs @@ -115,6 +115,8 @@ protected override bool DefenseSingleAbility(out IAction? act) //10 if (RawIntuitionPvE.CanUse(out act, onLastAbility: true)) return true; } + + if (NascentFlashPvE.CanUse(out act, onLastAbility: true) && NascentFlashPvE.Target.Target?.GetHealthRatio() < 0.6) return true; return false; }