From cbf3bbcc941c5669d3153d1c0952046b2fb19086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aventurine=20=F0=9F=92=9A?= <70804225+aventurescence@users.noreply.github.com> Date: Sun, 8 Dec 2024 13:56:53 +0000 Subject: [PATCH] Added IsInFRU --- RotationSolver.Basic/DataCenter.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RotationSolver.Basic/DataCenter.cs b/RotationSolver.Basic/DataCenter.cs index bfd6065b6..4da04bbaf 100644 --- a/RotationSolver.Basic/DataCenter.cs +++ b/RotationSolver.Basic/DataCenter.cs @@ -117,6 +117,7 @@ internal static bool HasApplyStatus(ulong id, StatusID[] ids) public static bool IsInTEA => TerritoryID == 887; public static bool IsInDSR => TerritoryID == 968; public static bool IsInTOP => TerritoryID == 1122; + public static bool IsInFRU => TerritoryID == 1238; public static TerritoryContentType TerritoryContentType => (TerritoryContentType)(ContentFinder?.ContentType.Value.RowId ?? 0); @@ -715,4 +716,4 @@ public static bool IsHostileCastingBase(IBattleChara h, Func check // Invoke the check function on the action and return the result return check?.Invoke(action) ?? false; // Check if check is null } -} \ No newline at end of file +}