diff --git a/RotationSolver.Basic/Configuration/Configs.cs b/RotationSolver.Basic/Configuration/Configs.cs index aab446155..83997e9cf 100644 --- a/RotationSolver.Basic/Configuration/Configs.cs +++ b/RotationSolver.Basic/Configuration/Configs.cs @@ -132,6 +132,18 @@ public const string Filter = TargetConfig)] private static readonly bool _filterOneHPInvincible = true; + [ConditionBool, UI("Ignore immune Ark Angels in Jenuo: The First Walk.", + Filter = TargetConfig)] + private static readonly bool _jeunoTarget = true; + + [ConditionBool, UI("Ignore immune targets in Cloud of Darkenss Chaotic.", + Filter = TargetConfig)] + private static readonly bool _cODTarget = true; + + [ConditionBool, UI("Ignore Strong of Shield target (Hansel and Gretel) in The Tower at Paradigm's Breach if you will hit shield.", + Filter = TargetConfig)] + private static readonly bool _strongOfSheildTarget = true; + [ConditionBool, UI("Teaching mode", Filter = UiInformation)] private static readonly bool _teachingMode = false; diff --git a/RotationSolver.Basic/Helpers/ObjectHelper.cs b/RotationSolver.Basic/Helpers/ObjectHelper.cs index 793c2b7cc..08d1ccc76 100644 --- a/RotationSolver.Basic/Helpers/ObjectHelper.cs +++ b/RotationSolver.Basic/Helpers/ObjectHelper.cs @@ -88,7 +88,9 @@ internal static bool IsAttackable(this IBattleChara battleChara) if (Service.Config.FilterOneHpInvincible && battleChara.CurrentHp <= 1) return false; // Check if the target is invincible. - if (battleChara.IsJeunoBossImmune()) return false; + if (Service.Config.CodTarget && battleChara.IsCODBossImmune()) return false; + if (Service.Config.JeunoTarget && battleChara.IsJeunoBossImmune()) return false; + if (Service.Config.StrongOfSheildTarget && battleChara.IsHanselorGretelSheilded()) return false; // Ensure StatusList is not null before accessing it if (battleChara.StatusList == null) return false; @@ -437,6 +439,12 @@ internal static bool CanInterrupt(this IGameObject o) { if (o is not IBattleChara b) return false; + // Ensure the IBattleChara object is valid before accessing its properties + unsafe + { + if (b.Struct() == null) return false; + } + var baseCheck = b.IsCasting && b.IsCastInterruptible && b.TotalCastTime >= 2; if (!baseCheck) return false; if (!Service.Config.InterruptibleMoreCheck) return false; @@ -504,6 +512,74 @@ public static bool IsJeunoBossImmune(this IBattleChara obj) return false; } + /// + /// Is target COD Boss immune. + /// + /// the object. + /// + public static bool IsCODBossImmune(this IBattleChara obj) + { + var player = Player.Object; + + var StygianStatus = StatusID.UnnamedStatus_4388; + var CloudOfDarknessStatus = StatusID.VeilOfDarkness; + var AntiCloudOfDarknessStatus = StatusID.Rsv41771100S74Cfc3B0E74Cfc3B0; + var AntiStygianStatus = StatusID.Rsv41771100S74Cfc3B0E74Cfc3B0; + + if (obj.IsEnemy()) + { + if (obj.HasStatus(false, CloudOfDarknessStatus) && + player.HasStatus(false, AntiCloudOfDarknessStatus)) + { + if (Service.Config.InDebug) + { + Svc.Log.Information("IsCODBossImmune: VeilOfDarkness status found, CloudOfDarkness immune"); + } + return true; + } + + if (obj.HasStatus(false, StygianStatus) && + player.HasStatus(false, AntiStygianStatus)) + { + if (Service.Config.InDebug) + { + Svc.Log.Information("IsCODBossImmune: UnnamedStatus4388 status found, Stygian immune"); + } + return true; + } + } + + return false; + } + + /// + /// Is target Jeuno Boss immune. + /// + /// the object. + /// + public static bool IsHanselorGretelSheilded(this IBattleChara obj) + { + var player = Player.Object; + + var strongOfShieldPositional = EnemyPositional.Front; + var strongOfShieldStatus = StatusID.StrongOfShield; + + if (obj.IsEnemy()) + { + if (obj.HasStatus(false, strongOfShieldStatus) && + strongOfShieldPositional != obj.FindEnemyPositional()) + { + if (Service.Config.InDebug) + { + Svc.Log.Information("IsHanselorGretelSheilded: StrongOfShield status found, ignoring status haver if player is out of position"); + } + return true; + } + } + + return false; + } + /// /// Is target a boss depends on the ttk. /// diff --git a/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs index 8bce3e3ec..5a1cda495 100644 --- a/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs @@ -1,17 +1,29 @@ using Lumina.Excel.GeneratedSheets; namespace RotationSolver.GameData.Getters.Actions; + +/// +/// Class for getting ActionCategory rows from the game data. +/// internal class ActionCategoryGetter(Lumina.GameData gameData) : ExcelRowGetter(gameData) { - private readonly List _addedNames = []; + private readonly HashSet _addedNames = new(); + /// + /// Called before creating the list of items. Clears the list of added names. + /// protected override void BeforeCreating() { _addedNames.Clear(); base.BeforeCreating(); } + /// + /// Determines whether the specified ActionCategory item should be added to the list. + /// + /// The ActionCategory item to check. + /// True if the item should be added; otherwise, false. protected override bool AddToList(ActionCategory item) { var name = item.Name.RawString; @@ -20,6 +32,11 @@ protected override bool AddToList(ActionCategory item) return true; } + /// + /// Converts the specified ActionCategory item to its code representation. + /// + /// The ActionCategory item to convert. + /// The code representation of the item. protected override string ToCode(ActionCategory item) { var name = item.Name.RawString.ToPascalCase(); @@ -40,4 +57,4 @@ protected override string ToCode(ActionCategory item) {name} = {item.RowId}, """; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs b/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs index 4fe4eea95..5486c2f5d 100644 --- a/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs @@ -3,48 +3,60 @@ namespace RotationSolver.GameData.Getters.Actions; -internal abstract class ActionGetterBase(Lumina.GameData gameData) - : ExcelRowGetter(gameData) +/// +/// Abstract base class for getting action rows from the Excel sheet. +/// +internal abstract class ActionGetterBase : ExcelRowGetter { - public List AddedNames { get; } = []; - private string[] _notCombatJobs = []; + /// + /// Initializes a new instance of the class. + /// + /// The game data. + protected ActionGetterBase(Lumina.GameData gameData) : base(gameData) { } + + /// + /// Gets the list of added names. + /// + public List AddedNames { get; } = new(); + + private string[] _notCombatJobs = Array.Empty(); + + /// + /// Called before creating the list of items. + /// protected override void BeforeCreating() { AddedNames.Clear(); - _notCombatJobs = [.. _gameData.GetExcelSheet()!.Where(c => - { - return c.ClassJobCategory.Row is 32 or 33; - }).Select(c => c.Abbreviation.RawString)]; + _notCombatJobs = _gameData.GetExcelSheet()! + .Where(c => c.ClassJobCategory.Row is 32 or 33) + .Select(c => c.Abbreviation.RawString) + .ToArray(); base.BeforeCreating(); } + /// + /// Determines whether the specified action should be added to the list. + /// + /// The action to check. + /// True if the action should be added; otherwise, false. protected override bool AddToList(Action item) { - if (item.RowId is 3 or 120) return true; //Sprint and cure. + if (item.RowId is 3 or 120) return true; // Sprint and cure. if (item.ClassJobCategory.Row == 0) return false; + var name = item.Name.RawString; if (string.IsNullOrEmpty(name)) return false; if (!name.All(char.IsAscii)) return false; if (item.Icon is 0 or 405) return false; - if (item.ActionCategory.Row - is 6 or 7 // No DoL or DoH Action - or 8 //No Event. - or 12 // No Mount, - or > 14 // No item manipulation and other thing. - or 9 //No LB, - ) return false; + if (item.ActionCategory.Row is 6 or 7 or 8 or 12 or > 14 or 9) return false; - //No crafting or gathering. var category = item.ClassJobCategory.Value; if (category == null) return false; if (category.RowId == 1) return true; - if (_notCombatJobs.Any(name => - { - return (bool?)category.GetType().GetRuntimeProperty(name)?.GetValue(category) ?? false; - })) + if (_notCombatJobs.Any(jobName => (bool?)category.GetType().GetRuntimeProperty(jobName)?.GetValue(category) ?? false)) { return false; } @@ -52,14 +64,18 @@ or 8 //No Event. return true; } + /// + /// Gets the name of the specified action. + /// + /// The action. + /// The name of the action. protected string GetName(Action item) { - var name = item.Name.RawString.ToPascalCase() - + (item.IsPvP ? "PvP" : "PvE"); + var name = item.Name.RawString.ToPascalCase() + (item.IsPvP ? "PvP" : "PvE"); if (AddedNames.Contains(name)) { - name += "_" + item.RowId.ToString(); + name += "_" + item.RowId; } else { @@ -68,10 +84,14 @@ protected string GetName(Action item) return name; } + /// + /// Gets the description of the specified action. + /// + /// The action. + /// The description of the action. protected string GetDesc(Action item) { var desc = _gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; - return $"{desc.Replace("\n", "\n/// ")}"; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/Actions/ActionIdGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionIdGetter.cs index 849a26821..a7864fdf7 100644 --- a/RotationSolver.GameData/Getters/Actions/ActionIdGetter.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionIdGetter.cs @@ -2,9 +2,25 @@ namespace RotationSolver.GameData.Getters.Actions; -internal class ActionIdGetter(Lumina.GameData gameData) - : ActionGetterBase(gameData) +/// +/// Class for getting action IDs from the Excel sheet. +/// +internal class ActionIdGetter : ActionGetterBase { + /// + /// Initializes a new instance of the class. + /// + /// The game data. + public ActionIdGetter(Lumina.GameData gameData) + : base(gameData) + { + } + + /// + /// Converts the specified action to its code representation. + /// + /// The action to convert. + /// The code representation of the action. protected override string ToCode(Action item) { var name = GetName(item); @@ -17,4 +33,4 @@ protected override string ToCode(Action item) {name} = {item.RowId}, """; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/Actions/ActionRotationGetterBase.cs b/RotationSolver.GameData/Getters/Actions/ActionRotationGetterBase.cs index ab388dfaf..7db317e61 100644 --- a/RotationSolver.GameData/Getters/Actions/ActionRotationGetterBase.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionRotationGetterBase.cs @@ -1,7 +1,24 @@ namespace RotationSolver.GameData.Getters.Actions; -internal abstract class ActionRotationGetterBase(Lumina.GameData gameData) - : ActionGetterBase(gameData) + +/// +/// Abstract base class for getting action rotation rows from the Excel sheet. +/// +internal abstract class ActionRotationGetterBase : ActionGetterBase { + /// + /// Initializes a new instance of the class. + /// + /// The game data. + protected ActionRotationGetterBase(Lumina.GameData gameData) + : base(gameData) + { + } + + /// + /// Converts the specified action item to its code representation. + /// + /// The action item to convert. + /// The code representation of the action item. protected override string ToCode(Lumina.Excel.GeneratedSheets.Action item) { var name = GetName(item); @@ -10,5 +27,8 @@ protected override string ToCode(Lumina.Excel.GeneratedSheets.Action item) return item.ToCode(name, descName, GetDesc(item), IsDutyAction); } + /// + /// Gets a value indicating whether the action is a duty action. + /// public abstract bool IsDutyAction { get; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/Actions/ActionRotationGetters.cs b/RotationSolver.GameData/Getters/Actions/ActionRotationGetters.cs index d422a2dd3..3fc6b6536 100644 --- a/RotationSolver.GameData/Getters/Actions/ActionRotationGetters.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionRotationGetters.cs @@ -2,28 +2,45 @@ namespace RotationSolver.GameData.Getters.Actions; +/// +/// Gets the single rotation actions for a specific job. +/// internal class ActionSingleRotationGetter(Lumina.GameData gameData, ClassJob job) : ActionRotationGetterBase(gameData) { + /// + /// Gets a value indicating whether the action is a duty action. + /// public override bool IsDutyAction => false; + /// + /// Adds the specified action to the list if it meets the criteria. + /// + /// The action item to check. + /// True if the action is added; otherwise, false. protected override bool AddToList(Lumina.Excel.GeneratedSheets.Action item) { if (!base.AddToList(item)) return false; var category = item.ClassJobCategory.Value; - if (category == null) return false; - - if (!category.IsSingleJobForCombat()) return false; + if (category == null || !category.IsSingleJobForCombat()) return false; var jobName = job.Abbreviation.RawString; return (bool?)category.GetType().GetRuntimeProperty(jobName)?.GetValue(category) ?? false; } } +/// +/// Abstract base class for getting multi-rotation actions. +/// internal abstract class ActionMultiRotationGetter(Lumina.GameData gameData) : ActionRotationGetterBase(gameData) { + /// + /// Determines whether the specified action is a duty action. + /// + /// The action to check. + /// True if the action is a duty action; otherwise, false. protected static bool IsADutyAction(Lumina.Excel.GeneratedSheets.Action action) { return !action.IsRoleAction && !action.IsPvP && action.ActionCategory.Row @@ -31,24 +48,38 @@ is not 10 and not 11 // Not System and not 9 and not 15; // Not LB. } + /// + /// Adds the specified action to the list if it meets the criteria. + /// + /// The action item to check. + /// True if the action is added; otherwise, false. protected override bool AddToList(Lumina.Excel.GeneratedSheets.Action item) { if (!base.AddToList(item)) return false; var category = item.ClassJobCategory.Value; - if (category == null) return false; - - if (category.IsSingleJobForCombat()) return false; + if (category == null || category.IsSingleJobForCombat()) return false; return true; } } +/// +/// Gets the duty rotation actions. +/// internal class ActionDutyRotationGetter(Lumina.GameData gameData) : ActionMultiRotationGetter(gameData) { + /// + /// Gets a value indicating whether the action is a duty action. + /// public override bool IsDutyAction => true; + /// + /// Adds the specified action to the list if it meets the criteria. + /// + /// The action item to check. + /// True if the action is added; otherwise, false. protected override bool AddToList(Lumina.Excel.GeneratedSheets.Action item) { if (!base.AddToList(item)) return false; @@ -56,14 +87,25 @@ protected override bool AddToList(Lumina.Excel.GeneratedSheets.Action item) } } +/// +/// Gets the role rotation actions. +/// internal class ActionRoleRotationGetter(Lumina.GameData gameData) : ActionMultiRotationGetter(gameData) { + /// + /// Gets a value indicating whether the action is a duty action. + /// public override bool IsDutyAction => false; + /// + /// Adds the specified action to the list if it meets the criteria. + /// + /// The action item to check. + /// True if the action is added; otherwise, false. protected override bool AddToList(Lumina.Excel.GeneratedSheets.Action item) { if (!base.AddToList(item)) return false; return !IsADutyAction(item); } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/ContentTypeGetter.cs b/RotationSolver.GameData/Getters/ContentTypeGetter.cs index ae6f0fd56..7ebccc12b 100644 --- a/RotationSolver.GameData/Getters/ContentTypeGetter.cs +++ b/RotationSolver.GameData/Getters/ContentTypeGetter.cs @@ -1,17 +1,33 @@ using Lumina.Excel.GeneratedSheets; namespace RotationSolver.GameData.Getters; + +/// +/// A class to get content types from the game data. +/// internal class ContentTypeGetter(Lumina.GameData gameData) : ExcelRowGetter(gameData) { + /// + /// Determines whether the specified item should be added to the list. + /// + /// The content type item. + /// true if the item should be added; otherwise, false. protected override bool AddToList(ContentType item) { var name = item.Name.RawString; - if (string.IsNullOrEmpty(name)) return false; - if (!name.All(char.IsAscii)) return false; + if (string.IsNullOrEmpty(name) || !name.All(char.IsAscii)) + { + return false; + } return true; } + /// + /// Converts the specified item to code. + /// + /// The content type item. + /// The generated code for the item. protected override string ToCode(ContentType item) { var name = item.Name.RawString.ToPascalCase(); @@ -22,4 +38,4 @@ protected override string ToCode(ContentType item) {name} = {item.RowId}, """; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/ExcelRowGetter.cs b/RotationSolver.GameData/Getters/ExcelRowGetter.cs index 53e76bb17..4502f7d41 100644 --- a/RotationSolver.GameData/Getters/ExcelRowGetter.cs +++ b/RotationSolver.GameData/Getters/ExcelRowGetter.cs @@ -1,27 +1,54 @@ using Lumina.Excel; -namespace RotationSolver.GameData.Getters; -internal abstract class ExcelRowGetter(Lumina.GameData gameData) where T : ExcelRow +namespace RotationSolver.GameData.Getters { - protected Lumina.GameData _gameData = gameData; - public int Count { get; private set; } = 0; - - protected abstract bool AddToList(T item); - protected abstract string ToCode(T item); - - protected virtual void BeforeCreating() { } - - - public string GetCode() + /// + /// Abstract base class for getting Excel rows. + /// + /// Type of the Excel row. + internal abstract class ExcelRowGetter(Lumina.GameData gameData) where T : ExcelRow { - var items = _gameData.GetExcelSheet(); - - if (items == null) return string.Empty; - BeforeCreating(); - - var filteredItems = items.Where(AddToList); - Count = filteredItems.Count(); - - return string.Join("\n", filteredItems.Select(ToCode)); + protected readonly Lumina.GameData _gameData = gameData ?? throw new ArgumentNullException(nameof(gameData)); + + /// + /// Gets the count of filtered items. + /// + public int Count { get; private set; } = 0; + + /// + /// Determines whether the specified item should be added to the list. + /// + /// The item to check. + /// True if the item should be added; otherwise, false. + protected abstract bool AddToList(T item); + + /// + /// Converts the specified item to code. + /// + /// The item to convert. + /// The code representation of the item. + protected abstract string ToCode(T item); + + /// + /// Called before creating the list of items. + /// + protected virtual void BeforeCreating() { } + + /// + /// Gets the code representation of the filtered items. + /// + /// The code representation of the filtered items. + public string GetCode() + { + var items = _gameData.GetExcelSheet(); + + if (items == null) return string.Empty; + BeforeCreating(); + + var filteredItems = items.Where(AddToList); + Count = filteredItems.Count(); + + return string.Join("\n", filteredItems.Select(ToCode)); + } } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/ItemGetter.cs b/RotationSolver.GameData/Getters/ItemGetter.cs index 86b32c5f9..15720b39d 100644 --- a/RotationSolver.GameData/Getters/ItemGetter.cs +++ b/RotationSolver.GameData/Getters/ItemGetter.cs @@ -2,17 +2,31 @@ namespace RotationSolver.GameData.Getters; +/// +/// Class responsible for getting and processing items from the game data. +/// internal class ItemGetter(Lumina.GameData gameData) : ExcelRowGetter(gameData) { - public List AddedNames { get; } = []; + /// + /// Gets the list of added item names. + /// + public List AddedNames { get; } = new List(); + /// + /// Clears the list of added item names before creating the list of items. + /// protected override void BeforeCreating() { AddedNames.Clear(); base.BeforeCreating(); } + /// + /// Determines whether the specified item should be added to the list. + /// + /// The item to check. + /// True if the item should be added; otherwise, false. protected override bool AddToList(Item item) { if (item.ItemSearchCategory.Row != 43) return false; @@ -21,12 +35,17 @@ protected override bool AddToList(Item item) return true; } + /// + /// Converts the specified item to its code representation. + /// + /// The item to convert. + /// The code representation of the item. protected override string ToCode(Item item) { var name = item.Singular.RawString.ToPascalCase(); if (AddedNames.Contains(name)) { - name += "_" + item.RowId.ToString(); + name += $"_{item.RowId}"; } else { @@ -34,7 +53,6 @@ protected override string ToCode(Item item) } var desc = item.Description.RawString ?? string.Empty; - desc = $"{desc.Replace("\n", "\n/// ")}"; var descName = $"{item.Name.RawString} [{item.RowId}]"; @@ -49,4 +67,4 @@ protected override string ToCode(Item item) public IBaseItem {{name}} => _{{name}}Creator.Value; """; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/RotationGetter.cs b/RotationSolver.GameData/Getters/RotationGetter.cs index 034713e12..07159afdb 100644 --- a/RotationSolver.GameData/Getters/RotationGetter.cs +++ b/RotationSolver.GameData/Getters/RotationGetter.cs @@ -3,25 +3,40 @@ namespace RotationSolver.GameData.Getters; -internal class RotationGetter(Lumina.GameData gameData, ClassJob job) +/// +/// Provides methods to generate rotation code for a specific job. +/// +internal class RotationGetter { - public string GetName() + private readonly Lumina.GameData gameData; + private readonly ClassJob job; + + /// + /// Initializes a new instance of the class. + /// + /// The game data. + /// The job. + public RotationGetter(Lumina.GameData gameData, ClassJob job) { - return (job.Name.ToString() + " Rotation").ToPascalCase(); + this.gameData = gameData; + this.job = job; } + /// + /// Gets the name of the rotation. + /// + /// The name of the rotation. + public string GetName() => $"{job.Name} Rotation".ToPascalCase(); + + /// + /// Generates the rotation code. + /// + /// The generated rotation code. public string GetCode() { var jobName = job.Name.ToString(); - - var jobs = $"Job.{job.Abbreviation}"; - if (job.RowId != 28 && job.RowId != job.ClassJobParent.Row) - { - jobs += $", Job.{job.ClassJobParent.Value?.Abbreviation ?? "ADV"}"; - } - - var jobGauge = job.Abbreviation == "BLU" ? string.Empty : $"static {job.Abbreviation}Gauge JobGauge => Svc.Gauges.Get<{job.Abbreviation}Gauge>();"; - + var jobs = GetJobs(); + var jobGauge = GetJobGauge(); var rotationsGetter = new ActionSingleRotationGetter(gameData, job); var traitsGetter = new TraitRotationGetter(gameData, job); @@ -64,10 +79,35 @@ public abstract partial class {{GetName()}} : CustomRotation """; } + /// + /// Gets the jobs associated with the current job. + /// + /// A string representing the jobs. + private string GetJobs() + { + var jobs = $"Job.{job.Abbreviation}"; + if (job.RowId != 28 && job.RowId != job.ClassJobParent.Row) + { + jobs += $", Job.{job.ClassJobParent.Value?.Abbreviation ?? "ADV"}"; + } + return jobs; + } + + /// + /// Gets the job gauge code. + /// + /// The job gauge code. + private string GetJobGauge() => job.Abbreviation == "BLU" ? string.Empty : $"static {job.Abbreviation}Gauge JobGauge => Svc.Gauges.Get<{job.Abbreviation}Gauge>();"; + + /// + /// Gets the limit break code for a specific action. + /// + /// The action. + /// The index of the limit break. + /// The limit break code. private string GetLBInRotation(Lumina.Excel.GeneratedSheets.Action? action, int index) { - if (action == null) return string.Empty; - if (action.RowId == 0) return string.Empty; + if (action == null || action.RowId == 0) return string.Empty; var code = GetLBPvE(action, out var name); @@ -79,17 +119,29 @@ private string GetLBInRotation(Lumina.Excel.GeneratedSheets.Action? action, int private sealed protected override IBaseAction LimitBreak{index} => {name}; """; } + + /// + /// Gets the PvE limit break code for a specific action. + /// + /// The action. + /// The name of the limit break. + /// The PvE limit break code. private string GetLBPvE(Lumina.Excel.GeneratedSheets.Action action, out string name) { - name = action.Name.RawString.ToPascalCase() + $"PvE"; + name = $"{action.Name.RawString.ToPascalCase()}PvE"; var descName = action.GetDescName(); return action.ToCode(name, descName, GetDesc(action), false); } + + /// + /// Gets the PvP limit break code for a specific action. + /// + /// The action. + /// The PvP limit break code. private string GetLBInRotationPvP(Lumina.Excel.GeneratedSheets.Action? action) { - if (action == null) return string.Empty; - if (action.RowId == 0) return string.Empty; + if (action == null || action.RowId == 0) return string.Empty; var code = GetLBPvP(action, out var name); @@ -102,18 +154,28 @@ private string GetLBInRotationPvP(Lumina.Excel.GeneratedSheets.Action? action) """; } + /// + /// Gets the PvP limit break code for a specific action. + /// + /// The action. + /// The name of the limit break. + /// The PvP limit break code. private string GetLBPvP(Lumina.Excel.GeneratedSheets.Action action, out string name) { - name = action.Name.RawString.ToPascalCase() + $"PvP"; + name = $"{action.Name.RawString.ToPascalCase()}PvP"; var descName = action.GetDescName(); return action.ToCode(name, descName, GetDesc(action), false); } + /// + /// Gets the description of a specific action. + /// + /// The action. + /// The description of the action. private string GetDesc(Lumina.Excel.GeneratedSheets.Action item) { var desc = gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; - return $"{desc.Replace("\n", "\n/// ")}"; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/StatusGetter.cs b/RotationSolver.GameData/Getters/StatusGetter.cs index 02fa626f7..a07b76d67 100644 --- a/RotationSolver.GameData/Getters/StatusGetter.cs +++ b/RotationSolver.GameData/Getters/StatusGetter.cs @@ -1,41 +1,68 @@ using Lumina.Excel.GeneratedSheets; +using System.Text; namespace RotationSolver.GameData.Getters; + +/// +/// Class for getting and processing Status Excel rows. +/// internal class StatusGetter(Lumina.GameData gameData) : ExcelRowGetter(gameData) { - private readonly List _addedNames = []; + private readonly HashSet _addedNames = new(); + /// + /// Called before creating the list of items. Clears the added names set. + /// protected override void BeforeCreating() { _addedNames.Clear(); base.BeforeCreating(); } + /// + /// Determines whether the specified status should be added to the list. + /// + /// The status item to check. + /// True if the status should be added; otherwise, false. protected override bool AddToList(Status item) { - if (item.ClassJobCategory.Row == 0) return false; var name = item.Name.RawString; - if (string.IsNullOrEmpty(name)) return false; - if (!name.All(char.IsAscii)) return false; - if (item.Icon == 0) return false; - return true; + if (string.IsNullOrEmpty(name)) + { + // Allow statuses without a name + return true; + } + + // Perform usual checks for statuses with a name + return item.ClassJobCategory.Row != 0 && + name.All(char.IsAscii) && + item.Icon != 0; } + /// + /// Converts the specified status to its code representation. + /// + /// The status item to convert. + /// The code representation of the status. protected override string ToCode(Status item) { - var name = item.Name.RawString.ToPascalCase(); - if (_addedNames.Contains(name)) + var name = item.Name.RawString; + if (string.IsNullOrEmpty(name)) { - name += "_" + item.RowId.ToString(); + name = $"UnnamedStatus_{item.RowId}"; } else { - _addedNames.Add(name); + name = name.ToPascalCase(); } - var desc = item.Description.RawString; + if (!_addedNames.Add(name)) + { + name += "_" + item.RowId.ToString(); + } + var desc = item.Description.RawString; var jobs = item.ClassJobCategory.Value?.Name.RawString; jobs = string.IsNullOrEmpty(jobs) ? string.Empty : $" ({jobs})"; @@ -46,12 +73,26 @@ protected override string ToCode(Status item) _ => string.Empty, }; - return $""" + var sb = new StringBuilder(); + if (!name.StartsWith("UnnamedStatus")) + { + sb.AppendLine($""" /// /// {item.Name.RawString.Replace("&", "and")}{cate}{jobs} /// {desc.Replace("\n", "\n/// ")} /// - {name} = {item.RowId}, - """; + """); + } + else + { + sb.AppendLine($""" + /// + /// {desc.Replace("\n", "\n/// ")} + /// + """); + } + sb.AppendLine($"{name} = {item.RowId},"); + + return sb.ToString(); } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Getters/TraitRotationGetter.cs b/RotationSolver.GameData/Getters/TraitRotationGetter.cs index cff8b6df6..2cb6e95e6 100644 --- a/RotationSolver.GameData/Getters/TraitRotationGetter.cs +++ b/RotationSolver.GameData/Getters/TraitRotationGetter.cs @@ -1,17 +1,44 @@ using Lumina.Excel.GeneratedSheets; namespace RotationSolver.GameData.Getters; -internal class TraitRotationGetter(Lumina.GameData gameData, ClassJob job) - : ExcelRowGetter(gameData) + +/// +/// Class responsible for getting trait rotations. +/// +internal class TraitRotationGetter : ExcelRowGetter { - public List AddedNames { get; } = []; + private readonly ClassJob _job; + + /// + /// Initializes a new instance of the class. + /// + /// The game data. + /// The class job. + public TraitRotationGetter(Lumina.GameData gameData, ClassJob job) + : base(gameData) + { + _job = job ?? throw new ArgumentNullException(nameof(job)); + } + + /// + /// Gets the list of added names. + /// + public List AddedNames { get; } = new List(); + /// + /// Called before creating the list of items. + /// protected override void BeforeCreating() { AddedNames.Clear(); base.BeforeCreating(); } + /// + /// Determines whether the specified item should be added to the list. + /// + /// The item to check. + /// True if the item should be added; otherwise, false. protected override bool AddToList(Trait item) { if (item.ClassJob.Row == 0) return false; @@ -22,10 +49,15 @@ protected override bool AddToList(Trait item) var category = item.ClassJob.Value; if (category == null) return false; - var jobName = job.Abbreviation.RawString; + var jobName = _job.Abbreviation.RawString; return category.Abbreviation == jobName; } + /// + /// Converts the specified item to code. + /// + /// The item to convert. + /// The code representation of the item. protected override string ToCode(Trait item) { var name = item.Name.RawString.ToPascalCase() + "Trait"; @@ -48,6 +80,11 @@ protected override string ToCode(Trait item) """; } + /// + /// Gets the description name for the specified item. + /// + /// The item. + /// The description name. private static string GetDescName(Trait item) { var jobs = item.ClassJobCategory.Value?.Name.RawString; @@ -56,10 +93,15 @@ private static string GetDescName(Trait item) return $"{item.Name.RawString}{jobs} [{item.RowId}]"; } + /// + /// Gets the description for the specified item. + /// + /// The item. + /// The description. private string GetDesc(Trait item) { var desc = _gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; return $"{desc.Replace("\n", "\n/// ")}"; } -} +} \ No newline at end of file diff --git a/RotationSolver.GameData/Program.cs b/RotationSolver.GameData/Program.cs index bf3893f97..32efa87e3 100644 --- a/RotationSolver.GameData/Program.cs +++ b/RotationSolver.GameData/Program.cs @@ -7,114 +7,133 @@ using RotationSolver.GameData.Getters.Actions; using System.Net; using System.Resources.NetStandard; +using System.Xml.Linq; -var gameData = new GameData(@"C:\FF14\game\sqpack", new LuminaOptions +/// +/// Entry point for the RotationSolver GameData program. +/// +public class Program { - LoadMultithreaded = true, - CacheFileResources = true, - PanicOnSheetChecksumMismatch = false, - DefaultExcelLanguage = Language.English, -}); - -var dirInfo = new DirectoryInfo(typeof(Program).Assembly.Location); -dirInfo = dirInfo.Parent!.Parent!.Parent!.Parent!.Parent!.Parent!; - -using var res = new ResXResourceWriter(dirInfo.FullName + "\\RotationSolver.SourceGenerators\\Properties\\Resources.resx"); - -res.AddResource("StatusId", new StatusGetter(gameData).GetCode()); -res.AddResource("ContentType", new ContentTypeGetter(gameData).GetCode()); -res.AddResource("ActionId", new ActionIdGetter(gameData).GetCode()); -res.AddResource("ActionCategory", new ActionCategoryGetter(gameData).GetCode()); - -var rotationBase = new ActionRoleRotationGetter(gameData); -var rotationCodes = rotationBase.GetCode(); -var rotationItems = new ItemGetter(gameData); -var rotationItemCodes = rotationItems.GetCode(); - -res.AddResource("Action", $$""" - using RotationSolver.Basic.Actions; - - namespace RotationSolver.Basic.Rotations; - /// - /// The Custom Rotation. - ///
Number of Actions: {{rotationBase.Count}}
+ /// Main method to execute the program. ///
- public abstract partial class CustomRotation + public static async Task Main() { - #region Actions - {{rotationCodes.Table()}} - - {{Util.ArrayNames("AllBaseActions", "IBaseAction", - "public virtual", [.. rotationBase.AddedNames]).Table()}} - #endregion - - #region Items - {{rotationItemCodes.Table()}} - - {{Util.ArrayNames("AllItems", "IBaseItem", - "public ", [.. rotationItems.AddedNames]).Table()}} - #endregion - } - """); - -var dutyRotationBase = new ActionDutyRotationGetter(gameData); -rotationCodes = dutyRotationBase.GetCode(); - -res.AddResource("DutyAction", $$""" - using RotationSolver.Basic.Actions; - - namespace RotationSolver.Basic.Rotations.Duties; - - /// - /// The Custom Rotation. - ///
Number of Actions: {{dutyRotationBase.Count}}
- ///
- public abstract partial class DutyRotation - { - {{rotationCodes.Table()}} + try + { + var gameData = new GameData(@"C:\FF14\game\sqpack", new LuminaOptions + { + LoadMultithreaded = true, + CacheFileResources = true, + PanicOnSheetChecksumMismatch = false, + DefaultExcelLanguage = Language.English, + }); + + var dirInfo = new DirectoryInfo(typeof(Program).Assembly.Location); + dirInfo = dirInfo.Parent!.Parent!.Parent!.Parent!.Parent!.Parent!; + + using var res = new ResXResourceWriter(Path.Combine(dirInfo.FullName, "RotationSolver.SourceGenerators\\Properties\\Resources.resx")); + + res.AddResource("StatusId", new StatusGetter(gameData).GetCode()); + res.AddResource("ContentType", new ContentTypeGetter(gameData).GetCode()); + res.AddResource("ActionId", new ActionIdGetter(gameData).GetCode()); + res.AddResource("ActionCategory", new ActionCategoryGetter(gameData).GetCode()); + + var rotationBase = new ActionRoleRotationGetter(gameData); + var rotationCodes = rotationBase.GetCode(); + var rotationItems = new ItemGetter(gameData); + var rotationItemCodes = rotationItems.GetCode(); + + res.AddResource("Action", $$""" + using RotationSolver.Basic.Actions; + + namespace RotationSolver.Basic.Rotations; + + /// + /// The Custom Rotation. + ///
Number of Actions: {{rotationBase.Count}}
+ ///
+ public abstract partial class CustomRotation + { + #region Actions + {{rotationCodes.Table()}} + + {{Util.ArrayNames("AllBaseActions", "IBaseAction", + "public virtual", [.. rotationBase.AddedNames]).Table()}} + #endregion + + #region Items + {{rotationItemCodes.Table()}} + + {{Util.ArrayNames("AllItems", "IBaseItem", + "public ", [.. rotationItems.AddedNames]).Table()}} + #endregion + } + """); + + var dutyRotationBase = new ActionDutyRotationGetter(gameData); + rotationCodes = dutyRotationBase.GetCode(); + + res.AddResource("DutyAction", $$""" + using RotationSolver.Basic.Actions; + + namespace RotationSolver.Basic.Rotations.Duties; + + /// + /// The Custom Rotation. + ///
Number of Actions: {{dutyRotationBase.Count}}
+ ///
+ public abstract partial class DutyRotation + { + {{rotationCodes.Table()}} + } + """); + + var header = """ + using ECommons.DalamudServices; + using ECommons.ExcelServices; + using RotationSolver.Basic.Actions; + using RotationSolver.Basic.Traits; + + namespace RotationSolver.Basic.Rotations.Basic; + + """; + + var rotations = gameData.GetExcelSheet()! + .Where(job => job.JobIndex > 0) + .Select(job => new RotationGetter(gameData, job).GetCode()); + res.AddResource("Rotation", header + string.Join("\n\n", rotations)); + + using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(30) }; + var result = await client.GetAsync("https://raw.githubusercontent.com/karashiiro/FFXIVOpcodes/master/opcodes.json"); + + if (result.StatusCode != HttpStatusCode.OK) return; + var responseStream = await result.Content.ReadAsStringAsync(); + + var strs = JToken.Parse(responseStream)[0]!["lists"]!.Children() + .SelectMany(i => i.Children()).SelectMany(i => i.Children()).Cast() + .Select(i => + { + var name = ((JValue)i["name"]!).Value as string; + var description = name!.Space(); + + return $$""" + /// + ///{{description}} + /// + [Description("{{description}}")] + {{name}} = {{((JValue)i["opcode"]!).Value}}, + """; + }); + res.AddResource("OpCode", string.Join("\n", strs)); + + res.Generate(); + + Console.WriteLine("Finished!"); + } + catch (Exception ex) + { + Console.Error.WriteLine($"An error occurred: {ex.Message}"); + } } - """); - -var header = """ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Actions; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -"""; - -var rotations = gameData.GetExcelSheet()! - .Where(job => job.JobIndex > 0) - .Select(job => new RotationGetter(gameData, job).GetCode()); -res.AddResource("Rotation", header + string.Join("\n\n", rotations)); - -using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(30) }; -using var result = await client.GetAsync("https://raw.githubusercontent.com/karashiiro/FFXIVOpcodes/master/opcodes.json"); - -if (result.StatusCode != HttpStatusCode.OK) return; -var responseStream = await result.Content.ReadAsStringAsync(); - - -var strs = JToken.Parse(responseStream)[0]!["lists"]!.Children() - .SelectMany(i => i.Children()).SelectMany(i => i.Children()).Cast() - .Select(i => - { - var name = ((JValue)i["name"]!).Value as string; - var description = name!.Space(); - - return $$""" - /// - ///{{description}} - /// - [Description("{{description}}")] - {{name}} = {{((JValue)i["opcode"]!).Value}}, - """; - }); -res.AddResource("OpCode", string.Join("\n", strs)); - -res.Generate(); - -Console.WriteLine("Finished!"); \ No newline at end of file +} \ No newline at end of file diff --git a/RotationSolver.GameData/Util.cs b/RotationSolver.GameData/Util.cs index 2c9798ca8..761b2bd0e 100644 --- a/RotationSolver.GameData/Util.cs +++ b/RotationSolver.GameData/Util.cs @@ -1,9 +1,18 @@ using Lumina.Excel.GeneratedSheets; +using System.Text; using System.Text.RegularExpressions; namespace RotationSolver.GameData; +/// +/// Utility class for various helper methods. +/// internal static partial class Util { + /// + /// Determines if the job category represents a single job for combat. + /// + /// The job category to check. + /// True if the job category represents a single job for combat; otherwise, false. public static bool IsSingleJobForCombat(this ClassJobCategory jobCategory) { if (jobCategory.RowId == 68) return true; // ACN SMN SCH @@ -13,29 +22,49 @@ public static bool IsSingleJobForCombat(this ClassJobCategory jobCategory) return true; } + /// + /// Indents each line of the string with four spaces. + /// + /// The string to indent. + /// The indented string. public static string Table(this string str) => " " + str.Replace("\n", "\n "); + /// + /// Inserts spaces before each uppercase letter in the string. + /// + /// The string to modify. + /// The modified string with spaces. public static string Space(this string str) { - string result = string.Empty; - + var result = new StringBuilder(); bool lower = false; + foreach (var c in str) { var isLower = char.IsLower(c); if (lower && !isLower) { - result += ' '; + result.Append(' '); } lower = isLower; - result += c; + result.Append(c); } - return result; + return result.ToString(); } + /// + /// Removes non-ASCII characters from the string. + /// + /// The input string. + /// The string containing only ASCII characters. public static string OnlyAscii(this string input) => new(input.Where(char.IsAscii).ToArray()); + /// + /// Converts the string to PascalCase. + /// + /// The input string. + /// The PascalCase string. public static string ToPascalCase(this string input) { var pascalCase = InvalidCharsRgx().Replace(WhiteSpace().Replace(input, "_"), string.Empty) @@ -67,6 +96,14 @@ public static string ToPascalCase(this string input) [GeneratedRegex("(?<=[A-Z])[A-Z]+?((?=[A-Z][a-z])|(?=[0-9]))")] private static partial Regex UpperCaseInside(); + /// + /// Generates a property with an array of names. + /// + /// The name of the property. + /// The type of the property. + /// The modifier for the property. + /// The items to include in the array. + /// The generated property code. public static string ArrayNames(string propertyName, string propertyType, string modifier, params string[] items) { var thisItems = $""" @@ -83,6 +120,15 @@ public static string ArrayNames(string propertyName, string propertyType, string """; } + /// + /// Generates code for an action. + /// + /// The action item. + /// The name of the action. + /// The description name of the action. + /// The description of the action. + /// Indicates if the action is a duty action. + /// The generated action code. public static string ToCode(this Lumina.Excel.GeneratedSheets.Action item, string actionName, string actionDescName, string desc, bool isDuty) { @@ -118,6 +164,11 @@ public static string ToCode(this Lumina.Excel.GeneratedSheets.Action item, """; } + /// + /// Gets the description name for an action. + /// + /// The action. + /// The description name of the action. public static string GetDescName(this Lumina.Excel.GeneratedSheets.Action action) { var jobs = action.ClassJobCategory.Value?.Name.RawString; @@ -127,4 +178,4 @@ public static string GetDescName(this Lumina.Excel.GeneratedSheets.Action action return $"{action.Name.RawString}{cate}{jobs} [{action.RowId}] [{action.ActionCategory.Value?.Name.RawString ?? string.Empty}]"; } -} +} \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/ConditionBoolGenerator.cs b/RotationSolver.SourceGenerators/ConditionBoolGenerator.cs index a9fa649bc..368f8d06a 100644 --- a/RotationSolver.SourceGenerators/ConditionBoolGenerator.cs +++ b/RotationSolver.SourceGenerators/ConditionBoolGenerator.cs @@ -1,109 +1,156 @@ using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; using System.Collections.Immutable; +using System.Text; namespace RotationSolver.SourceGenerators; +/// +/// Source generator for creating properties from fields marked with the ConditionBoolAttribute. +/// [Generator(LanguageNames.CSharp)] - public class ConditionBoolGenerator : IIncrementalGenerator { + /// + /// Initializes the incremental generator. + /// + /// The initialization context. public void Initialize(IncrementalGeneratorInitializationContext context) { - var provider = context.SyntaxProvider.ForAttributeWithMetadataName - ("RotationSolver.Basic.Attributes.ConditionBoolAttribute", + var provider = context.SyntaxProvider.ForAttributeWithMetadataName( + "RotationSolver.Basic.Attributes.ConditionBoolAttribute", static (node, _) => node is VariableDeclaratorSyntax { Parent: VariableDeclarationSyntax { Parent: FieldDeclarationSyntax { Parent: ClassDeclarationSyntax or StructDeclarationSyntax } } }, static (n, ct) => ((VariableDeclaratorSyntax)n.TargetNode, n.SemanticModel)) .Where(m => m.Item1 != null); + context.RegisterSourceOutput(provider.Collect(), Execute); } + /// + /// Executes the source generation. + /// + /// The source production context. + /// The array of variable declarators and semantic models. private void Execute(SourceProductionContext context, ImmutableArray<(VariableDeclaratorSyntax, SemanticModel SemanticModel)> array) { - var typeGrps = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); + var typeGroups = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); - foreach (var grp in typeGrps) + foreach (var group in typeGroups) { - var type = (TypeDeclarationSyntax)grp.Key; - + var type = (TypeDeclarationSyntax)group.Key; var nameSpace = type.GetParent()?.Name.ToString() ?? "Null"; - var classType = type is ClassDeclarationSyntax ? "class" : "struct"; - var className = type.Identifier.Text; - var propertyCodes = new List(); - foreach (var (variableInfo, model) in grp) - { - var typeSymbol = model.GetDeclaredSymbol(type) as ITypeSymbol; + var propertyCodes = GeneratePropertyCodes(group, context, nameSpace, className); - var field = (FieldDeclarationSyntax)variableInfo.Parent!.Parent!; + if (propertyCodes.Count == 0) continue; - var variableName = variableInfo.Identifier.ToString(); - var propertyName = variableName.ToPascalCase(); + var code = GenerateClassCode(nameSpace, classType, className, propertyCodes); + context.AddSource($"{nameSpace}_{className}.g.cs", code); + } + } - if (variableName == propertyName) - { - //context.DiagnosticWarning(variableInfo.Identifier.GetLocation(), - // "Please don't use Pascal Case to name your field!"); - continue; - } + /// + /// Generates the property codes for the given group of variables. + /// + /// The group of variables. + /// The source production context. + /// The namespace of the class. + /// The name of the class. + /// A list of property code strings. + private List GeneratePropertyCodes(IGrouping group, SourceProductionContext context, string nameSpace, string className) + { + var propertyCodes = new List(); - var key = string.Join(".", nameSpace, className, propertyName); + foreach (var (variableInfo, model) in group) + { + var field = (FieldDeclarationSyntax)variableInfo.Parent!.Parent!; + var variableName = variableInfo.Identifier.ToString(); + var propertyName = variableName.ToPascalCase(); - var fieldTypeStr = field.Declaration.Type; - var fieldType = model.GetTypeInfo(fieldTypeStr).Type!; + if (variableName == propertyName) + { + context.ReportDiagnostic(Diagnostic.Create(new DiagnosticDescriptor("RS001", "Naming Warning", "Please don't use Pascal Case to name your field!", "Naming", DiagnosticSeverity.Warning, true), variableInfo.Identifier.GetLocation())); + continue; + } - if (fieldType.GetFullMetadataName() != "System.Boolean") - { - var diag = new DiagnosticDescriptor("a", "aa", "aaa", "1", DiagnosticSeverity.Warning, true); - context.ReportDiagnostic(Diagnostic.Create(diag, variableInfo.GetLocation())); - continue; - } + var fieldType = model.GetTypeInfo(field.Declaration.Type).Type!; + if (fieldType.GetFullMetadataName() != "System.Boolean") + { + context.ReportDiagnostic(Diagnostic.Create(new DiagnosticDescriptor("RS002", "Type Warning", "Field type must be System.Boolean", "Type", DiagnosticSeverity.Warning, true), variableInfo.GetLocation())); + continue; + } - var names = new List(); - foreach (var attrSet in field.AttributeLists) - { - if (attrSet == null) continue; - foreach (var attr in attrSet.Attributes) - { - if (model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName() - is "RotationSolver.Basic.Attributes.UIAttribute" - or "RotationSolver.Basic.Attributes.UnitAttribute" - or "RotationSolver.Basic.Attributes.RangeAttribute" - or "RotationSolver.Basic.Attributes.LinkDescriptionAttribute") - { - names.Add(attr.ToString()); - } - } - } + var attributeStr = GetFieldAttributes(field, model); + var propertyCode = $$""" + {{attributeStr}} + public ConditionBoolean {{propertyName}} { get; private set; } = new({{variableName}}, "{{propertyName}}"); + """; - var attributeStr = names.Count == 0 ? "" : $"[{string.Join(", ", names)}]"; - var propertyCode = $$""" - {{attributeStr}} - public ConditionBoolean {{propertyName}} { get; private set; } = new({{variableName}}, "{{propertyName}}"); - """; + propertyCodes.Add(propertyCode); + } - propertyCodes.Add(propertyCode); - } + return propertyCodes; + } - if (propertyCodes.Count == 0) continue; + /// + /// Generates the class code with the given properties. + /// + /// The namespace of the class. + /// The type of the class (class or struct). + /// The name of the class. + /// The list of property code strings. + /// The generated class code. + private string GenerateClassCode(string nameSpace, string classType, string className, List propertyCodes) + { + var sb = new StringBuilder(); + sb.AppendLine("using RotationSolver.Basic.Data;"); + sb.AppendLine(); + sb.AppendLine($"namespace {nameSpace}"); + sb.AppendLine("{"); + sb.AppendLine($" partial {classType} {className}"); + sb.AppendLine(" {"); + + foreach (var propertyCode in propertyCodes) + { + sb.AppendLine(" " + propertyCode); + sb.AppendLine(); + } - var code = $$""" - using RotationSolver.Basic.Data; + sb.AppendLine(" }"); + sb.AppendLine("}"); - namespace {{nameSpace}} - { - partial {{classType}} {{className}} - { + return sb.ToString(); + } - {{string.Join("\n \n", propertyCodes)}} + /// + /// Gets the attributes of the field as a string. + /// + /// The field declaration syntax. + /// The semantic model. + /// The attributes as a string. + private string GetFieldAttributes(FieldDeclarationSyntax field, SemanticModel model) + { + var names = new List(); - } - } - """; + foreach (var attrSet in field.AttributeLists) + { + if (attrSet == null) continue; - context.AddSource($"{nameSpace}_{className}.g.cs", code); + foreach (var attr in attrSet.Attributes) + { + if (model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName() + is "RotationSolver.Basic.Attributes.UIAttribute" + or "RotationSolver.Basic.Attributes.UnitAttribute" + or "RotationSolver.Basic.Attributes.RangeAttribute" + or "RotationSolver.Basic.Attributes.LinkDescriptionAttribute") + { + names.Add(attr.ToString()); + } + } } + + return names.Count == 0 ? "" : $"[{string.Join(", ", names)}]"; } -} +} \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/JobChoiceConfigGenerator.cs b/RotationSolver.SourceGenerators/JobChoiceConfigGenerator.cs index f16f934cd..730e88954 100644 --- a/RotationSolver.SourceGenerators/JobChoiceConfigGenerator.cs +++ b/RotationSolver.SourceGenerators/JobChoiceConfigGenerator.cs @@ -5,78 +5,63 @@ namespace RotationSolver.SourceGenerators; [Generator(LanguageNames.CSharp)] - public class JobChoiceConfigGenerator : IIncrementalGenerator { public void Initialize(IncrementalGeneratorInitializationContext context) { - var provider = context.SyntaxProvider.ForAttributeWithMetadataName - ("RotationSolver.Basic.Attributes.JobChoiceConfigAttribute", + var provider = context.SyntaxProvider.ForAttributeWithMetadataName( + "RotationSolver.Basic.Attributes.JobChoiceConfigAttribute", static (node, _) => node is VariableDeclaratorSyntax { Parent: VariableDeclarationSyntax { Parent: FieldDeclarationSyntax { Parent: ClassDeclarationSyntax or StructDeclarationSyntax } } }, static (n, ct) => ((VariableDeclaratorSyntax)n.TargetNode, n.SemanticModel)) .Where(m => m.Item1 != null); + context.RegisterSourceOutput(provider.Collect(), Execute); } private void Execute(SourceProductionContext context, ImmutableArray<(VariableDeclaratorSyntax, SemanticModel SemanticModel)> array) { - var typeGrps = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); + var typeGroups = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); - foreach (var grp in typeGrps) + foreach (var group in typeGroups) { - var type = (TypeDeclarationSyntax)grp.Key; - - var nameSpace = type.GetParent()?.Name.ToString() ?? "Null"; - + var type = (TypeDeclarationSyntax)group.Key; + var namespaceName = type.GetParent()?.Name.ToString() ?? "Null"; var classType = type is ClassDeclarationSyntax ? "class" : "struct"; - var className = type.Identifier.Text; var propertyCodes = new List(); - foreach (var (variableInfo, model) in grp) + foreach (var (variableInfo, model) in group) { - var typeSymbol = model.GetDeclaredSymbol(type) as ITypeSymbol; - - var field = (FieldDeclarationSyntax)variableInfo.Parent!.Parent!; - - var variableName = variableInfo.Identifier.ToString(); - var propertyName = variableName.ToPascalCase(); - - if (variableName == propertyName) + try { - //context.DiagnosticWarning(variableInfo.Identifier.GetLocation(), - // "Please don't use Pascal Case to name your field!"); - continue; - } + var field = (FieldDeclarationSyntax)variableInfo.Parent!.Parent!; + var variableName = variableInfo.Identifier.ToString(); + var propertyName = variableName.ToPascalCase(); - var key = string.Join(".", nameSpace, className, propertyName); + if (variableName == propertyName) + { + // Skip fields with PascalCase names + continue; + } - var fieldTypeStr = field.Declaration.Type; - var fieldType = model.GetTypeInfo(fieldTypeStr).Type!; - var fieldStr = fieldType.GetFullMetadataName(); + var fieldTypeStr = field.Declaration.Type; + var fieldType = model.GetTypeInfo(fieldTypeStr).Type!; + var fieldStr = fieldType.GetFullMetadataName(); - var names = new List(); - foreach (var attrSet in field.AttributeLists) - { - if (attrSet == null) continue; - foreach (var attr in attrSet.Attributes) - { - if (model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName() - is "RotationSolver.Basic.Attributes.UIAttribute" + var attributeNames = field.AttributeLists + .SelectMany(attrSet => attrSet.Attributes) + .Select(attr => model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName()) + .Where(name => name is "RotationSolver.Basic.Attributes.UIAttribute" or "RotationSolver.Basic.Attributes.UnitAttribute" or "RotationSolver.Basic.Attributes.RangeAttribute" or "RotationSolver.Basic.Attributes.JobChoiceConfigAttribute" or "RotationSolver.Basic.Attributes.LinkDescriptionAttribute") - { - names.Add(attr.ToString()); - } - } - } + .ToList(); - var attributeStr = names.Count == 0 ? "" : $"[{string.Join(", ", names)}]"; - var propertyCode = $$""" + var attributeStr = attributeNames.Count == 0 ? "" : $"[{string.Join(", ", attributeNames)}]"; + var propertyCode = $$""" [JsonProperty] - private Dictionary> {{variableName}}Dict = []; + private Dictionary> {{variableName}}Dict = new(); [JsonIgnore] {{attributeStr}} @@ -88,7 +73,7 @@ private void Execute(SourceProductionContext context, ImmutableArray<(VariableDe { dict = {{variableName}}Dict[DataCenter.Job] = new(); } - + if (!dict.TryGetValue(RotationChoice, out var value)) { value = dict[RotationChoice] = {{variableName}}; @@ -101,29 +86,37 @@ private void Execute(SourceProductionContext context, ImmutableArray<(VariableDe {{variableName}}Dict[DataCenter.Job][RotationChoice] = value; } } - """; + """; - propertyCodes.Add(propertyCode); + propertyCodes.Add(propertyCode); + } + catch (Exception ex) + { + context.ReportDiagnostic(Diagnostic.Create(new DiagnosticDescriptor( + "JCCG001", + "Error generating property", + $"An error occurred while generating property for {variableInfo.Identifier}: {ex.Message}", + "JobChoiceConfigGenerator", + DiagnosticSeverity.Error, + isEnabledByDefault: true), variableInfo.GetLocation())); + } } if (propertyCodes.Count == 0) continue; var code = $$""" - using ECommons.ExcelServices; + using ECommons.ExcelServices; - namespace {{nameSpace}} - { - partial {{classType}} {{className}} - { - - {{string.Join("\n \n", propertyCodes)}} - - } - } - """; + namespace {{namespaceName}} + { + partial {{classType}} {{className}} + { + {{string.Join("\n\n", propertyCodes)}} + } + } + """; - context.AddSource($"{nameSpace}_{className}.g.cs", code); + context.AddSource($"{namespaceName}_{className}.g.cs", code); } } - -} +} \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/JobConfigGenerator.cs b/RotationSolver.SourceGenerators/JobConfigGenerator.cs index 3e57661ef..2db94ab47 100644 --- a/RotationSolver.SourceGenerators/JobConfigGenerator.cs +++ b/RotationSolver.SourceGenerators/JobConfigGenerator.cs @@ -5,93 +5,106 @@ namespace RotationSolver.SourceGenerators; +/// +/// Source generator for creating job configuration properties. +/// [Generator(LanguageNames.CSharp)] public class JobConfigGenerator : IIncrementalGenerator { + /// + /// Initializes the generator. + /// + /// The initialization context. public void Initialize(IncrementalGeneratorInitializationContext context) { - var provider = context.SyntaxProvider.ForAttributeWithMetadataName - ("RotationSolver.Basic.Attributes.JobConfigAttribute", - static (node, _) => node is VariableDeclaratorSyntax { Parent: VariableDeclarationSyntax { Parent: FieldDeclarationSyntax { Parent: ClassDeclarationSyntax or StructDeclarationSyntax } } }, - static (n, ct) => ((VariableDeclaratorSyntax)n.TargetNode, n.SemanticModel)) + var provider = context.SyntaxProvider + .ForAttributeWithMetadataName( + "RotationSolver.Basic.Attributes.JobConfigAttribute", + static (node, _) => node is VariableDeclaratorSyntax { Parent: VariableDeclarationSyntax { Parent: FieldDeclarationSyntax { Parent: ClassDeclarationSyntax or StructDeclarationSyntax } } }, + static (n, ct) => ((VariableDeclaratorSyntax)n.TargetNode, n.SemanticModel)) .Where(m => m.Item1 != null); + context.RegisterSourceOutput(provider.Collect(), Execute); } + /// + /// Executes the source generation. + /// + /// The source production context. + /// The collected syntax nodes and semantic models. private void Execute(SourceProductionContext context, ImmutableArray<(VariableDeclaratorSyntax, SemanticModel SemanticModel)> array) { - var typeGrps = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); + var typeGroups = array.GroupBy(variable => variable.Item1.Parent!.Parent!.Parent!); - foreach (var grp in typeGrps) + foreach (var group in typeGroups) { - var type = (TypeDeclarationSyntax)grp.Key; - - var nameSpace = type.GetParent()?.Name.ToString() ?? "Null"; - + var type = (TypeDeclarationSyntax)group.Key; + var namespaceName = type.GetParent()?.Name.ToString() ?? "Null"; var classType = type is ClassDeclarationSyntax ? "class" : "struct"; - var className = type.Identifier.Text; var propertyCodes = new List(); - foreach (var (variableInfo, model) in grp) + foreach (var (variableInfo, model) in group) { var typeSymbol = model.GetDeclaredSymbol(type) as ITypeSymbol; - var field = (FieldDeclarationSyntax)variableInfo.Parent!.Parent!; - var variableName = variableInfo.Identifier.ToString(); var propertyName = variableName.ToPascalCase(); if (variableName == propertyName) { - //context.DiagnosticWarning(variableInfo.Identifier.GetLocation(), - // "Please don't use Pascal Case to name your field!"); + context.ReportDiagnostic(Diagnostic.Create(new DiagnosticDescriptor( + "RS001", + "Field name should not be in Pascal Case", + "Please don't use Pascal Case to name your field '{0}'", + "Naming", + DiagnosticSeverity.Warning, + isEnabledByDefault: true), variableInfo.Identifier.GetLocation(), variableName)); continue; } - var key = string.Join(".", nameSpace, className, propertyName); - + var key = string.Join(".", namespaceName, className, propertyName); var fieldTypeStr = field.Declaration.Type; var fieldType = model.GetTypeInfo(fieldTypeStr).Type!; var fieldStr = fieldType.GetFullMetadataName(); - var names = new List(); + var attributeNames = new List(); foreach (var attrSet in field.AttributeLists) { if (attrSet == null) continue; foreach (var attr in attrSet.Attributes) { - if (model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName() - is "RotationSolver.Basic.Attributes.UIAttribute" + var attrSymbol = model.GetSymbolInfo(attr).Symbol?.GetFullMetadataName(); + if (attrSymbol is "RotationSolver.Basic.Attributes.UIAttribute" or "RotationSolver.Basic.Attributes.UnitAttribute" or "RotationSolver.Basic.Attributes.RangeAttribute" or "RotationSolver.Basic.Attributes.JobConfigAttribute" or "RotationSolver.Basic.Attributes.LinkDescriptionAttribute") { - names.Add(attr.ToString()); + attributeNames.Add(attr.ToString()); } } } - var attributeStr = names.Count == 0 ? "" : $"[{string.Join(", ", names)}]"; + var attributeStr = attributeNames.Count == 0 ? "" : $"[{string.Join(", ", attributeNames)}]"; var propertyCode = $$""" - [JsonProperty] - private Dictionary {{variableName}}Dict = []; + [JsonProperty] + private Dictionary {{variableName}}Dict = new(); - [JsonIgnore] - {{attributeStr}} - public {{fieldStr}} {{propertyName}} + [JsonIgnore] + {{attributeStr}} + public {{fieldStr}} {{propertyName}} + { + get { - get - { - if ({{variableName}}Dict.TryGetValue(DataCenter.Job, out var value)) return value; - return {{variableName}}Dict[DataCenter.Job] = {{variableName}}; - } - set - { - {{variableName}}Dict[DataCenter.Job] = value; - } + if ({{variableName}}Dict.TryGetValue(DataCenter.Job, out var value)) return value; + return {{variableName}}Dict[DataCenter.Job] = {{variableName}}; } + set + { + {{variableName}}Dict[DataCenter.Job] = value; + } + } """; propertyCodes.Add(propertyCode); @@ -100,20 +113,18 @@ private void Execute(SourceProductionContext context, ImmutableArray<(VariableDe if (propertyCodes.Count == 0) continue; var code = $$""" - using ECommons.ExcelServices; - - namespace {{nameSpace}} - { - partial {{classType}} {{className}} - { - - {{string.Join("\n \n", propertyCodes)}} + using ECommons.ExcelServices; - } - } - """; + namespace {{namespaceName}} + { + partial {{classType}} {{className}} + { + {{string.Join("\n\n", propertyCodes)}} + } + } + """; - context.AddSource($"{nameSpace}_{className}.g.cs", code); + context.AddSource($"{namespaceName}_{className}.g.cs", code); } } -} +} \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/Properties/Resources.resx b/RotationSolver.SourceGenerators/Properties/Resources.resx index 0acc8c1dd..01d6eec42 100644 --- a/RotationSolver.SourceGenerators/Properties/Resources.resx +++ b/RotationSolver.SourceGenerators/Properties/Resources.resx @@ -60,11991 +60,14726 @@ /// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_0 = 0, + +/// <summary> /// <see href="https://garlandtools.org/db/#status/1"><strong>Petrification</strong></see> ↓ (All Classes) /// <para>Stone-like rigidity is preventing the execution of actions.</para> /// </summary> Petrification = 1, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun = 2, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep = 3, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4"><strong>Daze</strong></see> ↓ (All Classes) /// <para>Scattered senses are preventing the execution of actions.</para> /// </summary> Daze = 4, + /// <summary> /// <see href="https://garlandtools.org/db/#status/5"><strong>Amnesia</strong></see> ↓ (All Classes) /// <para>Unable to use abilities.</para> /// </summary> Amnesia = 5, + /// <summary> /// <see href="https://garlandtools.org/db/#status/6"><strong>Pacification</strong></see> ↓ (All Classes) /// <para>Unable to use weaponskills.</para> /// </summary> Pacification = 6, + /// <summary> /// <see href="https://garlandtools.org/db/#status/7"><strong>Silence</strong></see> ↓ (All Classes) /// <para>A stifling magic is preventing casts.</para> /// </summary> Silence = 7, + /// <summary> /// <see href="https://garlandtools.org/db/#status/8"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste = 8, + /// <summary> /// <see href="https://garlandtools.org/db/#status/9"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow = 9, + /// <summary> /// <see href="https://garlandtools.org/db/#status/10"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_10 = 10, + /// <summary> /// <see href="https://garlandtools.org/db/#status/11"><strong>Confused</strong></see> ↓ (All Classes) /// <para>Attacking allies instead of the enemy.</para> /// </summary> Confused = 11, + /// <summary> /// <see href="https://garlandtools.org/db/#status/12"><strong>Levitation</strong></see> ↑ (All Classes) /// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> /// </summary> Levitation = 12, + /// <summary> /// <see href="https://garlandtools.org/db/#status/13"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind = 13, + /// <summary> /// <see href="https://garlandtools.org/db/#status/14"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy = 14, + /// <summary> /// <see href="https://garlandtools.org/db/#status/15"><strong>Blind</strong></see> ↓ (All Classes) /// <para>Encroaching darkness is lowering accuracy.</para> /// </summary> Blind = 15, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_16 = 16, + /// <summary> /// <see href="https://garlandtools.org/db/#status/17"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis = 17, + /// <summary> /// <see href="https://garlandtools.org/db/#status/18"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison = 18, + /// <summary> /// <see href="https://garlandtools.org/db/#status/19"><strong>Pollen</strong></see> ↓ (All Classes) /// <para>Deadly pollen has filled the lungs, causing damage over time.</para> /// </summary> Pollen = 19, + /// <summary> /// <see href="https://garlandtools.org/db/#status/20"><strong>TP Bleed</strong></see> ↓ (All Classes) /// <para>Bleeding TP over time.</para> /// </summary> TpBleed = 20, + /// <summary> /// <see href="https://garlandtools.org/db/#status/21"><strong>HP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> HpBoost = 21, + /// <summary> /// <see href="https://garlandtools.org/db/#status/22"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced.</para> /// </summary> HpPenalty = 22, + /// <summary> /// <see href="https://garlandtools.org/db/#status/23"><strong>MP Boost</strong></see> ↑ (All Classes) /// <para>Maximum MP is increased.</para> /// </summary> MpBoost = 23, + /// <summary> /// <see href="https://garlandtools.org/db/#status/24"><strong>MP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum MP is reduced.</para> /// </summary> MpPenalty = 24, + /// <summary> /// <see href="https://garlandtools.org/db/#status/25"><strong>Attack Up</strong></see> ↑ (All Classes) /// <para>Attack power is enhanced.</para> /// </summary> AttackUp = 25, + /// <summary> /// <see href="https://garlandtools.org/db/#status/26"><strong>Attack Down</strong></see> ↓ (All Classes) /// <para>Attack power is reduced.</para> /// </summary> AttackDown = 26, + /// <summary> /// <see href="https://garlandtools.org/db/#status/27"><strong>Accuracy Up</strong></see> ↑ (All Classes) /// <para>Accuracy is enhanced.</para> /// </summary> AccuracyUp = 27, + /// <summary> /// <see href="https://garlandtools.org/db/#status/28"><strong>Accuracy Down</strong></see> ↓ (All Classes) /// <para>Accuracy is reduced.</para> /// </summary> AccuracyDown = 28, + /// <summary> /// <see href="https://garlandtools.org/db/#status/29"><strong>Defense Up</strong></see> ↑ (All Classes) /// <para>Defense is enhanced.</para> /// </summary> DefenseUp = 29, + /// <summary> /// <see href="https://garlandtools.org/db/#status/30"><strong>Defense Down</strong></see> ↓ (All Classes) /// <para>Defense is reduced.</para> /// </summary> DefenseDown = 30, + /// <summary> /// <see href="https://garlandtools.org/db/#status/31"><strong>Evasion Up</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced.</para> /// </summary> EvasionUp = 31, + /// <summary> /// <see href="https://garlandtools.org/db/#status/32"><strong>Evasion Down</strong></see> ↓ (All Classes) /// <para>Evasion is reduced.</para> /// </summary> EvasionDown = 32, + /// <summary> /// <see href="https://garlandtools.org/db/#status/33"><strong>Attack Magic Potency Up</strong></see> ↑ (All Classes) /// <para>Attack magic potency is enhanced.</para> /// </summary> AttackMagicPotencyUp = 33, + /// <summary> /// <see href="https://garlandtools.org/db/#status/34"><strong>Attack Magic Potency Down</strong></see> ↓ (All Classes) /// <para>Attack magic potency is reduced.</para> /// </summary> AttackMagicPotencyDown = 34, + /// <summary> /// <see href="https://garlandtools.org/db/#status/35"><strong>Healing Potency Up</strong></see> ↑ (All Classes) /// <para>Healing magic potency is enhanced.</para> /// </summary> HealingPotencyUp = 35, + /// <summary> /// <see href="https://garlandtools.org/db/#status/36"><strong>Healing Potency Down</strong></see> ↓ (All Classes) /// <para>Healing magic potency is reduced.</para> /// </summary> HealingPotencyDown = 36, + /// <summary> /// <see href="https://garlandtools.org/db/#status/37"><strong>Magic Defense Up</strong></see> ↑ (All Classes) /// <para>Magic defense is enhanced.</para> /// </summary> MagicDefenseUp = 37, + /// <summary> /// <see href="https://garlandtools.org/db/#status/38"><strong>Magic Defense Down</strong></see> ↓ (All Classes) /// <para>Magic defense is reduced.</para> /// </summary> MagicDefenseDown = 38, + /// <summary> /// <see href="https://garlandtools.org/db/#status/39"><strong>Stun Resistance</strong></see> ↑ (All Classes) /// <para>Immune to stun effects.</para> /// </summary> StunResistance = 39, + /// <summary> /// <see href="https://garlandtools.org/db/#status/40"><strong>Silence Resistance</strong></see> ↑ (All Classes) /// <para>Immune to silence effects.</para> /// </summary> SilenceResistance = 40, + /// <summary> /// <see href="https://garlandtools.org/db/#status/41"><strong>Crafting Facility</strong></see> ↑ (All Classes) /// <para>Maximum CP is increased for crafters level 90 or below.</para> /// </summary> CraftingFacility = 41, + /// <summary> /// <see href="https://garlandtools.org/db/#status/42"><strong>The Echo</strong></see> ↑ (All Classes) /// <para>Maximum HP, damage dealt, and potency of HP restoration actions are increased.</para> /// </summary> TheEcho = 42, + /// <summary> /// <see href="https://garlandtools.org/db/#status/43"><strong>Weakness</strong></see> ↓ (All Classes) /// <para>Strength, dexterity, intelligence, and mind are reduced by 25%.</para> /// </summary> Weakness = 43, + /// <summary> /// <see href="https://garlandtools.org/db/#status/44"><strong>Brink of Death</strong></see> ↓ (All Classes) /// <para>Strength, dexterity, intelligence, and mind are reduced by 50%.</para> /// </summary> BrinkOfDeath = 44, + /// <summary> /// <see href="https://garlandtools.org/db/#status/45"><strong>Crafter's Grace</strong></see> ↑ (All Classes) /// <para>Increased experience point gains as a Disciple of the Hand.</para> /// </summary> CraftersGrace = 45, + /// <summary> /// <see href="https://garlandtools.org/db/#status/46"><strong>Gatherer's Grace</strong></see> ↑ (All Classes) /// <para>Increased experience point gains as a Disciple of the Land.</para> /// </summary> GatherersGrace = 46, + /// <summary> /// <see href="https://garlandtools.org/db/#status/47"><strong>Sneak</strong></see> ↑ (All Classes) /// <para>You tread carefully, making nary a sound. Enemies up to 4 levels higher than you are oblivious to your presence.</para> /// </summary> Sneak = 47, + /// <summary> /// <see href="https://garlandtools.org/db/#status/48"><strong>Well Fed</strong></see> ↑ (All Classes) /// <para>Enjoying the benefits of a full belly.</para> /// </summary> WellFed = 48, + /// <summary> /// <see href="https://garlandtools.org/db/#status/49"><strong>Medicated</strong></see> ↑ (All Classes) /// <para>Performance is being enhanced by a medicinal item.</para> /// </summary> Medicated = 49, + /// <summary> /// <see href="https://garlandtools.org/db/#status/50"><strong>Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Sprint = 50, + /// <summary> /// <see href="https://garlandtools.org/db/#status/51"><strong>Strength Down</strong></see> ↓ (All Classes) /// <para>Strength is reduced.</para> /// </summary> StrengthDown = 51, + /// <summary> /// <see href="https://garlandtools.org/db/#status/52"><strong>Vitality Down</strong></see> ↓ (All Classes) /// <para>Vitality is reduced.</para> /// </summary> VitalityDown = 52, + /// <summary> /// <see href="https://garlandtools.org/db/#status/53"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp = 53, + /// <summary> /// <see href="https://garlandtools.org/db/#status/54"><strong>Physical Damage Down</strong></see> ↓ (All Classes) /// <para>Physical damage dealt is reduced.</para> /// </summary> PhysicalDamageDown = 54, + /// <summary> /// <see href="https://garlandtools.org/db/#status/55"><strong>Physical Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalVulnerabilityDown = 55, + /// <summary> /// <see href="https://garlandtools.org/db/#status/56"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp = 56, + /// <summary> /// <see href="https://garlandtools.org/db/#status/57"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp = 57, + /// <summary> /// <see href="https://garlandtools.org/db/#status/58"><strong>Magic Damage Down</strong></see> ↓ (All Classes) /// <para>Magic damage dealt is reduced.</para> /// </summary> MagicDamageDown = 58, + /// <summary> /// <see href="https://garlandtools.org/db/#status/59"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown = 59, + /// <summary> /// <see href="https://garlandtools.org/db/#status/60"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp = 60, + /// <summary> /// <see href="https://garlandtools.org/db/#status/61"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp = 61, + /// <summary> /// <see href="https://garlandtools.org/db/#status/62"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown = 62, + /// <summary> /// <see href="https://garlandtools.org/db/#status/63"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown = 63, + /// <summary> /// <see href="https://garlandtools.org/db/#status/64"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp = 64, + /// <summary> /// <see href="https://garlandtools.org/db/#status/65"><strong>Critical Skill</strong></see> ↑ (All Classes) /// <para>All weaponskills are dealing critical damage.</para> /// </summary> CriticalSkill = 65, + /// <summary> /// <see href="https://garlandtools.org/db/#status/66"><strong>Terror</strong></see> ↓ (All Classes) /// <para>Frozen with fear and unable to execute actions.</para> /// </summary> Terror = 66, + /// <summary> /// <see href="https://garlandtools.org/db/#status/67"><strong>Leaden</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced, and cannot be restored by normal means.</para> /// </summary> Leaden = 67, + /// <summary> /// <see href="https://garlandtools.org/db/#status/68"><strong>Drainstrikes</strong></see> ↑ (All Classes) /// <para>Auto-attacks are generating an Absorb HP effect.</para> /// </summary> Drainstrikes = 68, + /// <summary> /// <see href="https://garlandtools.org/db/#status/69"><strong>Aspirstrikes</strong></see> ↑ (All Classes) /// <para>Auto-attacks are generating an Absorb MP effect.</para> /// </summary> Aspirstrikes = 69, + /// <summary> /// <see href="https://garlandtools.org/db/#status/70"><strong>Stunstrikes</strong></see> ↑ (All Classes) /// <para>Auto-attacks may stun target.</para> /// </summary> Stunstrikes = 70, + /// <summary> /// <see href="https://garlandtools.org/db/#status/71"><strong>Rampart</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Rampart = 71, + /// <summary> /// <see href="https://garlandtools.org/db/#status/72"><strong>Convalescence</strong></see> ↑ (All Classes) /// <para>HP recovery via healing magic is increased.</para> /// </summary> Convalescence = 72, + /// <summary> /// <see href="https://garlandtools.org/db/#status/73"><strong>Awareness</strong></see> ↑ (All Classes) /// <para>Cannot suffer critical damage.</para> /// </summary> Awareness = 73, + /// <summary> /// <see href="https://garlandtools.org/db/#status/74"><strong>Sentinel</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Sentinel = 74, + /// <summary> /// <see href="https://garlandtools.org/db/#status/75"><strong>Tempered Will</strong></see> ↑ (All Classes) /// <para>Immune to most knockback and draw-in effects.</para> /// </summary> TemperedWill = 75, + /// <summary> /// <see href="https://garlandtools.org/db/#status/76"><strong>Fight or Flight</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> FightOrFlight = 76, + /// <summary> /// <see href="https://garlandtools.org/db/#status/77"><strong>Bulwark</strong></see> ↑ (All Classes) /// <para>Blocking incoming attacks.</para> /// </summary> Bulwark = 77, + /// <summary> /// <see href="https://garlandtools.org/db/#status/78"><strong>Sword Oath</strong></see> ↑ (All Classes) /// <para>Auto-attacks are enhanced.</para> /// </summary> SwordOath = 78, + /// <summary> /// <see href="https://garlandtools.org/db/#status/79"><strong>Iron Will</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> IronWill = 79, + /// <summary> /// <see href="https://garlandtools.org/db/#status/80"><strong>Cover</strong></see> ↑ (All Classes) /// <para>Protecting a party member.</para> /// </summary> Cover = 80, + /// <summary> /// <see href="https://garlandtools.org/db/#status/81"><strong>Covered</strong></see> ↑ (PLD) /// <para>Under the protection of a party member.</para> /// </summary> Covered = 81, + /// <summary> /// <see href="https://garlandtools.org/db/#status/82"><strong>Hallowed Ground</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks.</para> /// </summary> HallowedGround = 82, + /// <summary> /// <see href="https://garlandtools.org/db/#status/83"><strong>Foresight</strong></see> ↑ (All Classes) /// <para>Defense is increased.</para> /// </summary> Foresight = 83, + /// <summary> /// <see href="https://garlandtools.org/db/#status/84"><strong>Bloodbath</strong></see> ↑ (All Classes) /// <para>Physical attacks generate HP equal to a portion of damage dealt.</para> /// </summary> Bloodbath = 84, + /// <summary> /// <see href="https://garlandtools.org/db/#status/85"><strong>Maim</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> Maim = 85, + /// <summary> /// <see href="https://garlandtools.org/db/#status/86"><strong>Berserk</strong></see> ↑ (All Classes) /// <para>All weaponskill attacks are both critical and direct hits. Damage dealt when under an effect that raises critical hit rate or direct hit rate is increased.</para> /// </summary> Berserk = 86, + /// <summary> /// <see href="https://garlandtools.org/db/#status/87"><strong>Thrill of Battle</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// <para>Enhanced Thrill of Battle Effect: HP recovery via healing actions is increased.</para> /// </summary> ThrillOfBattle = 87, + /// <summary> /// <see href="https://garlandtools.org/db/#status/88"><strong>Holmgang</strong></see> ↓ (All Classes) /// <para>Unable to move until effect fades.</para> /// </summary> Holmgang = 88, + /// <summary> /// <see href="https://garlandtools.org/db/#status/89"><strong>Vengeance</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced while inflicting a portion of sustained damage back to its source.</para> /// </summary> Vengeance = 89, + /// <summary> /// <see href="https://garlandtools.org/db/#status/90"><strong>Storm's Eye</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> StormsEye = 90, + /// <summary> /// <see href="https://garlandtools.org/db/#status/91"><strong>Defiance</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> Defiance = 91, + /// <summary> /// <see href="https://garlandtools.org/db/#status/92"><strong>Unchained</strong></see> ↑ (All Classes) /// <para>Damage penalty inflicted by Defiance is nullified.</para> /// </summary> Unchained = 92, + /// <summary> /// <see href="https://garlandtools.org/db/#status/93"><strong>Wrath</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> Wrath = 93, + /// <summary> /// <see href="https://garlandtools.org/db/#status/94"><strong>Wrath II</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> WrathIi = 94, + /// <summary> /// <see href="https://garlandtools.org/db/#status/95"><strong>Wrath III</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> WrathIii = 95, + /// <summary> /// <see href="https://garlandtools.org/db/#status/96"><strong>Wrath IV</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> WrathIv = 96, + /// <summary> /// <see href="https://garlandtools.org/db/#status/97"><strong>Infuriated</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> Infuriated = 97, + /// <summary> /// <see href="https://garlandtools.org/db/#status/98"><strong>Dragon Kick</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> DragonKick = 98, + /// <summary> /// <see href="https://garlandtools.org/db/#status/99"><strong>Featherfoot</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced.</para> /// </summary> Featherfoot = 99, + /// <summary> /// <see href="https://garlandtools.org/db/#status/100"><strong>Internal Release</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> InternalRelease = 100, + /// <summary> /// <see href="https://garlandtools.org/db/#status/101"><strong>Twin Snakes</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> TwinSnakes = 101, + /// <summary> /// <see href="https://garlandtools.org/db/#status/102"><strong>Mantra</strong></see> ↑ (PGL MNK) /// <para>HP recovery via healing actions is increased.</para> /// </summary> Mantra = 102, + /// <summary> /// <see href="https://garlandtools.org/db/#status/103"><strong>Fists of Fire</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> FistsOfFire = 103, + /// <summary> /// <see href="https://garlandtools.org/db/#status/104"><strong>Fists of Earth</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> FistsOfEarth = 104, + /// <summary> /// <see href="https://garlandtools.org/db/#status/105"><strong>Fists of Wind</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> FistsOfWind = 105, + /// <summary> /// <see href="https://garlandtools.org/db/#status/106"><strong>Touch of Death</strong></see> ↓ (All Classes) /// <para>Organs are failing, causing damage over time.</para> /// </summary> TouchOfDeath = 106, + /// <summary> /// <see href="https://garlandtools.org/db/#status/107"><strong>Opo-opo Form</strong></see> ↑ (All Classes) /// <para>Employing the opo-opo fighting stance.</para> /// </summary> OpoopoForm = 107, + /// <summary> /// <see href="https://garlandtools.org/db/#status/108"><strong>Raptor Form</strong></see> ↑ (All Classes) /// <para>Employing the raptor fighting stance.</para> /// </summary> RaptorForm = 108, + /// <summary> /// <see href="https://garlandtools.org/db/#status/109"><strong>Coeurl Form</strong></see> ↑ (All Classes) /// <para>Employing the coeurl fighting stance.</para> /// </summary> CoeurlForm = 109, + /// <summary> /// <see href="https://garlandtools.org/db/#status/110"><strong>Perfect Balance</strong></see> ↑ (All Classes) /// <para>Employing all three pugilistic fighting stances─opo-opo, raptor, and coeurl.</para> /// </summary> PerfectBalance = 110, + /// <summary> /// <see href="https://garlandtools.org/db/#status/111"><strong>Greased Lightning</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> GreasedLightning = 111, + /// <summary> /// <see href="https://garlandtools.org/db/#status/112"><strong>Greased Lightning II</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> GreasedLightningIi = 112, + /// <summary> /// <see href="https://garlandtools.org/db/#status/113"><strong>Greased Lightning III</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> GreasedLightningIii = 113, + /// <summary> /// <see href="https://garlandtools.org/db/#status/114"><strong>Keen Flurry</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> KeenFlurry = 114, + /// <summary> /// <see href="https://garlandtools.org/db/#status/115"><strong>Heavy Thrust</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> HeavyThrust = 115, + /// <summary> /// <see href="https://garlandtools.org/db/#status/116"><strong>Life Surge</strong></see> ↑ (All Classes) /// <para>Next weaponskill will result in a critical hit with a portion of the resulting damage being absorbed as HP. Damage dealt when under an effect that raises critical hit rate is increased.</para> /// </summary> LifeSurge = 116, + /// <summary> /// <see href="https://garlandtools.org/db/#status/117"><strong>Blood for Blood</strong></see> ↑ (All Classes) /// <para>Damage dealt and damage taken are increased.</para> /// </summary> BloodForBlood = 117, + /// <summary> /// <see href="https://garlandtools.org/db/#status/118"><strong>Chaos Thrust</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> ChaosThrust = 118, + /// <summary> /// <see href="https://garlandtools.org/db/#status/119"><strong>Phlebotomize</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> Phlebotomize = 119, + /// <summary> /// <see href="https://garlandtools.org/db/#status/120"><strong>Power Surge</strong></see> ↑ (All Classes) /// <para>Damage is increased for next Jump or Spineshatter Dive.</para> /// </summary> PowerSurge = 120, + /// <summary> /// <see href="https://garlandtools.org/db/#status/121"><strong>Disembowel</strong></see> ↓ (All Classes) /// <para>Piercing resistance is reduced.</para> /// </summary> Disembowel = 121, + /// <summary> /// <see href="https://garlandtools.org/db/#status/122"><strong>Straight Shot Ready</strong></see> ↑ (All Classes) /// <para>Able to execute Straight Shot.</para> /// </summary> StraightShotReady = 122, + /// <summary> /// <see href="https://garlandtools.org/db/#status/123"><strong>Hawk's Eye</strong></see> ↑ (All Classes) /// <para>Dexterity is increased and all attacks are guaranteed to land.</para> /// </summary> HawksEye = 123, + /// <summary> /// <see href="https://garlandtools.org/db/#status/124"><strong>Venomous Bite</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> VenomousBite = 124, + /// <summary> /// <see href="https://garlandtools.org/db/#status/125"><strong>Raging Strikes</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> RagingStrikes = 125, + /// <summary> /// <see href="https://garlandtools.org/db/#status/126"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_126 = 126, + /// <summary> /// <see href="https://garlandtools.org/db/#status/127"><strong>Diversion</strong></see> ↑ (All Classes) /// <para>Enmity generation is reduced.</para> /// </summary> Diversion = 127, + /// <summary> /// <see href="https://garlandtools.org/db/#status/128"><strong>Barrage</strong></see> ↑ (All Classes) /// <para>Able to execute Refulgent ArrowStraight ShotStraight Shot and ShadowbiteWide VolleyWide Volley.</para> /// <para>Refulgent ArrowStraight ShotStraight Shot will strike the selected target three times, while ShadowbiteWide VolleyWide Volley's potency will be increased.</para> /// </summary> Barrage = 128, + /// <summary> /// <see href="https://garlandtools.org/db/#status/129"><strong>Windbite</strong></see> ↓ (All Classes) /// <para>Wounds are exposed to the elements, causing wind damage over time.</para> /// </summary> Windbite = 129, + /// <summary> /// <see href="https://garlandtools.org/db/#status/130"><strong>Straight Shot</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> StraightShot = 130, + /// <summary> /// <see href="https://garlandtools.org/db/#status/131"><strong>Downpour of Death</strong></see> ↑ (All Classes) /// <para>Next Rain of Death will not require any TP.</para> /// </summary> DownpourOfDeath = 131, + /// <summary> /// <see href="https://garlandtools.org/db/#status/132"><strong>Quicker Nock</strong></see> ↑ (All Classes) /// <para>Next Quick Nock will not require any TP.</para> /// </summary> QuickerNock = 132, + /// <summary> /// <see href="https://garlandtools.org/db/#status/133"><strong>Swiftsong</strong></see> ↑ (All Classes) /// <para>Movement speed of self and nearby party members is increased.</para> /// </summary> Swiftsong = 133, + /// <summary> /// <see href="https://garlandtools.org/db/#status/134"><strong>Swiftsong</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Swiftsong_134 = 134, + /// <summary> /// <see href="https://garlandtools.org/db/#status/135"><strong>Mage's Ballad</strong></see> ↑ (All Classes) /// <para>Using MP to gradually restore the MP of nearby party members. Damage dealt is reduced.</para> /// </summary> MagesBallad = 135, + /// <summary> /// <see href="https://garlandtools.org/db/#status/136"><strong>Mage's Ballad</strong></see> ↑ (All Classes) /// <para>Restoring MP over time.</para> /// </summary> MagesBallad_136 = 136, + /// <summary> /// <see href="https://garlandtools.org/db/#status/137"><strong>Army's Paeon</strong></see> ↑ (All Classes) /// <para>Using MP to gradually refresh the TP of self and nearby party members. Damage dealt is reduced.</para> /// </summary> ArmysPaeon = 137, + /// <summary> /// <see href="https://garlandtools.org/db/#status/138"><strong>Army's Paeon</strong></see> ↑ (All Classes) /// <para>Gradually regenerating TP.</para> /// </summary> ArmysPaeon_138 = 138, + /// <summary> /// <see href="https://garlandtools.org/db/#status/139"><strong>Foe Requiem</strong></see> ↑ (All Classes) /// <para>Using MP to increase the damage taken by nearby enemies.</para> /// </summary> FoeRequiem = 139, + /// <summary> /// <see href="https://garlandtools.org/db/#status/140"><strong>Foe Requiem</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> FoeRequiem_140 = 140, + /// <summary> /// <see href="https://garlandtools.org/db/#status/141"><strong>Battle Voice</strong></see> ↑ (BRD) /// <para>Direct hit rate is increased.</para> /// </summary> BattleVoice = 141, + /// <summary> /// <see href="https://garlandtools.org/db/#status/142"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_142 = 142, + /// <summary> /// <see href="https://garlandtools.org/db/#status/143"><strong>Aero</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Aero = 143, + /// <summary> /// <see href="https://garlandtools.org/db/#status/144"><strong>Aero II</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> AeroIi = 144, + /// <summary> /// <see href="https://garlandtools.org/db/#status/145"><strong>Cleric Stance</strong></see> ↑ (CNJ WHM SCH AST SGE) /// <para>Magic damage dealt is increased.</para> /// </summary> ClericStance = 145, + /// <summary> /// <see href="https://garlandtools.org/db/#status/146"><strong>Protect</strong></see> ↑ (CNJ WHM SCH AST SGE) /// <para>Both physical and magic defense are enhanced.</para> /// </summary> Protect = 146, + /// <summary> /// <see href="https://garlandtools.org/db/#status/147"><strong>Protect</strong></see> ↑ (All Classes) /// <para>Both physical and magic defense are enhanced.</para> /// </summary> Protect_147 = 147, + /// <summary> /// <see href="https://garlandtools.org/db/#status/148"><strong>Raise</strong></see> ↑ (All Classes) /// <para>Teetering on the brink of consciousness.</para> /// </summary> Raise = 148, + /// <summary> /// <see href="https://garlandtools.org/db/#status/149"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_149 = 149, + /// <summary> /// <see href="https://garlandtools.org/db/#status/150"><strong>Medica II</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> MedicaIi = 150, + /// <summary> /// <see href="https://garlandtools.org/db/#status/151"><strong>Stoneskin</strong></see> ↑ (All Classes) /// <para>Lithified flesh is absorbing damage.</para> /// </summary> Stoneskin = 151, + /// <summary> /// <see href="https://garlandtools.org/db/#status/152"><strong>Stoneskin (Physical)</strong></see> ↑ (All Classes) /// <para>Lithified flesh is absorbing physical damage.</para> /// </summary> StoneskinPhysical = 152, + /// <summary> /// <see href="https://garlandtools.org/db/#status/153"><strong>Stoneskin (Magical)</strong></see> ↑ (All Classes) /// <para>Lithified flesh is absorbing magic damage.</para> /// </summary> StoneskinMagical = 153, + /// <summary> /// <see href="https://garlandtools.org/db/#status/154"><strong>Shroud of Saints</strong></see> ↑ (All Classes) /// <para>Restoring MP over time.</para> /// </summary> ShroudOfSaints = 154, + /// <summary> /// <see href="https://garlandtools.org/db/#status/155"><strong>Freecure</strong></see> ↑ (All Classes) /// <para>Next Cure II will not require any MP to cast.</para> /// </summary> Freecure = 155, + /// <summary> /// <see href="https://garlandtools.org/db/#status/156"><strong>Overcure</strong></see> ↑ (All Classes) /// <para>Next Cure III will cost half MP.</para> /// </summary> Overcure = 156, + /// <summary> /// <see href="https://garlandtools.org/db/#status/157"><strong>Presence of Mind</strong></see> ↑ (All Classes) /// <para>Spell cast times, recast times, and auto-attack delay are reduced.</para> /// </summary> PresenceOfMind = 157, + /// <summary> /// <see href="https://garlandtools.org/db/#status/158"><strong>Regen</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> Regen = 158, + /// <summary> /// <see href="https://garlandtools.org/db/#status/159"><strong>Divine Seal</strong></see> ↑ (All Classes) /// <para>HP restoration via healing magic is increased.</para> /// </summary> DivineSeal = 159, + /// <summary> /// <see href="https://garlandtools.org/db/#status/160"><strong>Surecast</strong></see> ↑ (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE PCT) /// <para>Spells cannot be interrupted by taking damage.</para> /// </summary> Surecast = 160, + /// <summary> /// <see href="https://garlandtools.org/db/#status/161"><strong>Thunder</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Thunder = 161, + /// <summary> /// <see href="https://garlandtools.org/db/#status/162"><strong>Thunder II</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> ThunderIi = 162, + /// <summary> /// <see href="https://garlandtools.org/db/#status/163"><strong>Thunder III</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> ThunderIii = 163, + /// <summary> /// <see href="https://garlandtools.org/db/#status/164"><strong>Thundercloud</strong></see> ↑ (All Classes) /// <para>Next Thunder spell will add its full damage over time amount to its initial damage, require no time to cast, and cost no MP.</para> /// </summary> Thundercloud = 164, + /// <summary> /// <see href="https://garlandtools.org/db/#status/165"><strong>Firestarter</strong></see> ↑ (All Classes) /// <para>Next Fire III will require no time to cast and cost no MP.</para> /// </summary> Firestarter = 165, + /// <summary> /// <see href="https://garlandtools.org/db/#status/166"><strong>Succor</strong></see> ↑ (All Classes) /// <para>Next Succor will cost no MP.</para> /// </summary> Succor = 166, + /// <summary> /// <see href="https://garlandtools.org/db/#status/167"><strong>Swiftcast</strong></see> ↑ (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE PCT) /// <para>Next spell will require no time to cast.</para> /// </summary> Swiftcast = 167, + /// <summary> /// <see href="https://garlandtools.org/db/#status/168"><strong>Manaward</strong></see> ↑ (All Classes) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> Manaward = 168, + /// <summary> /// <see href="https://garlandtools.org/db/#status/169"><strong>Manawall</strong></see> ↑ (All Classes) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> Manawall = 169, + /// <summary> /// <see href="https://garlandtools.org/db/#status/170"><strong>Apocatastasis</strong></see> ↑ (THM ACN BLM SMN RDM BLU PCT) /// <para>Magic damage taken is reduced.</para> /// </summary> Apocatastasis = 170, + /// <summary> /// <see href="https://garlandtools.org/db/#status/171"><strong>Ekpyrosis</strong></see> ↓ (All Classes) /// <para>Unable to receive Apocatastasis.</para> /// </summary> Ekpyrosis = 171, + /// <summary> /// <see href="https://garlandtools.org/db/#status/172"><strong>Infirmity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Infirmity = 172, + /// <summary> /// <see href="https://garlandtools.org/db/#status/173"><strong>Astral Fire</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning astrally. Fire-aspected spells require more MP, but do more damage. Ice-aspected spells require less MP, but do less damage. MP regeneration has stopped.</para> /// </summary> AstralFire = 173, + /// <summary> /// <see href="https://garlandtools.org/db/#status/174"><strong>Astral Fire II</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning astrally. Fire-aspected spells require more MP, but do more damage. Ice-aspected spells require less MP, but do less damage. MP regeneration has stopped.</para> /// </summary> AstralFireIi = 174, + /// <summary> /// <see href="https://garlandtools.org/db/#status/175"><strong>Astral Fire III</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning astrally. Fire-aspected spells require more MP, but do more damage. Ice-aspected spells require less MP, but do less damage, and casting times are halved. MP regeneration has stopped.</para> /// </summary> AstralFireIii = 175, + /// <summary> /// <see href="https://garlandtools.org/db/#status/176"><strong>Umbral Ice</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning umbrally. Fire-aspected spells require less MP, but do less damage. MP regeneration has quickened.</para> /// </summary> UmbralIce = 176, + /// <summary> /// <see href="https://garlandtools.org/db/#status/177"><strong>Umbral Ice II</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning umbrally. Fire-aspected spells require less MP, but do less damage. MP regeneration has quickened.</para> /// </summary> UmbralIceIi = 177, + /// <summary> /// <see href="https://garlandtools.org/db/#status/178"><strong>Umbral Ice III</strong></see> ↑ (All Classes) /// <para>Aetherial balance of mind and spirit is leaning umbrally. Fire-aspected spells require less MP, but do less damage, and their casting times are halved. MP regeneration has quickened.</para> /// </summary> UmbralIceIii = 178, + /// <summary> /// <see href="https://garlandtools.org/db/#status/179"><strong>Bio</strong></see> ↓ (All Classes) /// <para>Contagions are spreading, causing damage over time.</para> /// </summary> Bio = 179, + /// <summary> /// <see href="https://garlandtools.org/db/#status/180"><strong>Miasma</strong></see> ↓ (All Classes) /// <para>Lungs are failing, causing damage over time.</para> /// </summary> Miasma = 180, + /// <summary> /// <see href="https://garlandtools.org/db/#status/181"><strong>Disease</strong></see> ↓ (All Classes) /// <para>Movement speed and HP recovered via healing magic are reduced.</para> /// </summary> Disease = 181, + /// <summary> /// <see href="https://garlandtools.org/db/#status/182"><strong>Virus</strong></see> ↓ (All Classes) /// <para>Motor skills are hampered, causing reduced strength and dexterity.</para> /// </summary> Virus = 182, + /// <summary> /// <see href="https://garlandtools.org/db/#status/183"><strong>Fever</strong></see> ↓ (All Classes) /// <para>Head is burning, causing reduced mind and intelligence.</para> /// </summary> Fever = 183, + /// <summary> /// <see href="https://garlandtools.org/db/#status/184"><strong>Sustain</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Sustain = 184, + /// <summary> /// <see href="https://garlandtools.org/db/#status/185"><strong>Eye for an Eye</strong></see> ↑ (CNJ WHM SCH AST SGE) /// <para>Chance that next hit suffered will lower the attacker's damage dealt.</para> /// </summary> EyeForAnEye = 185, + /// <summary> /// <see href="https://garlandtools.org/db/#status/186"><strong>Eye for an Eye</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> EyeForAnEye_186 = 186, + /// <summary> /// <see href="https://garlandtools.org/db/#status/187"><strong>Rouse</strong></see> ↑ (All Classes) /// <para>Damage and healing magic potency are increased.</para> /// </summary> Rouse = 187, + /// <summary> /// <see href="https://garlandtools.org/db/#status/188"><strong>Miasma II</strong></see> ↓ (All Classes) /// <para>Contagions are spreading, causing damage over time.</para> /// </summary> MiasmaIi = 188, + /// <summary> /// <see href="https://garlandtools.org/db/#status/189"><strong>Bio II</strong></see> ↓ (All Classes) /// <para>Lungs are failing, causing damage over time.</para> /// </summary> BioIi = 189, + /// <summary> /// <see href="https://garlandtools.org/db/#status/190"><strong>Shadow Flare</strong></see> ↑ (All Classes) /// <para>Burning shadows dance across the ground, dealing unaspected damage to any who tread upon it.</para> /// </summary> ShadowFlare = 190, + /// <summary> /// <see href="https://garlandtools.org/db/#status/191"><strong>Malady</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Malady = 191, + /// <summary> /// <see href="https://garlandtools.org/db/#status/192"><strong>Spur</strong></see> ↑ (All Classes) /// <para>Attack power and attack magic potency are increased.</para> /// </summary> Spur = 192, + /// <summary> /// <see href="https://garlandtools.org/db/#status/193"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_193 = 193, + /// <summary> /// <see href="https://garlandtools.org/db/#status/194"><strong>Shield Wall</strong></see> ↑ (GLA MRD PLD WAR DRK GNB) /// <para>Damage taken is reduced.</para> /// </summary> ShieldWall = 194, + /// <summary> /// <see href="https://garlandtools.org/db/#status/195"><strong>Stronghold</strong></see> ↑ (GLA MRD PLD WAR DRK GNB) /// <para>Damage taken is reduced.</para> /// </summary> Stronghold = 195, + /// <summary> /// <see href="https://garlandtools.org/db/#status/196"><strong>Last Bastion</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> LastBastion = 196, + /// <summary> /// <see href="https://garlandtools.org/db/#status/197"><strong>Blaze Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing fire damage to attackers.</para> /// </summary> BlazeSpikes = 197, + /// <summary> /// <see href="https://garlandtools.org/db/#status/198"><strong>Ice Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing ice damage to and sometimes slowing down attackers.</para> /// </summary> IceSpikes = 198, + /// <summary> /// <see href="https://garlandtools.org/db/#status/199"><strong>Shock Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing lightning damage to and sometimes stunning attackers.</para> /// </summary> ShockSpikes = 199, + /// <summary> /// <see href="https://garlandtools.org/db/#status/200"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_200 = 200, + /// <summary> /// <see href="https://garlandtools.org/db/#status/201"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_201 = 201, + /// <summary> /// <see href="https://garlandtools.org/db/#status/202"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_202 = 202, + /// <summary> /// <see href="https://garlandtools.org/db/#status/203"><strong>Boost</strong></see> ↑ (All Classes) /// <para>Attack power on next special technique is increased.</para> /// </summary> Boost = 203, + /// <summary> /// <see href="https://garlandtools.org/db/#status/204"><strong>Enfire</strong></see> ↑ (All Classes) /// <para>Fire damage added to auto-attacks.</para> /// </summary> Enfire = 204, + /// <summary> /// <see href="https://garlandtools.org/db/#status/205"><strong>Enblizzard</strong></see> ↑ (All Classes) /// <para>Ice damage added to auto-attacks.</para> /// </summary> Enblizzard = 205, + /// <summary> /// <see href="https://garlandtools.org/db/#status/206"><strong>Enaero</strong></see> ↑ (All Classes) /// <para>Wind damage added to auto-attacks.</para> /// </summary> Enaero = 206, + /// <summary> /// <see href="https://garlandtools.org/db/#status/207"><strong>Enstone</strong></see> ↑ (All Classes) /// <para>Earth damage added to auto-attacks.</para> /// </summary> Enstone = 207, + /// <summary> /// <see href="https://garlandtools.org/db/#status/208"><strong>Enthunder</strong></see> ↑ (All Classes) /// <para>Lightning damage added to auto-attacks.</para> /// </summary> Enthunder = 208, + /// <summary> /// <see href="https://garlandtools.org/db/#status/209"><strong>Enwater</strong></see> ↑ (All Classes) /// <para>Water damage added to auto-attacks.</para> /// </summary> Enwater = 209, + /// <summary> /// <see href="https://garlandtools.org/db/#status/210"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom = 210, + /// <summary> /// <see href="https://garlandtools.org/db/#status/211"><strong>Sharpened Knife</strong></see> ↑ (All Classes) /// <para>Next Lateral Slash is changed to Sharpened Knife, increasing damage dealt.</para> /// </summary> SharpenedKnife = 211, + /// <summary> /// <see href="https://garlandtools.org/db/#status/212"><strong>True Sight</strong></see> ↓ (All Classes) /// <para>Able to see through the levequest target's glamour.</para> /// </summary> TrueSight = 212, + /// <summary> /// <see href="https://garlandtools.org/db/#status/213"><strong>Pacification</strong></see> ↓ (All Classes) /// <para>The target is pacified and will no longer attack.</para> /// </summary> Pacification_213 = 213, + /// <summary> /// <see href="https://garlandtools.org/db/#status/214"><strong>Agitation</strong></see> ↑ (All Classes) /// <para>Excited by failed pacification. Attack power and attack magic potency are enhanced.</para> /// </summary> Agitation = 214, + /// <summary> /// <see href="https://garlandtools.org/db/#status/215"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_215 = 215, + /// <summary> /// <see href="https://garlandtools.org/db/#status/216"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis_216 = 216, + /// <summary> /// <see href="https://garlandtools.org/db/#status/217"><strong>Triangulate</strong></see> ↑ (All Classes) /// <para>Able to locate mature trees and lush vegetation.</para> /// </summary> Triangulate = 217, + /// <summary> /// <see href="https://garlandtools.org/db/#status/218"><strong>Gathering Rate Up</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an item while gathering is increased.</para> /// </summary> GatheringRateUp = 218, + /// <summary> /// <see href="https://garlandtools.org/db/#status/219"><strong>Gathering Yield Up</strong></see> ↑ (All Classes) /// <para>Number of items obtained while gathering is increased.</para> /// </summary> GatheringYieldUp = 219, + /// <summary> /// <see href="https://garlandtools.org/db/#status/220"><strong>Gathering Fortune Up</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an HQ item while gathering is increased.</para> /// </summary> GatheringFortuneUp = 220, + /// <summary> /// <see href="https://garlandtools.org/db/#status/221"><strong>Truth of Forests</strong></see> ↑ (All Classes) /// <para>Able to locate unspoiled, legendary, and clouded mature trees and lush vegetation.</para> /// </summary> TruthOfForests = 221, + /// <summary> /// <see href="https://garlandtools.org/db/#status/222"><strong>Truth of Mountains</strong></see> ↑ (All Classes) /// <para>Able to locate unspoiled, legendary, and clouded mineral deposits and rocky outcrops.</para> /// </summary> TruthOfMountains = 222, + /// <summary> /// <see href="https://garlandtools.org/db/#status/223"><strong>Byregot's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element lightning is increased while gathering.</para> /// </summary> ByregotsWard = 223, + /// <summary> /// <see href="https://garlandtools.org/db/#status/224"><strong>Nophica's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element earth is increased while gathering.</para> /// </summary> NophicasWard = 224, + /// <summary> /// <see href="https://garlandtools.org/db/#status/225"><strong>Prospect</strong></see> ↑ (All Classes) /// <para>Able to locate mineral deposits and rocky outcrops.</para> /// </summary> Prospect = 225, + /// <summary> /// <see href="https://garlandtools.org/db/#status/226"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_226 = 226, + /// <summary> /// <see href="https://garlandtools.org/db/#status/227"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced = 227, + /// <summary> /// <see href="https://garlandtools.org/db/#status/228"><strong>Menphina's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element ice is increased while gathering.</para> /// </summary> MenphinasWard = 228, + /// <summary> /// <see href="https://garlandtools.org/db/#status/229"><strong>Nald'thal's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element fire is increased while gathering.</para> /// </summary> NaldthalsWard = 229, + /// <summary> /// <see href="https://garlandtools.org/db/#status/230"><strong>Llymlaen's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element wind is increased while gathering.</para> /// </summary> LlymlaensWard = 230, + /// <summary> /// <see href="https://garlandtools.org/db/#status/231"><strong>Thaliak's Ward</strong></see> ↑ (All Classes) /// <para>Affinity to the element water is increased while gathering.</para> /// </summary> ThaliaksWard = 231, + /// <summary> /// <see href="https://garlandtools.org/db/#status/232"><strong>Preparation</strong></see> ↑ (All Classes) /// <para>Able to recognize the conditions for obtaining HQ items while gathering.</para> /// </summary> Preparation = 232, + /// <summary> /// <see href="https://garlandtools.org/db/#status/233"><strong>Arbor Call</strong></see> ↑ (All Classes) /// <para>Surveying the land for the nearest mature tree or lush vegetation.</para> /// </summary> ArborCall = 233, + /// <summary> /// <see href="https://garlandtools.org/db/#status/234"><strong>Lay of the Land</strong></see> ↑ (All Classes) /// <para>Surveying the land for the nearest mineral deposit or rocky outcrop.</para> /// </summary> LayOfTheLand = 234, + /// <summary> /// <see href="https://garlandtools.org/db/#status/235"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn = 235, + /// <summary> /// <see href="https://garlandtools.org/db/#status/236"><strong>Choco Beak</strong></see> ↓ (All Classes) /// <para>Bleeding HP over time.</para> /// </summary> ChocoBeak = 236, + /// <summary> /// <see href="https://garlandtools.org/db/#status/237"><strong>Choco Regen</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> ChocoRegen = 237, + /// <summary> /// <see href="https://garlandtools.org/db/#status/238"><strong>Choco Surge</strong></see> ↑ (All Classes) /// <para>HP restoration via healing magic is increased.</para> /// </summary> ChocoSurge = 238, + /// <summary> /// <see href="https://garlandtools.org/db/#status/239"><strong>The Echo</strong></see> ↑ (All Classes) /// <para>Maximum HP, damage dealt, and potency of HP restoration actions are increased.</para> /// </summary> TheEcho_239 = 239, + /// <summary> /// <see href="https://garlandtools.org/db/#status/240"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_240 = 240, + /// <summary> /// <see href="https://garlandtools.org/db/#status/241"><strong>Blessing of Light</strong></see> ↑ (All Classes) /// <para>Bathed in the light of the Mothercrystal.</para> /// </summary> BlessingOfLight = 241, + /// <summary> /// <see href="https://garlandtools.org/db/#status/242"><strong>Arbor Call II</strong></see> ↑ (All Classes) /// <para>Surveying the land for the highest-level mature tree or lush vegetation.</para> /// </summary> ArborCallIi = 242, + /// <summary> /// <see href="https://garlandtools.org/db/#status/243"><strong>Lay of the Land II</strong></see> ↑ (All Classes) /// <para>Surveying the land for the highest-level mineral deposit or rocky outcrop.</para> /// </summary> LayOfTheLandIi = 243, + /// <summary> /// <see href="https://garlandtools.org/db/#status/244"><strong>Fracture</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> Fracture = 244, + /// <summary> /// <see href="https://garlandtools.org/db/#status/245"><strong>Sanction</strong></see> ↑ (All Classes) /// <para>Receiving the gear-enhancing benefits of a Grand Company sanction.</para> /// </summary> Sanction = 245, + /// <summary> /// <see href="https://garlandtools.org/db/#status/246"><strong>Demolish</strong></see> ↓ (All Classes) /// <para>Internal bleeding is causing damage over time.</para> /// </summary> Demolish = 246, + /// <summary> /// <see href="https://garlandtools.org/db/#status/247"><strong>Rain of Death</strong></see> ↓ (All Classes) /// <para>Evasion is reduced.</para> /// </summary> RainOfDeath = 247, + /// <summary> /// <see href="https://garlandtools.org/db/#status/248"><strong>Circle of Scorn</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> CircleOfScorn = 248, + /// <summary> /// <see href="https://garlandtools.org/db/#status/249"><strong>Flaming Arrow</strong></see> ↑ (All Classes) /// <para>The ground is ablaze, dealing fire damage to any who tread upon it.</para> /// </summary> FlamingArrow = 249, + /// <summary> /// <see href="https://garlandtools.org/db/#status/250"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns = 250, + /// <summary> /// <see href="https://garlandtools.org/db/#status/251"><strong>Inner Quiet</strong></see> ↑ (Disciple of the Hand) /// <para>Receiving a bonus to Touch action efficiency with every increase in quality.</para> /// </summary> InnerQuiet = 251, + /// <summary> /// <see href="https://garlandtools.org/db/#status/252"><strong>Waste Not</strong></see> ↑ (Disciple of the Hand) /// <para>Durability loss is reduced by half.</para> /// </summary> WasteNot = 252, + /// <summary> /// <see href="https://garlandtools.org/db/#status/253"><strong>Steady Hand</strong></see> ↑ (Disciple of the Hand) /// <para>Action success rate is increased by 20%.</para> /// </summary> SteadyHand = 253, + /// <summary> /// <see href="https://garlandtools.org/db/#status/254"><strong>Great Strides</strong></see> ↑ (Disciple of the Hand) /// <para>Efficiency of next Touch action is significantly increased.</para> /// </summary> GreatStrides = 254, + /// <summary> /// <see href="https://garlandtools.org/db/#status/255"><strong>Ingenuity</strong></see> ↑ (Disciple of the Hand) /// <para>Effectiveness of Touch and Synthesis actions is increased.</para> /// </summary> Ingenuity = 255, + /// <summary> /// <see href="https://garlandtools.org/db/#status/256"><strong>Ingenuity II</strong></see> ↑ (Disciple of the Hand) /// <para>Recipe level is reduced.</para> /// </summary> IngenuityIi = 256, + /// <summary> /// <see href="https://garlandtools.org/db/#status/257"><strong>Waste Not II</strong></see> ↑ (Disciple of the Hand) /// <para>Durability loss is reduced by half.</para> /// </summary> WasteNotIi = 257, + /// <summary> /// <see href="https://garlandtools.org/db/#status/258"><strong>Manipulation</strong></see> ↑ (Disciple of the Hand) /// <para>Receiving 10 points of durability after each step.</para> /// </summary> Manipulation = 258, + /// <summary> /// <see href="https://garlandtools.org/db/#status/259"><strong>Innovation</strong></see> ↑ (Disciple of the Hand) /// <para>Control is increased by 50%.</para> /// </summary> Innovation = 259, + /// <summary> /// <see href="https://garlandtools.org/db/#status/260"><strong>Reclaim</strong></see> ↑ (Disciple of the Hand) /// <para>90% chance that materials will not be lost in the event of botched synthesis.</para> /// </summary> Reclaim = 260, + /// <summary> /// <see href="https://garlandtools.org/db/#status/261"><strong>Comfort Zone</strong></see> ↑ (Disciple of the Hand) /// <para>Regaining 8 CP after each step.</para> /// </summary> ComfortZone = 261, + /// <summary> /// <see href="https://garlandtools.org/db/#status/262"><strong>Steady Hand II</strong></see> ↑ (Disciple of the Hand) /// <para>Action success rate is increased by 30%.</para> /// </summary> SteadyHandIi = 262, + /// <summary> /// <see href="https://garlandtools.org/db/#status/263"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_263 = 263, + /// <summary> /// <see href="https://garlandtools.org/db/#status/264"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound = 264, + /// <summary> /// <see href="https://garlandtools.org/db/#status/265"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound = 265, + /// <summary> /// <see href="https://garlandtools.org/db/#status/266"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion = 266, + /// <summary> /// <see href="https://garlandtools.org/db/#status/267"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_267 = 267, + /// <summary> /// <see href="https://garlandtools.org/db/#status/268"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite = 268, + /// <summary> /// <see href="https://garlandtools.org/db/#status/269"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_269 = 269, + /// <summary> /// <see href="https://garlandtools.org/db/#status/270"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge = 270, + /// <summary> /// <see href="https://garlandtools.org/db/#status/271"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution = 271, + /// <summary> /// <see href="https://garlandtools.org/db/#status/272"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy = 272, + /// <summary> /// <see href="https://garlandtools.org/db/#status/273"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding = 273, + /// <summary> /// <see href="https://garlandtools.org/db/#status/274"><strong>Recuperation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Recuperation = 274, + /// <summary> /// <see href="https://garlandtools.org/db/#status/275"><strong>Poison +1</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison1 = 275, + /// <summary> /// <see href="https://garlandtools.org/db/#status/276"><strong>Voice of Valor</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> VoiceOfValor = 276, + /// <summary> /// <see href="https://garlandtools.org/db/#status/277"><strong>Voice of Fortitude</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VoiceOfFortitude = 277, + /// <summary> /// <see href="https://garlandtools.org/db/#status/278"><strong>Relentless March</strong></see> ↑ (All Classes) /// <para></para> /// </summary> RelentlessMarch = 278, + /// <summary> /// <see href="https://garlandtools.org/db/#status/279"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation = 279, + /// <summary> /// <see href="https://garlandtools.org/db/#status/280"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_280 = 280, + /// <summary> /// <see href="https://garlandtools.org/db/#status/281"><strong>Physical Damage Down</strong></see> ↓ (All Classes) /// <para>Physical damage dealt is reduced.</para> /// </summary> PhysicalDamageDown_281 = 281, + /// <summary> /// <see href="https://garlandtools.org/db/#status/282"><strong>Mana Modulation</strong></see> ↓ (All Classes) /// <para>Damage dealt by attack spells and HP restored via healing magic are reduced.</para> /// </summary> ManaModulation = 282, + /// <summary> /// <see href="https://garlandtools.org/db/#status/283"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_283 = 283, + /// <summary> /// <see href="https://garlandtools.org/db/#status/284"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_284 = 284, + /// <summary> /// <see href="https://garlandtools.org/db/#status/285"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_285 = 285, + /// <summary> /// <see href="https://garlandtools.org/db/#status/286"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_286 = 286, + /// <summary> /// <see href="https://garlandtools.org/db/#status/287"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_287 = 287, + /// <summary> /// <see href="https://garlandtools.org/db/#status/288"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_288 = 288, + /// <summary> /// <see href="https://garlandtools.org/db/#status/289"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_289 = 289, + /// <summary> /// <see href="https://garlandtools.org/db/#status/290"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_290 = 290, + /// <summary> /// <see href="https://garlandtools.org/db/#status/291"><strong>Hundred Fists</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> HundredFists = 291, + /// <summary> /// <see href="https://garlandtools.org/db/#status/292"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters = 292, + /// <summary> /// <see href="https://garlandtools.org/db/#status/293"><strong>Skill Speed Up</strong></see> ↑ (All Classes) /// <para>Weaponskill cast and recast times are reduced.</para> /// </summary> SkillSpeedUp = 293, + /// <summary> /// <see href="https://garlandtools.org/db/#status/294"><strong>Spell Speed Up</strong></see> ↑ (All Classes) /// <para>Spell cast and recast times are reduced.</para> /// </summary> SpellSpeedUp = 294, + /// <summary> /// <see href="https://garlandtools.org/db/#status/295"><strong>Goldbile</strong></see> ↓ (All Classes) /// <para>Sulphuric sludge is eating away at the skin, causing extreme discomfort and gradual HP loss.</para> /// </summary> Goldbile = 295, + /// <summary> /// <see href="https://garlandtools.org/db/#status/296"><strong>Hysteria</strong></see> ↓ (All Classes) /// <para>Unable to act on your own free will.</para> /// </summary> Hysteria = 296, + /// <summary> /// <see href="https://garlandtools.org/db/#status/297"><strong>Galvanize</strong></see> ↑ (SCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Galvanize = 297, + /// <summary> /// <see href="https://garlandtools.org/db/#status/298"><strong>Sacred Soil</strong></see> ↑ (All Classes) /// <para>An area of land has been sanctified, reducing damage taken for all who enter.</para> /// </summary> SacredSoil = 298, + /// <summary> /// <see href="https://garlandtools.org/db/#status/299"><strong>Sacred Soil</strong></see> ↑ (SCH) /// <para>Damage taken is reduced.</para> /// </summary> SacredSoil_299 = 299, + /// <summary> /// <see href="https://garlandtools.org/db/#status/300"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_300 = 300, + /// <summary> /// <see href="https://garlandtools.org/db/#status/301"><strong>Critical Strikes</strong></see> ↑ (All Classes) /// <para>All attacks are dealing critical damage.</para> /// </summary> CriticalStrikes = 301, + /// <summary> /// <see href="https://garlandtools.org/db/#status/302"><strong>Gold Lung</strong></see> ↓ (All Classes) /// <para>A layer of sulphuric sludge has built up on the body.</para> /// </summary> GoldLung = 302, + /// <summary> /// <see href="https://garlandtools.org/db/#status/303"><strong>Burrs</strong></see> ↓ (All Classes) /// <para>Hooked burrs have dug into your flesh.</para> /// </summary> Burrs = 303, + /// <summary> /// <see href="https://garlandtools.org/db/#status/304"><strong>Aetherflow</strong></see> ↑ (All Classes) /// <para>Aether is gathering in the body.</para> /// </summary> Aetherflow = 304, + /// <summary> /// <see href="https://garlandtools.org/db/#status/305"><strong>The Dragon's Curse</strong></see> ↑ (All Classes) /// <para>Under the power of the dragon's eye.</para> /// </summary> TheDragonsCurse = 305, + /// <summary> /// <see href="https://garlandtools.org/db/#status/306"><strong>Inner Dragon</strong></see> ↑ (All Classes) /// <para>Under control of the dragon's eye.</para> /// </summary> InnerDragon = 306, + /// <summary> /// <see href="https://garlandtools.org/db/#status/307"><strong>Voice of Valor</strong></see> ↑ (All Classes) /// <para>Gradually restoring the HP of nearby party members. Damage dealt is reduced.</para> /// </summary> VoiceOfValor_307 = 307, + /// <summary> /// <see href="https://garlandtools.org/db/#status/308"><strong>Voice of Fortitude</strong></see> ↑ (All Classes) /// <para>Reducing damage taken by nearby party members. Damage dealt is reduced.</para> /// </summary> VoiceOfFortitude_308 = 308, + /// <summary> /// <see href="https://garlandtools.org/db/#status/309"><strong>Relentless March</strong></see> ↑ (All Classes) /// <para>Increasing frequency of actions executed by nearby party members. Damage dealt is reduced.</para> /// </summary> RelentlessMarch_309 = 309, + /// <summary> /// <see href="https://garlandtools.org/db/#status/310"><strong>Curl</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Curl = 310, + /// <summary> /// <see href="https://garlandtools.org/db/#status/311"><strong>Earthen Ward</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> EarthenWard = 311, + /// <summary> /// <see href="https://garlandtools.org/db/#status/312"><strong>Razed Earth</strong></see> ↑ (All Classes) /// <para>Jagged shards protrude from the ground, dealing earth damage to any who tread upon them.</para> /// </summary> RazedEarth = 312, + /// <summary> /// <see href="https://garlandtools.org/db/#status/313"><strong>Radiant Shield</strong></see> ↑ (All Classes) /// <para>Increasing physical damage taken by attackers.</para> /// </summary> RadiantShield = 313, + /// <summary> /// <see href="https://garlandtools.org/db/#status/314"><strong>Inferno</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Inferno = 314, + /// <summary> /// <see href="https://garlandtools.org/db/#status/315"><strong>Whispering Dawn</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> WhisperingDawn = 315, + /// <summary> /// <see href="https://garlandtools.org/db/#status/316"><strong>Fey Covenant</strong></see> ↑ (All Classes) /// <para>Magic defense is increased.</para> /// </summary> FeyCovenant = 316, + /// <summary> /// <see href="https://garlandtools.org/db/#status/317"><strong>Fey Illumination</strong></see> ↑ (All Classes) /// <para>Magic defense and healing magic potency are increased.</para> /// </summary> FeyIllumination = 317, + /// <summary> /// <see href="https://garlandtools.org/db/#status/318"><strong>Fey Glow</strong></see> ↑ (All Classes) /// <para>Spell speed is increased.</para> /// </summary> FeyGlow = 318, + /// <summary> /// <see href="https://garlandtools.org/db/#status/319"><strong>Fey Light</strong></see> ↑ (All Classes) /// <para>Skill speed is increased.</para> /// </summary> FeyLight = 319, + /// <summary> /// <see href="https://garlandtools.org/db/#status/320"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_320 = 320, + /// <summary> /// <see href="https://garlandtools.org/db/#status/321"><strong>Gungnir</strong></see> ↑ (All Classes) /// <para>The power slumbering within the legendary lance has awoken.</para> /// </summary> Gungnir = 321, + /// <summary> /// <see href="https://garlandtools.org/db/#status/322"><strong>Crystal Veil</strong></see> ↑ (All Classes) /// <para>Damage taken is significantly reduced.</para> /// </summary> CrystalVeil = 322, + /// <summary> /// <see href="https://garlandtools.org/db/#status/323"><strong>Reduced Immunity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced. Can be cured with Esuna.</para> /// </summary> ReducedImmunity = 323, + /// <summary> /// <see href="https://garlandtools.org/db/#status/324"><strong>Greenwrath</strong></see> ↓ (All Classes) /// <para>The anger of the elementals tears at your very sanity, causing damage over time.</para> /// </summary> Greenwrath = 324, + /// <summary> /// <see href="https://garlandtools.org/db/#status/325"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility = 325, + /// <summary> /// <see href="https://garlandtools.org/db/#status/326"><strong>Lightning Charge</strong></see> ↑ (All Classes) /// <para>Lightning-aspected actions are enhanced.</para> /// </summary> LightningCharge = 326, + /// <summary> /// <see href="https://garlandtools.org/db/#status/327"><strong>Ice Charge</strong></see> ↑ (All Classes) /// <para>Ice-aspected actions are enhanced.</para> /// </summary> IceCharge = 327, + /// <summary> /// <see href="https://garlandtools.org/db/#status/328"><strong>Heart of the Mountain</strong></see> ↑ (All Classes) /// <para>Armored by impenetrable stone. Invulnerable to all damage.</para> /// </summary> HeartOfTheMountain = 328, + /// <summary> /// <see href="https://garlandtools.org/db/#status/329"><strong>Modification</strong></see> ↑ (All Classes) /// <para>Applying parts from another bot to enhance and repair systems.</para> /// </summary> Modification = 329, + /// <summary> /// <see href="https://garlandtools.org/db/#status/330"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_330 = 330, + /// <summary> /// <see href="https://garlandtools.org/db/#status/331"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown_331 = 331, + /// <summary> /// <see href="https://garlandtools.org/db/#status/332"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_332 = 332, + /// <summary> /// <see href="https://garlandtools.org/db/#status/333"><strong>Allagan Rot</strong></see> ↓ (All Classes) /// <para>An ancient pestilence corrupts your humours. Mortal pathogen is released when effect ends.</para> /// </summary> AllaganRot = 333, + /// <summary> /// <see href="https://garlandtools.org/db/#status/334"><strong>Allagan Immunity</strong></see> ↓ (All Classes) /// <para>Your body is showing resistance to the Allagan Rot.</para> /// </summary> AllaganImmunity = 334, + /// <summary> /// <see href="https://garlandtools.org/db/#status/335"><strong>Firestream</strong></see> ↓ (All Classes) /// <para>The flesh melts from your bones, causing damage over time.</para> /// </summary> Firestream = 335, + /// <summary> /// <see href="https://garlandtools.org/db/#status/336"><strong>Sequence AB1</strong></see> ↑ (All Classes) /// <para>Blunt resistance is increased.</para> /// </summary> SequenceAb1 = 336, + /// <summary> /// <see href="https://garlandtools.org/db/#status/337"><strong>Sequence AP1</strong></see> ↑ (All Classes) /// <para>Piercing resistance is increased.</para> /// </summary> SequenceAp1 = 337, + /// <summary> /// <see href="https://garlandtools.org/db/#status/338"><strong>Sequence AS1</strong></see> ↑ (All Classes) /// <para>Slashing resistance is increased.</para> /// </summary> SequenceAs1 = 338, + /// <summary> /// <see href="https://garlandtools.org/db/#status/339"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_339 = 339, + /// <summary> /// <see href="https://garlandtools.org/db/#status/340"><strong>Physical Field</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalField = 340, + /// <summary> /// <see href="https://garlandtools.org/db/#status/341"><strong>Aetherial Field</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> AetherialField = 341, + /// <summary> /// <see href="https://garlandtools.org/db/#status/342"><strong>Repelling Spray</strong></see> ↑ (All Classes) /// <para>Countering any magic attacks.</para> /// </summary> RepellingSpray = 342, + /// <summary> /// <see href="https://garlandtools.org/db/#status/343"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_343 = 343, + /// <summary> /// <see href="https://garlandtools.org/db/#status/344"><strong>Neurolink</strong></see> ↓ (All Classes) /// <para>Movement is slowed, damage dealt and HP recovery via actions is reduced.</para> /// </summary> Neurolink = 344, + /// <summary> /// <see href="https://garlandtools.org/db/#status/345"><strong>Recharge</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Recharge = 345, + /// <summary> /// <see href="https://garlandtools.org/db/#status/346"><strong>Waxen Flesh</strong></see> ↑ (All Classes) /// <para>The rate at which Firestorm burns your flesh is increased.</para> /// </summary> WaxenFlesh = 346, + /// <summary> /// <see href="https://garlandtools.org/db/#status/347"><strong>Pox</strong></see> ↓ (All Classes) /// <para>An ancient pestilence corrupts your humours, reducing maximum HP.</para> /// </summary> Pox = 347, + /// <summary> /// <see href="https://garlandtools.org/db/#status/348"><strong>Disseminate</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> Disseminate = 348, + /// <summary> /// <see href="https://garlandtools.org/db/#status/349"><strong>Steel Scales</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> SteelScales = 349, + /// <summary> /// <see href="https://garlandtools.org/db/#status/350"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_350 = 350, + /// <summary> /// <see href="https://garlandtools.org/db/#status/351"><strong>Rancor</strong></see> ↑ (All Classes) /// <para>The rage of fallen brethren is enhancing the potency of certain attacks.</para> /// </summary> Rancor = 351, + /// <summary> /// <see href="https://garlandtools.org/db/#status/352"><strong>Spjot</strong></see> ↓ (All Classes) /// <para>Magicks of eld permeate your body, causing damage over time.</para> /// </summary> Spjot = 352, + /// <summary> /// <see href="https://garlandtools.org/db/#status/353"><strong>Brave New World</strong></see> ↑ (All Classes) /// <para>Attributes are increased when a low-level Disciple of War or Magic.</para> /// </summary> BraveNewWorld = 353, + /// <summary> /// <see href="https://garlandtools.org/db/#status/354"><strong>Live off the Land</strong></see> ↑ (All Classes) /// <para>Gathering is increased when a Disciple of the Land.</para> /// </summary> LiveOffTheLand = 354, + /// <summary> /// <see href="https://garlandtools.org/db/#status/355"><strong>What You See</strong></see> ↑ (All Classes) /// <para>Perception is increased when a Disciple of the Land.</para> /// </summary> WhatYouSee = 355, + /// <summary> /// <see href="https://garlandtools.org/db/#status/356"><strong>Eat from the Hand</strong></see> ↑ (All Classes) /// <para>Craftsmanship is increased when a Disciple of the Hand.</para> /// </summary> EatFromTheHand = 356, + /// <summary> /// <see href="https://garlandtools.org/db/#status/357"><strong>In Control</strong></see> ↑ (All Classes) /// <para>Control is increased when a Disciple of the Hand.</para> /// </summary> InControl = 357, + /// <summary> /// <see href="https://garlandtools.org/db/#status/358"><strong>Snowman</strong></see> ↑ (All Classes) /// <para>Covered in snow and able to deal damage to targets under the Fey Fire effect.</para> /// </summary> Snowman = 358, + /// <summary> /// <see href="https://garlandtools.org/db/#status/359"><strong>Fey Fire</strong></see> ↑ (All Classes) /// <para>A fey fire envelops you, nullifying all damage received.</para> /// </summary> FeyFire = 359, + /// <summary> /// <see href="https://garlandtools.org/db/#status/360"><strong>Meat and Mead</strong></see> ↑ (All Classes) /// <para>Food effect duration is increased.</para> /// </summary> MeatAndMead = 360, + /// <summary> /// <see href="https://garlandtools.org/db/#status/361"><strong>That Which Binds Us</strong></see> ↑ (All Classes) /// <para>Spiritbonding speed is increased.</para> /// </summary> ThatWhichBindsUs = 361, + /// <summary> /// <see href="https://garlandtools.org/db/#status/362"><strong>Proper Care</strong></see> ↑ (All Classes) /// <para>Gear wear is reduced.</para> /// </summary> ProperCare = 362, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_363 = 363, + /// <summary> /// <see href="https://garlandtools.org/db/#status/364"><strong>Reduced Rates</strong></see> ↑ (All Classes) /// <para>Teleportation fees are reduced.</para> /// </summary> ReducedRates = 364, + /// <summary> /// <see href="https://garlandtools.org/db/#status/365"><strong>The Heat of Battle</strong></see> ↑ (All Classes) /// <para>EXP earned through battle is increased.</para> /// </summary> TheHeatOfBattle = 365, + /// <summary> /// <see href="https://garlandtools.org/db/#status/366"><strong>A Man's Best Friend</strong></see> ↑ (All Classes) /// <para>EXP earned by companions is increased.</para> /// </summary> AMansBestFriend = 366, + /// <summary> /// <see href="https://garlandtools.org/db/#status/367"><strong>Earth and Water</strong></see> ↑ (All Classes) /// <para>EXP earned through gathering is increased.</para> /// </summary> EarthAndWater = 367, + /// <summary> /// <see href="https://garlandtools.org/db/#status/368"><strong>Helping Hand</strong></see> ↑ (All Classes) /// <para>EXP earned through crafting is increased.</para> /// </summary> HelpingHand = 368, + /// <summary> /// <see href="https://garlandtools.org/db/#status/369"><strong>Viscous Aetheroplasm</strong></see> ↓ (All Classes) /// <para>Aetheroplasm is attached to your body. A stack of 5 will result in severe damage.</para> /// </summary> ViscousAetheroplasm = 369, + /// <summary> /// <see href="https://garlandtools.org/db/#status/370"><strong>Siren Song</strong></see> ↓ (All Classes) /// <para>The siren's song is gradually invading your mind. Must be at maximum HP when effect ends to avoid becoming charmed.</para> /// </summary> SirenSong = 370, + /// <summary> /// <see href="https://garlandtools.org/db/#status/371"><strong>Zombification</strong></see> ↓ (All Classes) /// <para>Turned into a mindless zombie under enemy control.</para> /// </summary> Zombification = 371, + /// <summary> /// <see href="https://garlandtools.org/db/#status/372"><strong>Brood Rage</strong></see> ↑ (All Classes) /// <para>The mother zu is maddened by the death of her brood. Damage dealt is increased.</para> /// </summary> BroodRage = 372, + /// <summary> /// <see href="https://garlandtools.org/db/#status/373"><strong>Blight</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Blight = 373, + /// <summary> /// <see href="https://garlandtools.org/db/#status/374"><strong>Corrupted Crystal</strong></see> ↓ (All Classes) /// <para>Shards of corrupted crystals are attached to your body. A stack of three will trigger an explosion.</para> /// </summary> CorruptedCrystal = 374, + /// <summary> /// <see href="https://garlandtools.org/db/#status/375"><strong>Suppuration</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced and damage taken is increased.</para> /// </summary> Suppuration = 375, + /// <summary> /// <see href="https://garlandtools.org/db/#status/376"><strong>Searing Wind</strong></see> ↓ (All Classes) /// <para>Ignited by white-hot embers and scorching those nearby. Sustaining fire damage over time.</para> /// </summary> SearingWind = 376, + /// <summary> /// <see href="https://garlandtools.org/db/#status/377"><strong>Infernal Fetters</strong></see> ↓ (All Classes) /// <para>A prison of fire is reducing damage dealt and inflicting fire damage over time.</para> /// </summary> InfernalFetters = 377, + /// <summary> /// <see href="https://garlandtools.org/db/#status/378"><strong>Death Throes</strong></see> ↓ (All Classes) /// <para>Held firmly by the leg and unable to move.</para> /// </summary> DeathThroes = 378, + /// <summary> /// <see href="https://garlandtools.org/db/#status/379"><strong>Thermal Low</strong></see> ↓ (All Classes) /// <para>The wind is high. Sustaining wind damage over time.</para> /// </summary> ThermalLow = 379, + /// <summary> /// <see href="https://garlandtools.org/db/#status/380"><strong>Thermal High</strong></see> ↑ (All Classes) /// <para>The wind has died. Resistance to wind damage is increased.</para> /// </summary> ThermalHigh = 380, + /// <summary> /// <see href="https://garlandtools.org/db/#status/381"><strong>Sword Oath</strong></see> ↑ (All Classes) /// <para>Auto-attacks are enhanced.</para> /// </summary> SwordOath_381 = 381, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_382 = 382, + /// <summary> /// <see href="https://garlandtools.org/db/#status/383"><strong>Growing</strong></see> ↑ (All Classes) /// <para>Absorbed nutrients are spurring rapid development.</para> /// </summary> Growing = 383, + /// <summary> /// <see href="https://garlandtools.org/db/#status/384"><strong>Full-grown</strong></see> ↑ (All Classes) /// <para>Fully matured.</para> /// </summary> Fullgrown = 384, + /// <summary> /// <see href="https://garlandtools.org/db/#status/385"><strong>Fool's Tightrope</strong></see> ↑ (All Classes) /// <para>Weaving the illusion of a precarious path.</para> /// </summary> FoolsTightrope = 385, + /// <summary> /// <see href="https://garlandtools.org/db/#status/386"><strong>Unfooled</strong></see> ↑ (All Classes) /// <para>Aware that the fool's tightrope is a mere illusion.</para> /// </summary> Unfooled = 386, + /// <summary> /// <see href="https://garlandtools.org/db/#status/387"><strong>Fool's Tumble</strong></see> ↓ (All Classes) /// <para>Convinced that you have taken a fall and are unable to move.</para> /// </summary> FoolsTumble = 387, + /// <summary> /// <see href="https://garlandtools.org/db/#status/388"><strong>Fool's Figure</strong></see> ↑ (All Classes) /// <para>Weaving the illusion of an altered self.</para> /// </summary> FoolsFigure = 388, + /// <summary> /// <see href="https://garlandtools.org/db/#status/389"><strong>Skewer</strong></see> ↓ (All Classes) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> Skewer = 389, + /// <summary> /// <see href="https://garlandtools.org/db/#status/390"><strong>Growing</strong></see> ↑ (All Classes) /// <para>Absorbed nutrients are spurring rapid development.</para> /// </summary> Growing_390 = 390, + /// <summary> /// <see href="https://garlandtools.org/db/#status/391"><strong>Full-grown</strong></see> ↑ (All Classes) /// <para>Fully matured.</para> /// </summary> Fullgrown_391 = 391, + /// <summary> /// <see href="https://garlandtools.org/db/#status/392"><strong>Royal Guard</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> RoyalGuard = 392, + /// <summary> /// <see href="https://garlandtools.org/db/#status/393"><strong>Iron Will</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> IronWill_393 = 393, + /// <summary> /// <see href="https://garlandtools.org/db/#status/394"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Impervious to all attacks.</para> /// </summary> Invincibility_394 = 394, + /// <summary> /// <see href="https://garlandtools.org/db/#status/395"><strong>Physical Damage Down</strong></see> ↓ (All Classes) /// <para>Physical damage dealt is reduced.</para> /// </summary> PhysicalDamageDown_395 = 395, + /// <summary> /// <see href="https://garlandtools.org/db/#status/396"><strong>Concentration</strong></see> ↑ (All Classes) /// <para>Next enfeeblement received is nullified.</para> /// </summary> Concentration = 396, + /// <summary> /// <see href="https://garlandtools.org/db/#status/397"><strong>Safeguard</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Safeguard = 397, + /// <summary> /// <see href="https://garlandtools.org/db/#status/398"><strong>Astral Realignment</strong></see> ↓ (All Classes) /// <para>Existentially aligned to the astral realm. Damage dealt is reduced, but can attack ghostly beings.</para> /// </summary> AstralRealignment = 398, + /// <summary> /// <see href="https://garlandtools.org/db/#status/399"><strong>Corporeal Return</strong></see> ↓ (All Classes) /// <para>Weakened by the time in astral realignment. Damage taken is doubled.</para> /// </summary> CorporealReturn = 399, + /// <summary> /// <see href="https://garlandtools.org/db/#status/400"><strong>Charge</strong></see> ↓ (All Classes) /// <para>Storing lightning energy. Resistance to lightning damage is reduced.</para> /// </summary> Charge = 400, + /// <summary> /// <see href="https://garlandtools.org/db/#status/401"><strong>Seized</strong></see> ↓ (All Classes) /// <para>Held in a vicelike grip and cannot act. Taking damage over time.</para> /// </summary> Seized = 401, + /// <summary> /// <see href="https://garlandtools.org/db/#status/402"><strong>Thrown for a Loop</strong></see> ↓ (All Classes) /// <para>Provoked beyond all mortal limits and heedless of danger. Can only pursue the target.</para> /// </summary> ThrownForALoop = 402, + /// <summary> /// <see href="https://garlandtools.org/db/#status/403"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_403 = 403, + /// <summary> /// <see href="https://garlandtools.org/db/#status/404"><strong>Transporting</strong></see> ↑ (All Classes) /// <para>Carrying an object in your arms, growing wearier with each passing second.</para> /// </summary> Transporting = 404, + /// <summary> /// <see href="https://garlandtools.org/db/#status/405"><strong>Bewildered</strong></see> ↓ (All Classes) /// <para>Confused and unable to control your actions.</para> /// </summary> Bewildered = 405, + /// <summary> /// <see href="https://garlandtools.org/db/#status/406"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_406 = 406, + /// <summary> /// <see href="https://garlandtools.org/db/#status/407"><strong>Dust Poisoning</strong></see> ↓ (All Classes) /// <para>Poisoned by the crystal dust you inhaled. A stack of 4 will render you unable to act.</para> /// </summary> DustPoisoning = 407, + /// <summary> /// <see href="https://garlandtools.org/db/#status/408"><strong>Storm's Path</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> StormsPath = 408, + /// <summary> /// <see href="https://garlandtools.org/db/#status/409"><strong>Holmgang</strong></see> ↑ (All Classes) /// <para>Most attacks cannot reduce your HP to less than 1.</para> /// </summary> Holmgang_409 = 409, + /// <summary> /// <see href="https://garlandtools.org/db/#status/410"><strong>Antibody</strong></see> ↑ (All Classes) /// <para>Immune to the effects of virus and fever.</para> /// </summary> Antibody = 410, + /// <summary> /// <see href="https://garlandtools.org/db/#status/411"><strong>Inner Beast</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> InnerBeast = 411, + /// <summary> /// <see href="https://garlandtools.org/db/#status/412"><strong>Hover</strong></see> ↑ (All Classes) /// <para>Floating above ground.</para> /// </summary> Hover = 412, + /// <summary> /// <see href="https://garlandtools.org/db/#status/413"><strong>Mark Up</strong></see> ↑ (All Classes) /// <para>Wolf Marks earned are increased.</para> /// </summary> MarkUp = 413, + /// <summary> /// <see href="https://garlandtools.org/db/#status/414"><strong>Seal Sweetener</strong></see> ↑ (All Classes) /// <para>Company seals earned are increased.</para> /// </summary> SealSweetener = 414, + /// <summary> /// <see href="https://garlandtools.org/db/#status/415"><strong>Regain</strong></see> ↑ (All Classes) /// <para>Gradually regenerating TP.</para> /// </summary> Regain = 415, + /// <summary> /// <see href="https://garlandtools.org/db/#status/416"><strong>Transparent</strong></see> ↑ (All Classes) /// <para>Body is allowing light to pass, rendering you invisible to the enemy.</para> /// </summary> Transparent = 416, + /// <summary> /// <see href="https://garlandtools.org/db/#status/417"><strong>Protect</strong></see> ↑ (All Classes) /// <para>Defense and magic defense are enhanced.</para> /// </summary> Protect_417 = 417, + /// <summary> /// <see href="https://garlandtools.org/db/#status/418"><strong>Transcendent</strong></see> ↑ (All Classes) /// <para>Recently resurrected and temporarily invulnerable to most damage. Status ends upon execution of an action.</para> /// </summary> Transcendent = 418, + /// <summary> /// <see href="https://garlandtools.org/db/#status/419"><strong>Misty Veil</strong></see> ↓ (All Classes) /// <para>Attack range is reduced.</para> /// </summary> MistyVeil = 419, + /// <summary> /// <see href="https://garlandtools.org/db/#status/420"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any party members you wander near will become marked in your stead.</para> /// </summary> Prey = 420, + /// <summary> /// <see href="https://garlandtools.org/db/#status/421"><strong>Devoured</strong></see> ↓ (All Classes) /// <para>Being devoured is preventing the execution of actions and causing damage over time. </para> /// </summary> Devoured = 421, + /// <summary> /// <see href="https://garlandtools.org/db/#status/422"><strong>Healing Magic Down</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> HealingMagicDown = 422, + /// <summary> /// <see href="https://garlandtools.org/db/#status/423"><strong>Nightmare</strong></see> ↓ (All Classes) /// <para>Troubled sleep is preventing the execution of actions.</para> /// </summary> Nightmare = 423, + /// <summary> /// <see href="https://garlandtools.org/db/#status/424"><strong>Diabolic Curse</strong></see> ↓ (All Classes) /// <para>Placed under a diabolic curse. Damage taken is increased. </para> /// </summary> DiabolicCurse = 424, + /// <summary> /// <see href="https://garlandtools.org/db/#status/425"><strong>Eerie Air</strong></see> ↓ (All Classes) /// <para>A sense of dread is heightening your alertness, granting resistance to sleep.</para> /// </summary> EerieAir = 425, + /// <summary> /// <see href="https://garlandtools.org/db/#status/426"><strong>Noctoshield</strong></see> ↑ (All Classes) /// <para>A magicked barrier is granting resistance to stun.</para> /// </summary> Noctoshield = 426, + /// <summary> /// <see href="https://garlandtools.org/db/#status/427"><strong>Slow+</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased. Effect cannot be nullified.</para> /// </summary> Slow_427 = 427, + /// <summary> /// <see href="https://garlandtools.org/db/#status/428"><strong>Haste+</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced. Effect cannot be nullified.</para> /// </summary> Haste_428 = 428, + /// <summary> /// <see href="https://garlandtools.org/db/#status/429"><strong>Scale Flakes</strong></see> ↓ (All Classes) /// <para>Dusted with wamoura scales and giving off a scent which attracts Arioch. Damage taken is increased.</para> /// </summary> ScaleFlakes = 429, + /// <summary> /// <see href="https://garlandtools.org/db/#status/430"><strong>Misery</strong></see> ↓ (All Classes) /// <para>Plunged into the depths of misery. Damage taken is increased.</para> /// </summary> Misery = 430, + /// <summary> /// <see href="https://garlandtools.org/db/#status/431"><strong>Water Resistance Down</strong></see> ↓ (All Classes) /// <para>Water resistance is reduced.</para> /// </summary> WaterResistanceDown = 431, + /// <summary> /// <see href="https://garlandtools.org/db/#status/432"><strong>Briny Mirror</strong></see> ↓ (All Classes) /// <para>Covered in a watery membrane. Any party member who uses a healing spell or action on you receives the Briny Veil status.</para> /// </summary> BrinyMirror = 432, + /// <summary> /// <see href="https://garlandtools.org/db/#status/433"><strong>Briny Veil</strong></see> ↓ (All Classes) /// <para>Covered in a watery membrane which impairs vision, reducing your attack range. A stack of 16 will render you unable to act. </para> /// </summary> BrinyVeil = 433, + /// <summary> /// <see href="https://garlandtools.org/db/#status/434"><strong>Absolute Bind</strong></see> ↓ (All Classes) /// <para>Bound by advanced thaumaturgy and rendered unable to act.</para> /// </summary> AbsoluteBind = 434, + /// <summary> /// <see href="https://garlandtools.org/db/#status/435"><strong>Demon Eye</strong></see> ↓ (All Classes) /// <para>Petrified by a demonic gaze. Unable to act and taking increased damage.</para> /// </summary> DemonEye = 435, + /// <summary> /// <see href="https://garlandtools.org/db/#status/436"><strong>Briar</strong></see> ↓ (All Classes) /// <para>Thick briar is reducing movement speed and causing damage over time. Prevents draw-in and knockback effects.</para> /// </summary> Briar = 436, + /// <summary> /// <see href="https://garlandtools.org/db/#status/437"><strong>Stone Curse</strong></see> ↓ (All Classes) /// <para>Turned into stone. Taking damage results in instant death.</para> /// </summary> StoneCurse = 437, + /// <summary> /// <see href="https://garlandtools.org/db/#status/438"><strong>Minimum</strong></see> ↓ (All Classes) /// <para>Shrunk to a fraction of your normal size. Movement speed and damage dealt is reduced while damage taken is increased.</para> /// </summary> Minimum = 438, + /// <summary> /// <see href="https://garlandtools.org/db/#status/439"><strong>Toad</strong></see> ↓ (All Classes) /// <para>Transformed into a toad and unable to execute actions.</para> /// </summary> Toad = 439, + /// <summary> /// <see href="https://garlandtools.org/db/#status/440"><strong>Minimum</strong></see> ↑ (All Classes) /// <para>Shrunk to a fraction of your normal size. Movement speed and damage dealt is reduced while damage taken is increased.</para> /// </summary> Minimum_440 = 440, + /// <summary> /// <see href="https://garlandtools.org/db/#status/441"><strong>Toad</strong></see> ↑ (All Classes) /// <para>Transformed into a toad and unable to execute actions.</para> /// </summary> Toad_441 = 441, + /// <summary> /// <see href="https://garlandtools.org/db/#status/442"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_442 = 442, + /// <summary> /// <see href="https://garlandtools.org/db/#status/443"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_443 = 443, + /// <summary> /// <see href="https://garlandtools.org/db/#status/444"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_444 = 444, + /// <summary> /// <see href="https://garlandtools.org/db/#status/445"><strong>Thorny Vine</strong></see> ↓ (All Classes) /// <para>Thorny vines are causing damage over time.</para> /// </summary> ThornyVine = 445, + /// <summary> /// <see href="https://garlandtools.org/db/#status/446"><strong>Honey-glazed</strong></see> ↓ (All Classes) /// <para>Covered in honey and attracting hornets.</para> /// </summary> Honeyglazed = 446, + /// <summary> /// <see href="https://garlandtools.org/db/#status/447"><strong>Potent Acid</strong></see> ↓ (All Classes) /// <para>Doused in potent acid, resulting in increased damage taken from Acid Cloud. Strength of effect is determined by stack number.</para> /// </summary> PotentAcid = 447, + /// <summary> /// <see href="https://garlandtools.org/db/#status/448"><strong>Swarmed</strong></see> ↓ (All Classes) /// <para>A swarm of bees will soon sting you.</para> /// </summary> Swarmed = 448, + /// <summary> /// <see href="https://garlandtools.org/db/#status/449"><strong>Stung</strong></see> ↓ (All Classes) /// <para>Bee venom is coursing through your body. Damage received from bee swarms is increased.</para> /// </summary> Stung = 449, + /// <summary> /// <see href="https://garlandtools.org/db/#status/450"><strong>Petrification Resistance</strong></see> ↑ (All Classes) /// <para>Immune to petrification effects.</para> /// </summary> PetrificationResistance = 450, + /// <summary> /// <see href="https://garlandtools.org/db/#status/451"><strong>Cursed Voice</strong></see> ↓ (All Classes) /// <para>Your body is being taken over, and will soon be used to unleash a petrifying curse.</para> /// </summary> CursedVoice = 451, + /// <summary> /// <see href="https://garlandtools.org/db/#status/452"><strong>Cursed Shriek</strong></see> ↓ (All Classes) /// <para>Your body is being taken over, and will soon be used to unleash a petrifying curse.</para> /// </summary> CursedShriek = 452, + /// <summary> /// <see href="https://garlandtools.org/db/#status/453"><strong>Allagan Venom</strong></see> ↓ (All Classes) /// <para>Involuntarily spreading Allagan snake venom and causing damage over time to all party members.</para> /// </summary> AllaganVenom = 453, + /// <summary> /// <see href="https://garlandtools.org/db/#status/454"><strong>Allagan Field</strong></see> ↓ (All Classes) /// <para>A magicked field is converting damage taken into an explosion which will trigger when the effect ends or you are KO'd.</para> /// </summary> AllaganField = 454, + /// <summary> /// <see href="https://garlandtools.org/db/#status/455"><strong>Languishing</strong></see> ↓ (All Classes) /// <para>Life force is weakened, resulting in increased damage taken from Life Drain.</para> /// </summary> Languishing = 455, + /// <summary> /// <see href="https://garlandtools.org/db/#status/456"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is decreased.</para> /// </summary> HpPenalty_456 = 456, + /// <summary> /// <see href="https://garlandtools.org/db/#status/457"><strong>Bind+</strong></see> ↓ (All Classes) /// <para>Unable to move. Effect cannot be nullified.</para> /// </summary> Bind_457 = 457, + /// <summary> /// <see href="https://garlandtools.org/db/#status/458"><strong>Raven Blight</strong></see> ↓ (All Classes) /// <para>Afflicted by the White Raven's miasma, which will soon cause you to explode.</para> /// </summary> RavenBlight = 458, + /// <summary> /// <see href="https://garlandtools.org/db/#status/459"><strong>Normal Stance</strong></see> ↑ (All Classes) /// <para>Being commanded to execute standard battle maneuvers.</para> /// </summary> NormalStance = 459, + /// <summary> /// <see href="https://garlandtools.org/db/#status/460"><strong>Aggressive Stance</strong></see> ↑ (All Classes) /// <para>Being commanded to execute actions that deal area damage.</para> /// </summary> AggressiveStance = 460, + /// <summary> /// <see href="https://garlandtools.org/db/#status/461"><strong>Subversive Stance</strong></see> ↑ (All Classes) /// <para>Being commanded to execute actions that disrupt the enemy.</para> /// </summary> SubversiveStance = 461, + /// <summary> /// <see href="https://garlandtools.org/db/#status/462"><strong>Garrote Twist</strong></see> ↓ (All Classes) /// <para>Garrote is stacking at an increased rate.</para> /// </summary> GarroteTwist = 462, + /// <summary> /// <see href="https://garlandtools.org/db/#status/463"><strong>Garrote</strong></see> ↓ (All Classes) /// <para>A death grip is tightening around you. A stack of 9 will result in instant death.</para> /// </summary> Garrote = 463, + /// <summary> /// <see href="https://garlandtools.org/db/#status/464"><strong>Firescorched</strong></see> ↓ (All Classes) /// <para>Resistance to attacks by Firehorn is decreased.</para> /// </summary> Firescorched = 464, + /// <summary> /// <see href="https://garlandtools.org/db/#status/465"><strong>Icebitten</strong></see> ↓ (All Classes) /// <para>Resistance to attacks by Iceclaw is decreased.</para> /// </summary> Icebitten = 465, + /// <summary> /// <see href="https://garlandtools.org/db/#status/466"><strong>Thunderstruck</strong></see> ↓ (All Classes) /// <para>Your body is accumulating a lightning charge. Will inflict lightning damage to those nearby when the effect ends.</para> /// </summary> Thunderstruck = 466, + /// <summary> /// <see href="https://garlandtools.org/db/#status/467"><strong>Briny Veil</strong></see> ↓ (All Classes) /// <para>Covered in a watery membrane which impairs vision, reducing your attack range. A stack of 16 will render you unable to act. </para> /// </summary> BrinyVeil_467 = 467, + /// <summary> /// <see href="https://garlandtools.org/db/#status/468"><strong>Voidbound</strong></see> ↓ (All Classes) /// <para>Trapped in the void and unable to interact with the physical realm.</para> /// </summary> Voidbound = 468, + /// <summary> /// <see href="https://garlandtools.org/db/#status/469"><strong>High and Mighty</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage. Long live the king, kupo!</para> /// </summary> HighAndMighty = 469, + /// <summary> /// <see href="https://garlandtools.org/db/#status/470"><strong>Pombination</strong></see> ↑ (All Classes) /// <para>In the midst of a combination attack. Immune to stun and silence effects.</para> /// </summary> Pombination = 470, + /// <summary> /// <see href="https://garlandtools.org/db/#status/471"><strong>Moglight Resistance Down</strong></see> ↓ (All Classes) /// <para>Massive damage is taken from Stifling Mogdark.</para> /// </summary> MoglightResistanceDown = 471, + /// <summary> /// <see href="https://garlandtools.org/db/#status/472"><strong>Mogdark Resistance Down</strong></see> ↓ (All Classes) /// <para>Massive damage is taken from Searing Moglight.</para> /// </summary> MogdarkResistanceDown = 472, + /// <summary> /// <see href="https://garlandtools.org/db/#status/473"><strong>Bemoggled</strong></see> ↓ (All Classes) /// <para>Massive damage is taken from Moogle-Go-Round.</para> /// </summary> Bemoggled = 473, + /// <summary> /// <see href="https://garlandtools.org/db/#status/474"><strong>Royal Rouse</strong></see> ↑ (All Classes) /// <para>Damage dealt and HP recovery is increased. Long live the king, kupo!</para> /// </summary> RoyalRouse = 474, + /// <summary> /// <see href="https://garlandtools.org/db/#status/475"><strong>Slippery Prey</strong></see> ↓ (All Classes) /// <para>Unable to be marked as prey by would-be predators.</para> /// </summary> SlipperyPrey = 475, + /// <summary> /// <see href="https://garlandtools.org/db/#status/476"><strong>Gloam</strong></see> ↓ (All Classes) /// <para>A shroud of darkness is impairing your accuracy while rendering you immune to Demon Eye. Can be cured with Esuna.</para> /// </summary> Gloam = 476, + /// <summary> /// <see href="https://garlandtools.org/db/#status/477"><strong>Mantle of the Whorl</strong></see> ↑ (All Classes) /// <para>Reflecting damage dealt by magic attacks.</para> /// </summary> MantleOfTheWhorl = 477, + /// <summary> /// <see href="https://garlandtools.org/db/#status/478"><strong>Veil of the Whorl</strong></see> ↑ (All Classes) /// <para>Reflecting damage dealt by ranged attacks.</para> /// </summary> VeilOfTheWhorl = 478, + /// <summary> /// <see href="https://garlandtools.org/db/#status/479"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_479 = 479, + /// <summary> /// <see href="https://garlandtools.org/db/#status/480"><strong>Haste+</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced. Effect cannot be nullified.</para> /// </summary> Haste_480 = 480, + /// <summary> /// <see href="https://garlandtools.org/db/#status/481"><strong>Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Sprint_481 = 481, + /// <summary> /// <see href="https://garlandtools.org/db/#status/482"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis_482 = 482, + /// <summary> /// <see href="https://garlandtools.org/db/#status/483"><strong>HP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> HpBoost_483 = 483, + /// <summary> /// <see href="https://garlandtools.org/db/#status/484"><strong>Ink</strong></see> ↓ (All Classes) /// <para>Your body is dripping with thick toxic ink, slowing movement speed and dealing damage over time.</para> /// </summary> Ink = 484, + /// <summary> /// <see href="https://garlandtools.org/db/#status/485"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_485 = 485, + /// <summary> /// <see href="https://garlandtools.org/db/#status/486"><strong>Watery Grave</strong></see> ↓ (All Classes) /// <para>You are trapped in a magicked prison of water and are unable to execute actions.</para> /// </summary> WateryGrave = 486, + /// <summary> /// <see href="https://garlandtools.org/db/#status/487"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze = 487, + /// <summary> /// <see href="https://garlandtools.org/db/#status/488"><strong>Shade Shift</strong></see> ↑ (All Classes) /// <para>Shadows are nullifying damage.</para> /// </summary> ShadeShift = 488, + /// <summary> /// <see href="https://garlandtools.org/db/#status/489"><strong>Kiss of the Wasp</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> KissOfTheWasp = 489, + /// <summary> /// <see href="https://garlandtools.org/db/#status/490"><strong>Kiss of the Viper</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> KissOfTheViper = 490, + /// <summary> /// <see href="https://garlandtools.org/db/#status/491"><strong>Dancing Edge</strong></see> ↓ (All Classes) /// <para>Slashing resistance and HP recovery via healing magic and actions are reduced.</para> /// <para>※HP recovery unaffected in PvP.</para> /// </summary> DancingEdge = 491, + /// <summary> /// <see href="https://garlandtools.org/db/#status/492"><strong>Mutilation</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> Mutilation = 492, + /// <summary> /// <see href="https://garlandtools.org/db/#status/493"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_493 = 493, + /// <summary> /// <see href="https://garlandtools.org/db/#status/494"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_494 = 494, + /// <summary> /// <see href="https://garlandtools.org/db/#status/495"><strong>Goad</strong></see> ↑ (PGL LNC ROG MNK DRG NIN SAM RPR VPR) /// <para>Gradually regenerating TP.</para> /// </summary> Goad = 495, + /// <summary> /// <see href="https://garlandtools.org/db/#status/496"><strong>Mudra</strong></see> ↑ (All Classes) /// <para>Readying ninjutsu by combining ritual hand gestures.</para> /// </summary> Mudra = 496, + /// <summary> /// <see href="https://garlandtools.org/db/#status/497"><strong>Kassatsu</strong></see> ↑ (All Classes) /// <para>Able to execute a ninjutsu with increased potency.</para> /// </summary> Kassatsu = 497, + /// <summary> /// <see href="https://garlandtools.org/db/#status/498"><strong>Infirmity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Infirmity_498 = 498, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/500"><strong>Huton</strong></see> ↑ (All Classes) +/// <para></para> +/// </summary> +UnnamedStatus_499 = 499, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/500"><strong>Huton</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Huton = 500, + /// <summary> /// <see href="https://garlandtools.org/db/#status/501"><strong>Doton</strong></see> ↑ (All Classes) /// <para>Foul magicks corrupt the ground, dealing earth damage to any who tread upon it.</para> /// </summary> Doton = 501, + /// <summary> /// <see href="https://garlandtools.org/db/#status/502"><strong>Doton Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> DotonHeavy = 502, + /// <summary> /// <see href="https://garlandtools.org/db/#status/503"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_503 = 503, + /// <summary> /// <see href="https://garlandtools.org/db/#status/504"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_504 = 504, + /// <summary> /// <see href="https://garlandtools.org/db/#status/505"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_505 = 505, + /// <summary> /// <see href="https://garlandtools.org/db/#status/506"><strong>Vertigo</strong></see> ↓ (All Classes) /// <para>Balance is compromised, resulting in a loss of motor skills.</para> /// </summary> Vertigo = 506, + /// <summary> /// <see href="https://garlandtools.org/db/#status/507"><strong>Suiton</strong></see> ↑ (All Classes) /// <para>Body is enveloped in a light-bending veil of water, allowing use of actions normally requiring the Hidden status.</para> /// </summary> Suiton = 507, + /// <summary> /// <see href="https://garlandtools.org/db/#status/508"><strong>Shadow Fang</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> ShadowFang = 508, + /// <summary> /// <see href="https://garlandtools.org/db/#status/509"><strong>Aetherochemical Bomb</strong></see> ↓ (All Classes) /// <para>An aetherochemical bomb is attached to your body, dealing damage each time it explodes.</para> /// </summary> AetherochemicalBomb = 509, + /// <summary> /// <see href="https://garlandtools.org/db/#status/510"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_510 = 510, + /// <summary> /// <see href="https://garlandtools.org/db/#status/511"><strong>Fire Toad</strong></see> ↓ (All Classes) /// <para>Transformed into a fire toad and only able to execute the action Toad Breath.</para> /// </summary> FireToad = 511, + /// <summary> /// <see href="https://garlandtools.org/db/#status/512"><strong>Electroconductivity</strong></see> ↓ (All Classes) /// <para>Conductive matter clings to your person. A stack of 3 will grant you the effect of Surge Protection.</para> /// </summary> Electroconductivity = 512, + /// <summary> /// <see href="https://garlandtools.org/db/#status/513"><strong>Static Condensation</strong></see> ↓ (All Classes) /// <para>Excess electric charge is stored within your body. The greater the stack, the fewer the HP recovered via healing magic.</para> /// </summary> StaticCondensation = 513, + /// <summary> /// <see href="https://garlandtools.org/db/#status/514"><strong>Causality</strong></see> ↓ (All Classes) /// <para>Damage is taken each time an action is used.</para> /// </summary> Causality = 514, + /// <summary> /// <see href="https://garlandtools.org/db/#status/515"><strong>Thunderclap</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time. If the effect is not removed, it will continue to stack, increasing the amount of damage inflicted.</para> /// </summary> Thunderclap = 515, + /// <summary> /// <see href="https://garlandtools.org/db/#status/516"><strong>Chaos</strong></see> ↓ (All Classes) /// <para>Experiencing mental breakdown resulting in a stunned state, followed by the desire to draw near the Lord of Levin.</para> /// </summary> Chaos = 516, + /// <summary> /// <see href="https://garlandtools.org/db/#status/517"><strong>Surge Protection</strong></see> ↓ (All Classes) /// <para>Your body is covered in conductive matter, helping to redirect and nullify the electrical charge of lightning attacks.</para> /// </summary> SurgeProtection = 517, + /// <summary> /// <see href="https://garlandtools.org/db/#status/518"><strong>Reflect</strong></see> ↑ (All Classes) /// <para>All magic attacks are reflected back at the caster.</para> /// </summary> Reflect = 518, + /// <summary> /// <see href="https://garlandtools.org/db/#status/519"><strong>Counter</strong></see> ↑ (All Classes) /// <para>All physical attacks are reflected back at the dealer.</para> /// </summary> Counter = 519, + /// <summary> /// <see href="https://garlandtools.org/db/#status/520"><strong>Fire Resistance Up</strong></see> ↑ (All Classes) /// <para>Fire resistance is increased.</para> /// </summary> FireResistanceUp = 520, + /// <summary> /// <see href="https://garlandtools.org/db/#status/521"><strong>Water Resistance Up</strong></see> ↑ (All Classes) /// <para>Water resistance is increased.</para> /// </summary> WaterResistanceUp = 521, + /// <summary> /// <see href="https://garlandtools.org/db/#status/522"><strong>Wind Resistance Up</strong></see> ↑ (All Classes) /// <para>Wind resistance is increased.</para> /// </summary> WindResistanceUp = 522, + /// <summary> /// <see href="https://garlandtools.org/db/#status/523"><strong>Lightning Resistance Up</strong></see> ↑ (All Classes) /// <para>Lightning resistance is increased.</para> /// </summary> LightningResistanceUp = 523, + /// <summary> /// <see href="https://garlandtools.org/db/#status/524"><strong>Earth Resistance Up</strong></see> ↑ (All Classes) /// <para>Earth resistance is increased.</para> /// </summary> EarthResistanceUp = 524, + /// <summary> /// <see href="https://garlandtools.org/db/#status/525"><strong>Ice Resistance Up</strong></see> ↑ (All Classes) /// <para>Ice resistance is increased.</para> /// </summary> IceResistanceUp = 525, + /// <summary> /// <see href="https://garlandtools.org/db/#status/526"><strong>Frost Blade</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time. Damage taken is reduced.</para> /// </summary> FrostBlade = 526, + /// <summary> /// <see href="https://garlandtools.org/db/#status/527"><strong>Frost Brand</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> FrostBrand = 527, + /// <summary> /// <see href="https://garlandtools.org/db/#status/528"><strong>Frost Bow</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> FrostBow = 528, + /// <summary> /// <see href="https://garlandtools.org/db/#status/529"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_529 = 529, + /// <summary> /// <see href="https://garlandtools.org/db/#status/530"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_530 = 530, + /// <summary> /// <see href="https://garlandtools.org/db/#status/531"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_531 = 531, + /// <summary> /// <see href="https://garlandtools.org/db/#status/532"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_532 = 532, + /// <summary> /// <see href="https://garlandtools.org/db/#status/533"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_533 = 533, + /// <summary> /// <see href="https://garlandtools.org/db/#status/534"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_534 = 534, + /// <summary> /// <see href="https://garlandtools.org/db/#status/535"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_535 = 535, + /// <summary> /// <see href="https://garlandtools.org/db/#status/536"><strong>Companion EXP Up</strong></see> ↑ (All Classes) /// <para>EXP earned by companions is increased.</para> /// </summary> CompanionExpUp = 536, + /// <summary> /// <see href="https://garlandtools.org/db/#status/537"><strong>Companion EXP Up II</strong></see> ↑ (All Classes) /// <para>EXP earned by companions is increased.</para> /// </summary> CompanionExpUpIi = 537, + /// <summary> /// <see href="https://garlandtools.org/db/#status/538"><strong>Companion Attack Up</strong></see> ↑ (All Classes) /// <para>Companion attack power is enhanced.</para> /// </summary> CompanionAttackUp = 538, + /// <summary> /// <see href="https://garlandtools.org/db/#status/539"><strong>Companion Attack Up II</strong></see> ↑ (All Classes) /// <para>Companion attack power is enhanced.</para> /// </summary> CompanionAttackUpIi = 539, + /// <summary> /// <see href="https://garlandtools.org/db/#status/540"><strong>Companion Healing Potency Up</strong></see> ↑ (All Classes) /// <para>Companion healing magic potency is increased.</para> /// </summary> CompanionHealingPotencyUp = 540, + /// <summary> /// <see href="https://garlandtools.org/db/#status/541"><strong>Companion Healing Potency Up II</strong></see> ↑ (All Classes) /// <para>Companion healing magic potency is increased.</para> /// </summary> CompanionHealingPotencyUpIi = 541, + /// <summary> /// <see href="https://garlandtools.org/db/#status/542"><strong>Companion Maximum HP Up</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> CompanionMaximumHpUp = 542, + /// <summary> /// <see href="https://garlandtools.org/db/#status/543"><strong>Companion Maximum HP Up II</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> CompanionMaximumHpUpIi = 543, + /// <summary> /// <see href="https://garlandtools.org/db/#status/544"><strong>Companion Enmity Up</strong></see> ↑ (All Classes) /// <para>Companion enmity is increased.</para> /// </summary> CompanionEnmityUp = 544, + /// <summary> /// <see href="https://garlandtools.org/db/#status/545"><strong>Companion Enmity Up II</strong></see> ↑ (All Classes) /// <para>Companion enmity is increased.</para> /// </summary> CompanionEnmityUpIi = 545, + /// <summary> /// <see href="https://garlandtools.org/db/#status/546"><strong>Enervation</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced and damage taken is increased.</para> /// </summary> Enervation = 546, + /// <summary> /// <see href="https://garlandtools.org/db/#status/547"><strong>Facility Access: Production</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessProduction = 547, + /// <summary> /// <see href="https://garlandtools.org/db/#status/548"><strong>Facility Access: Finishing</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessFinishing = 548, + /// <summary> /// <see href="https://garlandtools.org/db/#status/549"><strong>Facility Access: Detailing</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessDetailing = 549, + /// <summary> /// <see href="https://garlandtools.org/db/#status/550"><strong>Facility Access: Production II</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessProductionIi = 550, + /// <summary> /// <see href="https://garlandtools.org/db/#status/551"><strong>Facility Access: Specialization</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessSpecialization = 551, + /// <summary> /// <see href="https://garlandtools.org/db/#status/552"><strong>Facility Access: Specialization II</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessSpecializationIi = 552, + /// <summary> /// <see href="https://garlandtools.org/db/#status/553"><strong>Facility Access: Detailing II</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessDetailingIi = 553, + /// <summary> /// <see href="https://garlandtools.org/db/#status/554"><strong>Facility Access: Finishing II</strong></see> ↑ (All Classes) /// <para>Making use of local crafting facilities to synthesize special items. Recipe level is lowered to current level.</para> /// </summary> FacilityAccessFinishingIi = 554, + /// <summary> /// <see href="https://garlandtools.org/db/#status/555"><strong>Repelling Spray</strong></see> ↑ (All Classes) /// <para>Countering any physical attacks.</para> /// </summary> RepellingSpray_555 = 555, + /// <summary> /// <see href="https://garlandtools.org/db/#status/556"><strong>Repelling Spray</strong></see> ↑ (All Classes) /// <para>Countering any magic attacks.</para> /// </summary> RepellingSpray_556 = 556, + /// <summary> /// <see href="https://garlandtools.org/db/#status/557"><strong>Repelling Spray</strong></see> ↑ (All Classes) /// <para>Countering any physical attacks.</para> /// </summary> RepellingSpray_557 = 557, + /// <summary> /// <see href="https://garlandtools.org/db/#status/558"><strong>Repelling Spray</strong></see> ↑ (All Classes) /// <para>Countering any magic attacks.</para> /// </summary> RepellingSpray_558 = 558, + /// <summary> /// <see href="https://garlandtools.org/db/#status/559"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_559 = 559, + /// <summary> /// <see href="https://garlandtools.org/db/#status/560"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_560 = 560, + /// <summary> /// <see href="https://garlandtools.org/db/#status/561"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_561 = 561, + /// <summary> /// <see href="https://garlandtools.org/db/#status/562"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_562 = 562, + /// <summary> /// <see href="https://garlandtools.org/db/#status/563"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_563 = 563, + /// <summary> /// <see href="https://garlandtools.org/db/#status/564"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_564 = 564, + /// <summary> /// <see href="https://garlandtools.org/db/#status/565"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form has been altered, inhibiting use of actions.</para> /// </summary> Transfiguration = 565, + /// <summary> /// <see href="https://garlandtools.org/db/#status/566"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_566 = 566, + /// <summary> /// <see href="https://garlandtools.org/db/#status/567"><strong>Six Fulms Under</strong></see> ↓ (All Classes) /// <para>You are slowly slipping down, your movement speed dropping as you descend deeper. Burial will result in KO.</para> /// </summary> SixFulmsUnder = 567, + /// <summary> /// <see href="https://garlandtools.org/db/#status/568"><strong>Fisher's Intuition</strong></see> ↑ (All Classes) /// <para>Heightened senses are improving chances of discovering rare fish only obtainable under special conditions.</para> /// </summary> FishersIntuition = 568, + /// <summary> /// <see href="https://garlandtools.org/db/#status/569"><strong>Slime</strong></see> ↓ (All Classes) /// <para>Viscous discharge is hampering movement and inflicting damage over time.</para> /// </summary> Slime = 569, + /// <summary> /// <see href="https://garlandtools.org/db/#status/570"><strong>In the Line of Fire</strong></see> ↑ (All Classes) /// <para>Damage dealt by firearms is increased.</para> /// </summary> InTheLineOfFire = 570, + /// <summary> /// <see href="https://garlandtools.org/db/#status/571"><strong>Blind</strong></see> ↓ (All Classes) /// <para>Encroaching darkness is lowering accuracy.</para> /// </summary> Blind_571 = 571, + /// <summary> /// <see href="https://garlandtools.org/db/#status/572"><strong>Slashing Resistance Down</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> SlashingResistanceDown = 572, + /// <summary> /// <see href="https://garlandtools.org/db/#status/573"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown = 573, + /// <summary> /// <see href="https://garlandtools.org/db/#status/574"><strong>Erratic Blaster</strong></see> ↓ (All Classes) /// <para>Taking damage over time.</para> /// </summary> ErraticBlaster = 574, + /// <summary> /// <see href="https://garlandtools.org/db/#status/575"><strong>Static Charge</strong></see> ↓ (All Classes) /// <para>Damage dealt by Electric Burst is increased.</para> /// </summary> StaticCharge = 575, + /// <summary> /// <see href="https://garlandtools.org/db/#status/576"><strong>Lightning Resistance Down</strong></see> ↓ (All Classes) /// <para>Lightning resistance is reduced.</para> /// </summary> LightningResistanceDown = 576, + /// <summary> /// <see href="https://garlandtools.org/db/#status/577"><strong>Barofield</strong></see> ↑ (All Classes) /// <para>Damage taken when Kaliya is nearby.</para> /// </summary> Barofield = 577, + /// <summary> /// <see href="https://garlandtools.org/db/#status/578"><strong>In the Headlights</strong></see> ↓ (All Classes) /// <para>Damage taken by main head increased.</para> /// </summary> InTheHeadlights = 578, + /// <summary> /// <see href="https://garlandtools.org/db/#status/579"><strong>Critical Strikes</strong></see> ↑ (All Classes) /// <para>All attacks are dealing critical damage.</para> /// </summary> CriticalStrikes_579 = 579, + /// <summary> /// <see href="https://garlandtools.org/db/#status/582"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown_582 = 582, + /// <summary> /// <see href="https://garlandtools.org/db/#status/583"><strong>Physical Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalVulnerabilityDown_583 = 583, + /// <summary> /// <see href="https://garlandtools.org/db/#status/584"><strong>Energy Field</strong></see> ↑ (All Classes) /// <para>Invulnerable to ranged attacks.</para> /// </summary> EnergyField = 584, + /// <summary> /// <see href="https://garlandtools.org/db/#status/585"><strong>Energy Field Down</strong></see> ↑ (All Classes) /// <para>Energy field is no longer deflecting ranged attacks. </para> /// </summary> EnergyFieldDown = 585, + /// <summary> /// <see href="https://garlandtools.org/db/#status/586"><strong>HP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> HpBoost_586 = 586, + /// <summary> /// <see href="https://garlandtools.org/db/#status/587"><strong>Forked Lightning</strong></see> ↓ (All Classes) /// <para>Storing an electric charge which, when released, will deal lightning damage to nearby allies.</para> /// </summary> ForkedLightning = 587, + /// <summary> /// <see href="https://garlandtools.org/db/#status/588"><strong>Revelation Resistance Down</strong></see> ↓ (All Classes) /// <para>Damage taken by Revelation is increased.</para> /// </summary> RevelationResistanceDown = 588, + /// <summary> /// <see href="https://garlandtools.org/db/#status/589"><strong>Chain of Purgatory</strong></see> ↓ (All Classes) /// <para>Marked by the Brand of Purgatory. Damage taken by the Flames of Unforgiveness is increased.</para> /// </summary> ChainOfPurgatory = 589, + /// <summary> /// <see href="https://garlandtools.org/db/#status/590"><strong>Arm of Purgatory</strong></see> ↓ (All Classes) /// <para>Marked by the Brand of Purgatory. Damage taken by the Flames of Unforgiveness is increased.</para> /// </summary> ArmOfPurgatory = 590, + /// <summary> /// <see href="https://garlandtools.org/db/#status/591"><strong>Bluefire</strong></see> ↓ (All Classes) /// <para>Cold blue flames are severely reducing damage dealt and HP restored via actions.</para> /// </summary> Bluefire = 591, + /// <summary> /// <see href="https://garlandtools.org/db/#status/592"><strong>Ring of Fire</strong></see> ↑ (All Classes) /// <para>Enveloped in protective flames. Invulnerable to all damage.</para> /// </summary> RingOfFire = 592, + /// <summary> /// <see href="https://garlandtools.org/db/#status/593"><strong>Rise of the Phoenix</strong></see> ↓ (All Classes) /// <para>The holy flames of Phoenix burn bright, increasing potency of the Flames of Rebirth with each additional stack.</para> /// </summary> RiseOfThePhoenix = 593, + /// <summary> /// <see href="https://garlandtools.org/db/#status/594"><strong>Harvest</strong></see> ↑ (All Classes) /// <para>Redirecting the remaining life energies of incapacitated victims in order to gain the effect of Rise of the Phoenix.</para> /// </summary> Harvest = 594, + /// <summary> /// <see href="https://garlandtools.org/db/#status/595"><strong>Cloak of Death</strong></see> ↓ (All Classes) /// <para>Damage taken by the Fountain of Death is increased.</para> /// </summary> CloakOfDeath = 595, + /// <summary> /// <see href="https://garlandtools.org/db/#status/596"><strong>Suffocated Will</strong></see> ↓ (All Classes) /// <para>Overwhelmed by the sheer spiritual might of the dreadwyrm. Damage taken by certain attacks is increased.</para> /// </summary> SuffocatedWill = 596, + /// <summary> /// <see href="https://garlandtools.org/db/#status/597"><strong>Flare Dampening</strong></see> ↓ (All Classes) /// <para>Damage taken by Bahamut's Teraflare is reduced, and damage dealt is significantly reduced.</para> /// </summary> FlareDampening = 597, + /// <summary> /// <see href="https://garlandtools.org/db/#status/600"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown_600 = 600, + /// <summary> /// <see href="https://garlandtools.org/db/#status/601"><strong>Physical Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalVulnerabilityDown_601 = 601, + /// <summary> /// <see href="https://garlandtools.org/db/#status/602"><strong>Curse of the Mummy</strong></see> ↓ (All Classes) /// <para>Suffering an ancient curse. A stack of 4 will result in mummification.</para> /// </summary> CurseOfTheMummy = 602, + /// <summary> /// <see href="https://garlandtools.org/db/#status/603"><strong>Mummification</strong></see> ↓ (All Classes) /// <para>Serving the Sunken Temple of Qarn as a mindless thrall.</para> /// </summary> Mummification = 603, + /// <summary> /// <see href="https://garlandtools.org/db/#status/604"><strong>Thin Ice</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon ice-covered ground.</para> /// </summary> ThinIce = 604, + /// <summary> /// <see href="https://garlandtools.org/db/#status/605"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_605 = 605, + /// <summary> /// <see href="https://garlandtools.org/db/#status/606"><strong>Frozen</strong></see> ↓ (All Classes) /// <para>Ice has begun forming on gear. A stack of 4 will result in Deep Freeze.</para> /// </summary> Frozen = 606, + /// <summary> /// <see href="https://garlandtools.org/db/#status/607"><strong>Snowball</strong></see> ↓ (All Classes) /// <para>Trapped inside a giant ball of packed snow.</para> /// </summary> Snowball = 607, + /// <summary> /// <see href="https://garlandtools.org/db/#status/608"><strong>Death Throes</strong></see> ↓ (All Classes) /// <para>Held firmly by the leg and unable to move.</para> /// </summary> DeathThroes_608 = 608, + /// <summary> /// <see href="https://garlandtools.org/db/#status/609"><strong>Seized</strong></see> ↓ (All Classes) /// <para>Held in a vicelike grip and cannot act. Taking damage over time.</para> /// </summary> Seized_609 = 609, + /// <summary> /// <see href="https://garlandtools.org/db/#status/610"><strong>Petrification</strong></see> ↓ (All Classes) /// <para>Stone-like rigidity is preventing the execution of actions.</para> /// </summary> Petrification_610 = 610, + /// <summary> /// <see href="https://garlandtools.org/db/#status/611"><strong>Invigoration</strong></see> ↑ (All Classes) /// <para>Experiencing increased pep in one's step. Wet Plate status is removed upon executing Imp Punch.</para> /// </summary> Invigoration = 611, + /// <summary> /// <see href="https://garlandtools.org/db/#status/612"><strong>Wet Plate</strong></see> ↓ (All Classes) /// <para>Sufficient water remains on the imp plate. Status removed if Imp Punch is executed while Typhon is invigorated.</para> /// </summary> WetPlate = 612, + /// <summary> /// <see href="https://garlandtools.org/db/#status/613"><strong>Imp</strong></see> ↓ (All Classes) /// <para>Transformed into an imp and only able to execute the action Imp Punch.</para> /// </summary> Imp = 613, + /// <summary> /// <see href="https://garlandtools.org/db/#status/614"><strong>Hidden</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> Hidden = 614, + /// <summary> /// <see href="https://garlandtools.org/db/#status/615"><strong>Hidden</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> Hidden_615 = 615, + /// <summary> /// <see href="https://garlandtools.org/db/#status/616"><strong>Invisible</strong></see> ↑ (All Classes) /// <para>Unable to be detected by sight.</para> /// </summary> Invisible = 616, + /// <summary> /// <see href="https://garlandtools.org/db/#status/617"><strong>Irradiated</strong></see> ↑ (All Classes) /// <para>Luminescence is being stored within the body and will result in an emission of Banishing Light once the effect ends.</para> /// </summary> Irradiated = 617, + /// <summary> /// <see href="https://garlandtools.org/db/#status/618"><strong>Area of Influence Up</strong></see> ↑ (All Classes) /// <para>Area of effect for actions is expanded.</para> /// </summary> AreaOfInfluenceUp = 618, + /// <summary> /// <see href="https://garlandtools.org/db/#status/619"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_619 = 619, + /// <summary> /// <see href="https://garlandtools.org/db/#status/620"><strong>Pacification</strong></see> ↓ (All Classes) /// <para>Unable to use weaponskills.</para> /// </summary> Pacification_620 = 620, + /// <summary> /// <see href="https://garlandtools.org/db/#status/621"><strong>Fire Resistance Down</strong></see> ↓ (All Classes) /// <para>Fire resistance is reduced.</para> /// </summary> FireResistanceDown = 621, + /// <summary> /// <see href="https://garlandtools.org/db/#status/622"><strong>Rotting Lungs</strong></see> ↓ (All Classes) /// <para>Lungs are filled with noxious fumes and will emit the toxic vapors if subjected to further Rot Gas.</para> /// </summary> RottingLungs = 622, + /// <summary> /// <see href="https://garlandtools.org/db/#status/623"><strong>Disease</strong></see> ↓ (All Classes) /// <para>Movement speed and HP recovered via healing magic are reduced.</para> /// </summary> Disease_623 = 623, + /// <summary> /// <see href="https://garlandtools.org/db/#status/624"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_624 = 624, + /// <summary> /// <see href="https://garlandtools.org/db/#status/625"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount = 625, + /// <summary> /// <see href="https://garlandtools.org/db/#status/626"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction = 626, + /// <summary> /// <see href="https://garlandtools.org/db/#status/627"><strong>Neurolink</strong></see> ↑ (All Classes) /// <para>A powerful Allagan device is limiting strength.</para> /// </summary> Neurolink_627 = 627, + /// <summary> /// <see href="https://garlandtools.org/db/#status/628"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_628 = 628, + /// <summary> /// <see href="https://garlandtools.org/db/#status/629"><strong>Infirmity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Infirmity_629 = 629, + /// <summary> /// <see href="https://garlandtools.org/db/#status/630"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Chocobo speed is reduced.</para> /// </summary> Heavy_630 = 630, + /// <summary> /// <see href="https://garlandtools.org/db/#status/631"><strong>Tireless</strong></see> ↑ (All Classes) /// <para>Chocobo has limitless stamina.</para> /// </summary> Tireless = 631, + /// <summary> /// <see href="https://garlandtools.org/db/#status/632"><strong>Frenzied</strong></see> ↓ (All Classes) /// <para>Chocobo is panicked and accelerating out of control.</para> /// </summary> Frenzied = 632, + /// <summary> /// <see href="https://garlandtools.org/db/#status/633"><strong>Lamed</strong></see> ↓ (All Classes) /// <para>Chocobo is injured and cannot accelerate.</para> /// </summary> Lamed = 633, + /// <summary> /// <see href="https://garlandtools.org/db/#status/634"><strong>Silenced</strong></see> ↓ (All Classes) /// <para>Chocobo has lost its wark and cannot use race abilities.</para> /// </summary> Silenced = 634, + /// <summary> /// <see href="https://garlandtools.org/db/#status/635"><strong>Distracted</strong></see> ↓ (All Classes) /// <para>Chocobo is discomposed and refuses to use race items.</para> /// </summary> Distracted = 635, + /// <summary> /// <see href="https://garlandtools.org/db/#status/636"><strong>Brand of the Sullen</strong></see> ↓ (All Classes) /// <para>Damage taken by Sullen Gaze is increased.</para> /// </summary> BrandOfTheSullen = 636, + /// <summary> /// <see href="https://garlandtools.org/db/#status/637"><strong>Brand of the Ireful</strong></see> ↓ (All Classes) /// <para>Damage taken by Ireful Gaze is increased.</para> /// </summary> BrandOfTheIreful = 637, + /// <summary> /// <see href="https://garlandtools.org/db/#status/638"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_638 = 638, + /// <summary> /// <see href="https://garlandtools.org/db/#status/639"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic = 639, + /// <summary> /// <see href="https://garlandtools.org/db/#status/640"><strong>Poison Resistance Up</strong></see> ↑ (All Classes) /// <para>Poison resistance is increased.</para> /// </summary> PoisonResistanceUp = 640, + /// <summary> /// <see href="https://garlandtools.org/db/#status/641"><strong>Choco Reflect</strong></see> ↑ (All Classes) /// <para>All non-area of effect enfeeblements are being repelled back to their point of origin.</para> /// </summary> ChocoReflect = 641, + /// <summary> /// <see href="https://garlandtools.org/db/#status/642"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_642 = 642, + /// <summary> /// <see href="https://garlandtools.org/db/#status/643"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_643 = 643, + /// <summary> /// <see href="https://garlandtools.org/db/#status/644"><strong>Chicken</strong></see> ↓ (All Classes) /// <para>Transformed into a chicken and unable to execute actions.</para> /// </summary> Chicken = 644, + /// <summary> /// <see href="https://garlandtools.org/db/#status/645"><strong>Digesting</strong></see> ↓ (All Classes) /// <para>Taking damage over time as body tissue is slowly broken down by gastric fluid. Damage taken from other attacks is also increased.</para> /// </summary> Digesting = 645, + /// <summary> /// <see href="https://garlandtools.org/db/#status/646"><strong>Abandonment</strong></see> ↓ (All Classes) /// <para>Will suffer Fear when straying too far from party members.</para> /// </summary> Abandonment = 646, + /// <summary> /// <see href="https://garlandtools.org/db/#status/647"><strong>Atrophy</strong></see> ↓ (All Classes) /// <para>All attributes are reduced by 30%.</para> /// </summary> Atrophy = 647, + /// <summary> /// <see href="https://garlandtools.org/db/#status/648"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_648 = 648, + /// <summary> /// <see href="https://garlandtools.org/db/#status/649"><strong>Attack Up</strong></see> ↑ (All Classes) /// <para>Attack power is enhanced.</para> /// </summary> AttackUp_649 = 649, + /// <summary> /// <see href="https://garlandtools.org/db/#status/650"><strong>Attack Magic Potency Up</strong></see> ↑ (All Classes) /// <para>Attack magic potency is enhanced.</para> /// </summary> AttackMagicPotencyUp_650 = 650, + /// <summary> /// <see href="https://garlandtools.org/db/#status/651"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast/recast time, spell cast/recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_651 = 651, + /// <summary> /// <see href="https://garlandtools.org/db/#status/652"><strong>HP and MP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP and MP are increased.</para> /// </summary> HpMpBoost = 652, + /// <summary> /// <see href="https://garlandtools.org/db/#status/653"><strong>Battle High</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased and adrenaline builds faster.</para> /// </summary> BattleHigh = 653, + /// <summary> /// <see href="https://garlandtools.org/db/#status/654"><strong>Battle Fever</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased further and adrenaline builds faster than when experiencing a Battle High.</para> /// </summary> BattleFever = 654, + /// <summary> /// <see href="https://garlandtools.org/db/#status/655"><strong>Aegis Boon</strong></see> ↑ (PLD WAR DRK GNB) /// <para>Damage taken is reduced.</para> /// </summary> AegisBoon = 655, + /// <summary> /// <see href="https://garlandtools.org/db/#status/656"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_656 = 656, + /// <summary> /// <see href="https://garlandtools.org/db/#status/657"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_657 = 657, + /// <summary> /// <see href="https://garlandtools.org/db/#status/658"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_658 = 658, + /// <summary> /// <see href="https://garlandtools.org/db/#status/659"><strong>Blight</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time as lungs are filled with corruption. Damage taken from other attacks is also increased.</para> /// </summary> Blight_659 = 659, + /// <summary> /// <see href="https://garlandtools.org/db/#status/660"><strong>Extend</strong></see> ↓ (All Classes) /// <para>Temporal flow is disrupted.</para> /// </summary> Extend = 660, + /// <summary> /// <see href="https://garlandtools.org/db/#status/661"><strong>Double</strong></see> ↑ (All Classes) /// <para>The next action initiated will be executed twice.</para> /// </summary> Double = 661, + /// <summary> /// <see href="https://garlandtools.org/db/#status/662"><strong>Triple</strong></see> ↑ (All Classes) /// <para>The next action initiated will be executed thrice.</para> /// </summary> Triple = 662, + /// <summary> /// <see href="https://garlandtools.org/db/#status/663"><strong>Red Light</strong></see> ↓ (All Classes) /// <para>You are no longer allowed to move. All that's left is to pray the snort misses its mark.</para> /// </summary> RedLight = 663, + /// <summary> /// <see href="https://garlandtools.org/db/#status/664"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any party members you wander near will become marked in your stead.</para> /// </summary> Prey_664 = 664, + /// <summary> /// <see href="https://garlandtools.org/db/#status/665"><strong>Slippery Prey</strong></see> ↓ (All Classes) /// <para>Unable to be marked as prey by would-be predators.</para> /// </summary> SlipperyPrey_665 = 665, + /// <summary> /// <see href="https://garlandtools.org/db/#status/666"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_666 = 666, + /// <summary> /// <see href="https://garlandtools.org/db/#status/667"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_667 = 667, + /// <summary> /// <see href="https://garlandtools.org/db/#status/668"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_668 = 668, + /// <summary> /// <see href="https://garlandtools.org/db/#status/669"><strong>Movement Speed Up</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> MovementSpeedUp = 669, + /// <summary> /// <see href="https://garlandtools.org/db/#status/670"><strong>Fire Resistance Down</strong></see> ↓ (All Classes) /// <para>Fire resistance is reduced.</para> /// </summary> FireResistanceDown_670 = 670, + /// <summary> /// <see href="https://garlandtools.org/db/#status/671"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_671 = 671, + /// <summary> /// <see href="https://garlandtools.org/db/#status/672"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_672 = 672, + /// <summary> /// <see href="https://garlandtools.org/db/#status/673"><strong>Nanoparticles</strong></see> ↓ (All Classes) /// <para>Nanoparticles have invaded the body. If buildup continues, severe biomass atrophy may occur.</para> /// </summary> Nanoparticles = 673, + /// <summary> /// <see href="https://garlandtools.org/db/#status/674"><strong>Resin</strong></see> ↓ (All Classes) /// <para>A sticky substance covers the body, reducing movement speed.</para> /// </summary> Resin = 674, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_675 = 675, + /// <summary> /// <see href="https://garlandtools.org/db/#status/676"><strong>Concealed</strong></see> ↑ (All Classes) /// <para>Unable to be detected from a distance.</para> /// </summary> Concealed = 676, + /// <summary> /// <see href="https://garlandtools.org/db/#status/677"><strong>Concentrated Poison</strong></see> ↓ (All Classes) /// <para>Powerful poison is slowly draining HP while HP recovery via healing magic is reduced.</para> /// </summary> ConcentratedPoison = 677, + /// <summary> /// <see href="https://garlandtools.org/db/#status/678"><strong>Tailwind</strong></see> ↑ (All Classes) /// <para>Wind is buffeting the body, increasing evasion.</para> /// </summary> Tailwind = 678, + /// <summary> /// <see href="https://garlandtools.org/db/#status/679"><strong>Windwall</strong></see> ↑ (All Classes) /// <para>A wall of wind surrounds the body, allowing for evasion of all attacks.</para> /// </summary> Windwall = 679, + /// <summary> /// <see href="https://garlandtools.org/db/#status/680"><strong>Directional Parry</strong></see> ↑ (All Classes) /// <para>Parry rate is increased for all attacks from a certain direction.</para> /// </summary> DirectionalParry = 680, + /// <summary> /// <see href="https://garlandtools.org/db/#status/681"><strong>Offensive Optimization</strong></see> ↑ (All Classes) /// <para>Battle tactics optimized for offense. Damage dealt is increased.</para> /// </summary> OffensiveOptimization = 681, + /// <summary> /// <see href="https://garlandtools.org/db/#status/682"><strong>Defensive Optimization</strong></see> ↑ (All Classes) /// <para>Battle tactics optimized for defense. Damage taken is reduced.</para> /// </summary> DefensiveOptimization = 682, + /// <summary> /// <see href="https://garlandtools.org/db/#status/683"><strong>Blessing of Earth</strong></see> ↑ (All Classes) /// <para>An earthen barrier is nullifying damage. If the barrier retains power when the effect ends, the Blessing of Fire will be granted.</para> /// </summary> BlessingOfEarth = 683, + /// <summary> /// <see href="https://garlandtools.org/db/#status/684"><strong>Blessing of Fire</strong></see> ↑ (All Classes) /// <para>Damage dealt and critical hit rate are increased.</para> /// </summary> BlessingOfFire = 684, + /// <summary> /// <see href="https://garlandtools.org/db/#status/685"><strong>Wind Resistance Down</strong></see> ↓ (All Classes) /// <para>Resistance to wind damage is reduced.</para> /// </summary> WindResistanceDown = 685, + /// <summary> /// <see href="https://garlandtools.org/db/#status/686"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_686 = 686, + /// <summary> /// <see href="https://garlandtools.org/db/#status/687"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_687 = 687, + /// <summary> /// <see href="https://garlandtools.org/db/#status/688"><strong>Hypercharge</strong></see> ↑ (All Classes) /// <para>Battle turret is overcharged.</para> /// </summary> Hypercharge = 688, + /// <summary> /// <see href="https://garlandtools.org/db/#status/689"><strong>Mana Capacitor</strong></see> ↑ (All Classes) /// <para>Restoring MP over time.</para> /// </summary> ManaCapacitor = 689, + /// <summary> /// <see href="https://garlandtools.org/db/#status/690"><strong>Muscle Activator</strong></see> ↑ (All Classes) /// <para>Gradually regenerating TP.</para> /// </summary> MuscleActivator = 690, + /// <summary> /// <see href="https://garlandtools.org/db/#status/691"><strong>Marked for Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased following execution of Digititis.</para> /// </summary> MarkedForVulnerabilityUp = 691, + /// <summary> /// <see href="https://garlandtools.org/db/#status/692"><strong>Marked for Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced following execution of Digititis.</para> /// </summary> MarkedForDamageDown = 692, + /// <summary> /// <see href="https://garlandtools.org/db/#status/693"><strong>Marked for Healing Magic Down</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced following execution of Digititis.</para> /// </summary> MarkedForHealingMagicDown = 693, + /// <summary> /// <see href="https://garlandtools.org/db/#status/694"><strong>Hard Marked</strong></see> ↓ (All Classes) /// <para>The marked status cannot be moved to another ally.</para> /// </summary> HardMarked = 694, + /// <summary> /// <see href="https://garlandtools.org/db/#status/695"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_695 = 695, + /// <summary> /// <see href="https://garlandtools.org/db/#status/696"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_696 = 696, + /// <summary> /// <see href="https://garlandtools.org/db/#status/697"><strong>Healing Magic Down</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> HealingMagicDown_697 = 697, + /// <summary> /// <see href="https://garlandtools.org/db/#status/698"><strong>Positive Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a positive magnetic charge.</para> /// </summary> PositiveCharge = 698, + /// <summary> /// <see href="https://garlandtools.org/db/#status/699"><strong>Negative Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a negative magnetic charge.</para> /// </summary> NegativeCharge = 699, + /// <summary> /// <see href="https://garlandtools.org/db/#status/700"><strong>Throttle</strong></see> ↓ (All Classes) /// <para>Windpipe is crushed. KO is imminent.</para> /// </summary> Throttle = 700, + /// <summary> /// <see href="https://garlandtools.org/db/#status/701"><strong>Battle Efficiency Down</strong></see> ↓ (All Classes) /// <para></para> /// </summary> BattleEfficiencyDown = 701, + /// <summary> /// <see href="https://garlandtools.org/db/#status/702"><strong>Bloated</strong></see> ↓ (All Classes) /// <para>The bomb's body is filled to bursting with deadly gas.</para> /// </summary> Bloated = 702, + /// <summary> /// <see href="https://garlandtools.org/db/#status/703"><strong>Draconian Gaze</strong></see> ↓ (All Classes) /// <para>The Dragon's Eye is limiting Nidhogg's strength.</para> /// </summary> DraconianGaze = 703, + /// <summary> /// <see href="https://garlandtools.org/db/#status/704"><strong>Draconian Light</strong></see> ↑ (All Classes) /// <para>The Dragon's Eye is significantly reducing damage taken.</para> /// </summary> DraconianLight = 704, + /// <summary> /// <see href="https://garlandtools.org/db/#status/705"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form has been altered.</para> /// </summary> Transfiguration_705 = 705, + /// <summary> /// <see href="https://garlandtools.org/db/#status/706"><strong>Luminous Aetheroplasm</strong></see> ↓ (All Classes) /// <para>Luminous aetheroplasm buildup has occurred. If it continues, exhaust will be released to relieve pressure.</para> /// </summary> LuminousAetheroplasm = 706, + /// <summary> /// <see href="https://garlandtools.org/db/#status/707"><strong>Decree Nisi A</strong></see> ↓ (All Classes) /// <para>If Decree Nisi B is also issued, steam regulator ruling becomes Decree Absolute and death sentence is carried out.</para> /// </summary> DecreeNisiA = 707, + /// <summary> /// <see href="https://garlandtools.org/db/#status/708"><strong>Decree Nisi B</strong></see> ↓ (All Classes) /// <para>If Decree Nisi A is also issued, steam regulator ruling becomes Decree Absolute and death sentence is carried out.</para> /// </summary> DecreeNisiB = 708, + /// <summary> /// <see href="https://garlandtools.org/db/#status/709"><strong>Heavy Feet</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> HeavyFeet = 709, + /// <summary> /// <see href="https://garlandtools.org/db/#status/710"><strong>Charge</strong></see> ↓ (All Classes) /// <para>The order to charge has been given.</para> /// </summary> Charge_710 = 710, + /// <summary> /// <see href="https://garlandtools.org/db/#status/711"><strong>Temporary Insanity</strong></see> ↓ (All Classes) /// <para>Overcome with temporary insanity. Unable to execute actions. Enmity is reset when effect ends.</para> /// </summary> TemporaryInsanity = 711, + /// <summary> /// <see href="https://garlandtools.org/db/#status/712"><strong>Tempered Will</strong></see> ↑ (All Classes) /// <para>Immune to knockback and draw-in effects.</para> /// </summary> TemperedWill_712 = 712, + /// <summary> /// <see href="https://garlandtools.org/db/#status/713"><strong>Severe Damage</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> SevereDamage = 713, + /// <summary> /// <see href="https://garlandtools.org/db/#status/714"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_714 = 714, + /// <summary> /// <see href="https://garlandtools.org/db/#status/715"><strong>Staggered</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Staggered = 715, + /// <summary> /// <see href="https://garlandtools.org/db/#status/716"><strong>Turbulence</strong></see> ↓ (All Classes) /// <para>Violent atmospheric disruption is causing damage over time. Increased turbulence results in increased vulnerability to Bismarck's magicks.</para> /// </summary> Turbulence = 716, + /// <summary> /// <see href="https://garlandtools.org/db/#status/717"><strong>Will of the Wind</strong></see> ↓ (All Classes) /// <para>Under the influence of the wind magicks of the so'sanuwa.</para> /// </summary> WillOfTheWind = 717, + /// <summary> /// <see href="https://garlandtools.org/db/#status/718"><strong>Will of the Water</strong></see> ↓ (All Classes) /// <para>Under the influence of the water magicks of the ul'sanuwa.</para> /// </summary> WillOfTheWater = 718, + /// <summary> /// <see href="https://garlandtools.org/db/#status/719"><strong>Whaleback</strong></see> ↑ (All Classes) /// <para>Able to deal damage to Bismarck, but susceptible to the primal's magicks.</para> /// </summary> Whaleback = 719, + /// <summary> /// <see href="https://garlandtools.org/db/#status/720"><strong>Slashing Resistance Up</strong></see> ↑ (All Classes) /// <para>Slashing resistance is increased.</para> /// </summary> SlashingResistanceUp = 720, + /// <summary> /// <see href="https://garlandtools.org/db/#status/721"><strong>Piercing Resistance Up</strong></see> ↑ (All Classes) /// <para>Piercing resistance is increased.</para> /// </summary> PiercingResistanceUp = 721, + /// <summary> /// <see href="https://garlandtools.org/db/#status/722"><strong>Blunt Resistance Up</strong></see> ↑ (All Classes) /// <para>Blunt resistance is increased.</para> /// </summary> BluntResistanceUp = 722, + /// <summary> /// <see href="https://garlandtools.org/db/#status/723"><strong>Aetherochemical Bomb</strong></see> ↓ (All Classes) /// <para>An aetherochemical bomb is affixed to your person, and it is only a matter of time before it detonates.</para> /// </summary> AetherochemicalBomb_723 = 723, + /// <summary> /// <see href="https://garlandtools.org/db/#status/724"><strong>Strength Down</strong></see> ↓ (All Classes) /// <para>Strength is reduced.</para> /// </summary> StrengthDown_724 = 724, + /// <summary> /// <see href="https://garlandtools.org/db/#status/725"><strong>Goring Blade</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time.</para> /// </summary> GoringBlade = 725, + /// <summary> /// <see href="https://garlandtools.org/db/#status/726"><strong>Divine Veil</strong></see> ↑ (All Classes) /// <para>Upon HP recovery via healing magic, a damage-reducing barrier is created.</para> /// </summary> DivineVeil = 726, + /// <summary> /// <see href="https://garlandtools.org/db/#status/727"><strong>Divine Veil</strong></see> ↑ (PLD) /// <para>A holy barrier is nullifying damage.</para> /// </summary> DivineVeil_727 = 727, + /// <summary> /// <see href="https://garlandtools.org/db/#status/728"><strong>Sheltron</strong></see> ↑ (All Classes) /// <para>Next attack will be blocked.</para> /// </summary> Sheltron = 728, + /// <summary> /// <see href="https://garlandtools.org/db/#status/729"><strong>Deliverance</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased. Using certain actions will increase your Beast Gauge.</para> /// </summary> Deliverance = 729, + /// <summary> /// <see href="https://garlandtools.org/db/#status/730"><strong>Abandon</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> Abandon = 730, + /// <summary> /// <see href="https://garlandtools.org/db/#status/731"><strong>Abandon II</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> AbandonIi = 731, + /// <summary> /// <see href="https://garlandtools.org/db/#status/732"><strong>Abandon III</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> AbandonIii = 732, + /// <summary> /// <see href="https://garlandtools.org/db/#status/733"><strong>Abandon IV</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> AbandonIv = 733, + /// <summary> /// <see href="https://garlandtools.org/db/#status/734"><strong>Uncontrollable</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased.</para> /// </summary> Uncontrollable = 734, + /// <summary> /// <see href="https://garlandtools.org/db/#status/735"><strong>Raw Intuition</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced and HP is restored with each weaponskill successfully delivered.</para> /// </summary> RawIntuition = 735, + /// <summary> /// <see href="https://garlandtools.org/db/#status/736"><strong>Blood of the Dragon</strong></see> ↑ (All Classes) /// <para>Potency of Jump and Spineshatter Dive are increased.</para> /// </summary> BloodOfTheDragon = 736, + /// <summary> /// <see href="https://garlandtools.org/db/#status/737"><strong>Ley Lines</strong></see> ↑ (All Classes) /// <para>Naturally occurring ley lines have been connected into a circle of power.</para> /// </summary> LeyLines = 737, + /// <summary> /// <see href="https://garlandtools.org/db/#status/738"><strong>Circle of Power</strong></see> ↑ (All Classes) /// <para>Spell cast times, recast times, and auto-attack delay are reduced.</para> /// </summary> CircleOfPower = 738, + /// <summary> /// <see href="https://garlandtools.org/db/#status/739"><strong>Asylum</strong></see> ↑ (All Classes) /// <para>A veil of succor is healing party members in the area.</para> /// </summary> Asylum = 739, + /// <summary> /// <see href="https://garlandtools.org/db/#status/740"><strong>Shadowskin</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Shadowskin = 740, + /// <summary> /// <see href="https://garlandtools.org/db/#status/741"><strong>Scourge</strong></see> ↓ (All Classes) /// <para>Sanity is slipping, causing damage over time.</para> /// </summary> Scourge = 741, + /// <summary> /// <see href="https://garlandtools.org/db/#status/742"><strong>Blood Weapon</strong></see> ↑ (All Classes) /// <para>Absorbing MP upon landing weaponskills or spells.</para> /// <para>Enhanced Blackblood Effect: Increasing Blood Gauge upon landing weaponskills or spells.</para> /// </summary> BloodWeapon = 742, + /// <summary> /// <see href="https://garlandtools.org/db/#status/743"><strong>Grit</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> Grit = 743, + /// <summary> /// <see href="https://garlandtools.org/db/#status/744"><strong>Dark Dance</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> DarkDance = 744, + /// <summary> /// <see href="https://garlandtools.org/db/#status/745"><strong>Blood Price</strong></see> ↑ (All Classes) /// <para>Partial MP restored when damage is taken.</para> /// </summary> BloodPrice = 745, + /// <summary> /// <see href="https://garlandtools.org/db/#status/746"><strong>Dark Mind</strong></see> ↑ (All Classes) /// <para>Physical and magic damage taken are reduced.</para> /// </summary> DarkMind = 746, + /// <summary> /// <see href="https://garlandtools.org/db/#status/747"><strong>Shadow Wall</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> ShadowWall = 747, + /// <summary> /// <see href="https://garlandtools.org/db/#status/748"><strong>Delirium</strong></see> ↓ (All Classes) /// <para>Intelligence is reduced.</para> /// </summary> Delirium = 748, + /// <summary> /// <see href="https://garlandtools.org/db/#status/749"><strong>Salted Earth</strong></see> ↑ (All Classes) /// <para>The ground is rendered void of all life, dealing unaspected damage to any who tread upon it.</para> /// </summary> SaltedEarth = 749, + /// <summary> /// <see href="https://garlandtools.org/db/#status/750"><strong>Another Victim</strong></see> ↓ (All Classes) /// <para>When target is KO'd or effect expires, the dark knight who marked target will recover HP and MP.</para> /// </summary> AnotherVictim = 750, + /// <summary> /// <see href="https://garlandtools.org/db/#status/751"><strong>Darkside</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while MP regeneration is stopped.</para> /// </summary> Darkside = 751, + /// <summary> /// <see href="https://garlandtools.org/db/#status/752"><strong>Dark Arts</strong></see> ↑ (All Classes) /// <para>Potency of certain dark knight actions is enhanced.</para> /// </summary> DarkArts = 752, + /// <summary> /// <see href="https://garlandtools.org/db/#status/753"><strong>Reprisal</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Reprisal = 753, + /// <summary> /// <see href="https://garlandtools.org/db/#status/754"><strong>Gathering Rate Up (Limited)</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an item on your next gathering attempt is increased.</para> /// </summary> GatheringRateUpLimited = 754, + /// <summary> /// <see href="https://garlandtools.org/db/#status/755"><strong>Gathering Fortune Up (Limited)</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an HQ item on your next gathering attempt is increased.</para> /// </summary> GatheringFortuneUpLimited = 755, + /// <summary> /// <see href="https://garlandtools.org/db/#status/756"><strong>Gathering Yield Up (Limited)</strong></see> ↑ (All Classes) /// <para>Number of items obtained on your next gathering attempt is increased.</para> /// </summary> GatheringYieldUpLimited = 756, + /// <summary> /// <see href="https://garlandtools.org/db/#status/757"><strong>Scrutiny</strong></see> ↑ (All Classes) /// <para>Collectability increase is improved.</para> /// </summary> Scrutiny = 757, + /// <summary> /// <see href="https://garlandtools.org/db/#status/758"><strong>Utmost Caution</strong></see> ↑ (All Classes) /// <para>Item wear increase reduced on next appraisal.</para> /// </summary> UtmostCaution = 758, + /// <summary> /// <see href="https://garlandtools.org/db/#status/759"><strong>Gift of the Land II</strong></see> ↑ (All Classes) /// <para>Increased chance of triggering Gatherer's Boon.</para> /// </summary> GiftOfTheLandIi = 759, + /// <summary> /// <see href="https://garlandtools.org/db/#status/760"><strong>Single Mind</strong></see> ↑ (All Classes) /// <para>The next appraisal will not use a gathering attempt.</para> /// </summary> SingleMind = 760, + /// <summary> /// <see href="https://garlandtools.org/db/#status/761"><strong>Snagging</strong></see> ↑ (All Classes) /// <para>Able to land fish and items inaccessible with normal bait or lures.</para> /// </summary> Snagging = 761, + /// <summary> /// <see href="https://garlandtools.org/db/#status/762"><strong>Fish Eyes</strong></see> ↑ (All Classes) /// <para>Able to locate fish usually hidden regardless of their normal hours of activity.</para> /// </summary> FishEyes = 762, + /// <summary> /// <see href="https://garlandtools.org/db/#status/763"><strong>Chum</strong></see> ↑ (All Classes) /// <para>The amount of time waiting for a bite is reduced.</para> /// </summary> Chum = 763, + /// <summary> /// <see href="https://garlandtools.org/db/#status/764"><strong>Inefficient Hooking</strong></see> ↓ (All Classes) /// <para>Hook efficiency is reduced.</para> /// </summary> InefficientHooking = 764, + /// <summary> /// <see href="https://garlandtools.org/db/#status/765"><strong>Catch and Release</strong></see> ↑ (All Classes) /// <para>Chance of landing fish of greater size is increased.</para> /// </summary> CatchAndRelease = 765, + /// <summary> /// <see href="https://garlandtools.org/db/#status/766"><strong>Anthropomorph</strong></see> ↑ (All Classes) /// <para>The fluid has assumed the form of a man.</para> /// </summary> Anthropomorph = 766, + /// <summary> /// <see href="https://garlandtools.org/db/#status/767"><strong>Chiromorph</strong></see> ↑ (All Classes) /// <para>The fluid has assumed the form of a hand.</para> /// </summary> Chiromorph = 767, + /// <summary> /// <see href="https://garlandtools.org/db/#status/768"><strong>Anemomorph</strong></see> ↑ (All Classes) /// <para>The fluid has assumed the form of a vortex.</para> /// </summary> Anemomorph = 768, + /// <summary> /// <see href="https://garlandtools.org/db/#status/769"><strong>Burning Chains</strong></see> ↓ (All Classes) /// <para>Red-hot chains sear the flesh on your body, causing damage over time.</para> /// </summary> BurningChains = 769, + /// <summary> /// <see href="https://garlandtools.org/db/#status/770"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_770 = 770, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_771 = 771, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_772 = 772, + /// <summary> /// <see href="https://garlandtools.org/db/#status/773"><strong>Enliven</strong></see> ↑ (All Classes) /// <para>All action direction requirements are nullified.</para> /// </summary> Enliven = 773, + /// <summary> /// <see href="https://garlandtools.org/db/#status/774"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_774 = 774, + /// <summary> /// <see href="https://garlandtools.org/db/#status/775"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_775 = 775, + /// <summary> /// <see href="https://garlandtools.org/db/#status/776"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_776 = 776, + /// <summary> /// <see href="https://garlandtools.org/db/#status/777"><strong>Blessing of the Void</strong></see> ↑ (All Classes) /// <para>A voidal barrier is nullifying damage and granting critical damage for all attacks.</para> /// </summary> BlessingOfTheVoid = 777, + /// <summary> /// <see href="https://garlandtools.org/db/#status/778"><strong>Earthen Accord</strong></see> ↑ (All Classes) /// <para>The land is under unwavering rule.</para> /// </summary> EarthenAccord = 778, + /// <summary> /// <see href="https://garlandtools.org/db/#status/779"><strong>Out of Body</strong></see> ↓ (All Classes) /// <para>Spirit and body are temporarily disjoined.</para> /// </summary> OutOfBody = 779, + /// <summary> /// <see href="https://garlandtools.org/db/#status/780"><strong>Resonant</strong></see> ↑ (All Classes) /// <para>Strength is transcending that of mere mortals.</para> /// </summary> Resonant = 780, + /// <summary> /// <see href="https://garlandtools.org/db/#status/781"><strong>Aether Sickness</strong></see> ↓ (All Classes) /// <para>Overexposure to concentrated aether is preventing resonation.</para> /// </summary> AetherSickness = 781, + /// <summary> /// <see href="https://garlandtools.org/db/#status/782"><strong>Unbridled</strong></see> ↑ (All Classes) /// <para>The true power of Ame-no-Habakiri is unleashed.</para> /// </summary> Unbridled = 782, + /// <summary> /// <see href="https://garlandtools.org/db/#status/783"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_783 = 783, + /// <summary> /// <see href="https://garlandtools.org/db/#status/784"><strong>Voidblood</strong></see> ↓ (All Classes) /// <para>Covered in voidsent blood. Damage taken is increased.</para> /// </summary> Voidblood = 784, + /// <summary> /// <see href="https://garlandtools.org/db/#status/785"><strong>Nymian Plague</strong></see> ↓ (All Classes) /// <para>Infected with the Nymian Plague. If not cured, you will transform into a tonberry.</para> /// </summary> NymianPlague = 785, + /// <summary> /// <see href="https://garlandtools.org/db/#status/786"><strong>Battle Litany</strong></see> ↑ (DRG) /// <para>Critical hit rate is increased.</para> /// </summary> BattleLitany = 786, + /// <summary> /// <see href="https://garlandtools.org/db/#status/787"><strong>Silhouette</strong></see> ↑ (NIN) /// <para>A portion of enmity generated by a ninja is being directed to you.</para> /// </summary> Silhouette = 787, + /// <summary> /// <see href="https://garlandtools.org/db/#status/788"><strong>Shadewalker</strong></see> ↑ (All Classes) /// <para>A portion of enmity generated is being directed to a party member.</para> /// </summary> Shadewalker = 788, + /// <summary> /// <see href="https://garlandtools.org/db/#status/789"><strong>Smoke Screen</strong></see> ↑ (NIN) /// <para>Enmity generation is reduced.</para> /// </summary> SmokeScreen = 789, + /// <summary> /// <see href="https://garlandtools.org/db/#status/790"><strong>Duality</strong></see> ↑ (All Classes) /// <para>Next weaponskill will be executed multiple times.</para> /// </summary> Duality = 790, + /// <summary> /// <see href="https://garlandtools.org/db/#status/791"><strong>Dissipation</strong></see> ↑ (All Classes) /// <para>Healing magic potency is increased.</para> /// </summary> Dissipation = 791, + /// <summary> /// <see href="https://garlandtools.org/db/#status/792"><strong>Emergency Tactics</strong></see> ↑ (All Classes) /// <para>The next Galvanize and Catalyze statuses are transformed into HP recovery equaling the amount of damage reduction intended for their barriers.</para> /// </summary> EmergencyTactics = 792, + /// <summary> /// <see href="https://garlandtools.org/db/#status/793"><strong>First Chakra</strong></see> ↑ (All Classes) /// <para>The first chakra is open.</para> /// </summary> FirstChakra = 793, + /// <summary> /// <see href="https://garlandtools.org/db/#status/794"><strong>Second Chakra</strong></see> ↑ (All Classes) /// <para>The first and second chakra are open.</para> /// </summary> SecondChakra = 794, + /// <summary> /// <see href="https://garlandtools.org/db/#status/795"><strong>Third Chakra</strong></see> ↑ (All Classes) /// <para>The first, second, and third chakra are open.</para> /// </summary> ThirdChakra = 795, + /// <summary> /// <see href="https://garlandtools.org/db/#status/796"><strong>Fourth Chakra</strong></see> ↑ (All Classes) /// <para>The first, second, third, and fourth chakra are open.</para> /// </summary> FourthChakra = 796, + /// <summary> /// <see href="https://garlandtools.org/db/#status/797"><strong>Fifth Chakra</strong></see> ↑ (All Classes) /// <para>The first, second, third, fourth, and fifth chakra are open.</para> /// </summary> FifthChakra = 797, + /// <summary> /// <see href="https://garlandtools.org/db/#status/798"><strong>Aero III</strong></see> ↓ (All Classes) /// <para>Swift air currents are tearing at the flesh causing wind damage over time.</para> /// </summary> AeroIii = 798, + /// <summary> /// <see href="https://garlandtools.org/db/#status/799"><strong>Fey Wind</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> FeyWind = 799, + /// <summary> /// <see href="https://garlandtools.org/db/#status/800"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_800 = 800, + /// <summary> /// <see href="https://garlandtools.org/db/#status/801"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_801 = 801, + /// <summary> /// <see href="https://garlandtools.org/db/#status/802"><strong>Fang and Claw Bared</strong></see> ↑ (All Classes) /// <para>Able to execute Fang and Claw.</para> /// </summary> FangAndClawBared = 802, + /// <summary> /// <see href="https://garlandtools.org/db/#status/803"><strong>Wheel in Motion</strong></see> ↑ (All Classes) /// <para>Able to execute Wheeling Thrust.</para> /// </summary> WheelInMotion = 803, + /// <summary> /// <see href="https://garlandtools.org/db/#status/804"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_804 = 804, + /// <summary> /// <see href="https://garlandtools.org/db/#status/805"><strong>Collector's Glove</strong></see> ↑ (All Classes) /// <para>Able to discern the location of collectables.</para> /// </summary> CollectorsGlove = 805, + /// <summary> /// <see href="https://garlandtools.org/db/#status/806"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_806 = 806, + /// <summary> /// <see href="https://garlandtools.org/db/#status/807"><strong>Aethertrail Attunement</strong></see> ↑ (All Classes) /// <para>Aether within the body is attuned to the aethertrails left by the dreadwyrm Bahamut.</para> /// </summary> AethertrailAttunement = 807, + /// <summary> /// <see href="https://garlandtools.org/db/#status/808"><strong>Dreadwyrm Trance</strong></see> ↑ (All Classes) /// <para>Drawing on the power of Bahamut, increasing magic damage dealt.</para> /// </summary> DreadwyrmTrance = 808, + /// <summary> /// <see href="https://garlandtools.org/db/#status/809"><strong>Slime</strong></see> ↓ (All Classes) /// <para>Viscous discharge is hampering movement and inflicting damage over time.</para> /// </summary> Slime_809 = 809, + /// <summary> /// <see href="https://garlandtools.org/db/#status/810"><strong>Living Dead</strong></see> ↑ (All Classes) /// <para>Unable to be KO'd by most attacks. Status changed to Walking Dead in most cases when HP is reduced to 0.</para> /// </summary> LivingDead = 810, + /// <summary> /// <see href="https://garlandtools.org/db/#status/811"><strong>Walking Dead</strong></see> ↓ (All Classes) /// <para>Most attacks will not reduce HP below 1. Restoring HP with each weaponskill successfully delivered and spell cast. The inability to restore 100% of HP before timer runs out will result in KO.</para> /// </summary> WalkingDead = 811, + /// <summary> /// <see href="https://garlandtools.org/db/#status/812"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown_812 = 812, + /// <summary> /// <see href="https://garlandtools.org/db/#status/813"><strong>Dark Dance</strong></see> ↑ (All Classes) /// <para>Parry and evasion rates are increased.</para> /// </summary> DarkDance_813 = 813, + /// <summary> /// <see href="https://garlandtools.org/db/#status/814"><strong>Enhanced Unleash</strong></see> ↑ (All Classes) /// <para>Next Unleash will not require any MP to cast.</para> /// </summary> EnhancedUnleash = 814, + /// <summary> /// <see href="https://garlandtools.org/db/#status/815"><strong>Enhanced Benefic II</strong></see> ↑ (All Classes) /// <para>Next Benefic II will restore critical HP.</para> /// </summary> EnhancedBeneficIi = 815, + /// <summary> /// <see href="https://garlandtools.org/db/#status/816"><strong>Enhanced Royal Road</strong></see> ↑ (All Classes) /// <para>Potency of the card played is enhanced.</para> /// </summary> EnhancedRoyalRoad = 816, + /// <summary> /// <see href="https://garlandtools.org/db/#status/817"><strong>Expanded Royal Road</strong></see> ↑ (All Classes) /// <para>Adds area of effect to next card played.</para> /// </summary> ExpandedRoyalRoad = 817, + /// <summary> /// <see href="https://garlandtools.org/db/#status/818"><strong>Extended Royal Road</strong></see> ↑ (All Classes) /// <para>Duration of the card played is extended.</para> /// </summary> ExtendedRoyalRoad = 818, + /// <summary> /// <see href="https://garlandtools.org/db/#status/819"><strong>Slashing Resistance Down</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> SlashingResistanceDown_819 = 819, + /// <summary> /// <see href="https://garlandtools.org/db/#status/820"><strong>Piercing Resistance Down</strong></see> ↓ (All Classes) /// <para>Piercing resistance is reduced.</para> /// </summary> PiercingResistanceDown = 820, + /// <summary> /// <see href="https://garlandtools.org/db/#status/821"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown_821 = 821, + /// <summary> /// <see href="https://garlandtools.org/db/#status/822"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_822 = 822, + /// <summary> /// <see href="https://garlandtools.org/db/#status/823"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_823 = 823, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_824 = 824, + /// <summary> /// <see href="https://garlandtools.org/db/#status/825"><strong>The Twelve's Bounty</strong></see> ↑ (All Classes) /// <para>Elemental shard, crystal, and cluster yields are and crystal yields are yield is increased.</para> /// </summary> TheTwelvesBounty = 825, + /// <summary> /// <see href="https://garlandtools.org/db/#status/826"><strong>Card Drawn</strong></see> ↑ (All Classes) /// <para>An arcanum is drawn from the deck.</para> /// </summary> CardDrawn = 826, + /// <summary> /// <see href="https://garlandtools.org/db/#status/827"><strong>Royal Road</strong></see> ↑ (All Classes) /// <para>Effect of the next card drawn will be altered.</para> /// </summary> RoyalRoad = 827, + /// <summary> /// <see href="https://garlandtools.org/db/#status/828"><strong>Card Held</strong></see> ↑ (All Classes) /// <para>An arcanum is being held in the spread.</para> /// </summary> CardHeld = 828, + /// <summary> /// <see href="https://garlandtools.org/db/#status/829"><strong>The Balance</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheBalance = 829, + /// <summary> /// <see href="https://garlandtools.org/db/#status/830"><strong>The Bole</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> TheBole = 830, + /// <summary> /// <see href="https://garlandtools.org/db/#status/831"><strong>The Arrow</strong></see> ↑ (AST) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> TheArrow = 831, + /// <summary> /// <see href="https://garlandtools.org/db/#status/832"><strong>The Spear</strong></see> ↑ (AST) /// <para>Critical hit rate is increased.</para> /// </summary> TheSpear = 832, + /// <summary> /// <see href="https://garlandtools.org/db/#status/833"><strong>The Ewer</strong></see> ↑ (AST) /// <para>Restoring MP over time.</para> /// </summary> TheEwer = 833, + /// <summary> /// <see href="https://garlandtools.org/db/#status/834"><strong>The Spire</strong></see> ↑ (AST) /// <para>Restoring TP over time.</para> /// </summary> TheSpire = 834, + /// <summary> /// <see href="https://garlandtools.org/db/#status/835"><strong>Aspected Benefic</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> AspectedBenefic = 835, + /// <summary> /// <see href="https://garlandtools.org/db/#status/836"><strong>Aspected Helios</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> AspectedHelios = 836, + /// <summary> /// <see href="https://garlandtools.org/db/#status/837"><strong>Nocturnal Field</strong></see> ↑ (AST) /// <para>An astromantic field is nullifying damage.</para> /// </summary> NocturnalField = 837, + /// <summary> /// <see href="https://garlandtools.org/db/#status/838"><strong>Combust</strong></see> ↓ (All Classes) /// <para>Proximity of a theoretical sun is causing damage over time.</para> /// </summary> Combust = 838, + /// <summary> /// <see href="https://garlandtools.org/db/#status/839"><strong>Diurnal Sect</strong></see> ↑ (All Classes) /// <para>A Regen effect is added to certain actions.</para> /// </summary> DiurnalSect = 839, + /// <summary> /// <see href="https://garlandtools.org/db/#status/840"><strong>Nocturnal Sect</strong></see> ↑ (All Classes) /// <para>A damage-nullifying barrier effect is added to certain actions.</para> /// </summary> NocturnalSect = 840, + /// <summary> /// <see href="https://garlandtools.org/db/#status/841"><strong>Lightspeed</strong></see> ↑ (All Classes) /// <para>Spell casting time is reduced.</para> /// </summary> Lightspeed = 841, + /// <summary> /// <see href="https://garlandtools.org/db/#status/842"><strong>Luminiferous Aether</strong></see> ↑ (All Classes) /// <para>Restoring MP over time while enmity generation is reduced.</para> /// </summary> LuminiferousAether = 842, + /// <summary> /// <see href="https://garlandtools.org/db/#status/843"><strong>Combust II</strong></see> ↓ (All Classes) /// <para>Proximity of a theoretical sun is causing damage over time.</para> /// </summary> CombustIi = 843, + /// <summary> /// <see href="https://garlandtools.org/db/#status/844"><strong>Disabled</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Disabled = 844, + /// <summary> /// <see href="https://garlandtools.org/db/#status/845"><strong>Synastry</strong></see> ↑ (AST) /// <para>An aetheric bond is created with a party member. Each time a single-target healing spell is cast, that member will recover partial HP.</para> /// </summary> Synastry = 845, + /// <summary> /// <see href="https://garlandtools.org/db/#status/846"><strong>Synastry</strong></see> ↑ (AST) /// <para>An aetheric bond is created with a party astrologian. Each time a single-target healing spell is cast by the astrologian, you will recover partial HP.</para> /// </summary> Synastry_846 = 846, + /// <summary> /// <see href="https://garlandtools.org/db/#status/847"><strong>Collective Unconscious</strong></see> ↑ (All Classes) /// <para>An area of mind attunement is healing party members.</para> /// </summary> CollectiveUnconscious = 847, + /// <summary> /// <see href="https://garlandtools.org/db/#status/848"><strong>Collective Unconscious</strong></see> ↑ (All Classes) /// <para>An area of mind attunement is created, reducing damage taken for all who enter.</para> /// </summary> CollectiveUnconscious_848 = 848, + /// <summary> /// <see href="https://garlandtools.org/db/#status/849"><strong>Collective Unconscious</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> CollectiveUnconscious_849 = 849, + /// <summary> /// <see href="https://garlandtools.org/db/#status/850"><strong>Angler's Fortune</strong></see> ↑ (All Classes) /// <para>Chance of landing a large-sized catch while fishing is increased.</para> /// </summary> AnglersFortune = 850, + /// <summary> /// <see href="https://garlandtools.org/db/#status/851"><strong>Reassembled</strong></see> ↑ (All Classes) /// <para>Next weaponskill will result in a critical direct hit. Damage dealt when under an effect that raises critical hit rate or direct hit rate is increased.</para> /// </summary> Reassembled = 851, + /// <summary> /// <see href="https://garlandtools.org/db/#status/852"><strong>Promotion</strong></see> ↑ (All Classes) /// <para>Autoturret auto-attack mode is disabled.</para> /// </summary> Promotion = 852, + /// <summary> /// <see href="https://garlandtools.org/db/#status/853"><strong>Rapid Fire</strong></see> ↑ (All Classes) /// <para>Weaponskill recast time is reduced.</para> /// </summary> RapidFire = 853, + /// <summary> /// <see href="https://garlandtools.org/db/#status/854"><strong>Lead Shot</strong></see> ↓ (All Classes) /// <para>Poisonous lead slowly spreads through the bloodstream, causing damage over time.</para> /// </summary> LeadShot = 854, + /// <summary> /// <see href="https://garlandtools.org/db/#status/855"><strong>Hot Shot</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> HotShot = 855, + /// <summary> /// <see href="https://garlandtools.org/db/#status/856"><strong>Enhanced Slug Shot</strong></see> ↑ (All Classes) /// <para>Potency of next Slug Shot is increased.</para> /// </summary> EnhancedSlugShot = 856, + /// <summary> /// <see href="https://garlandtools.org/db/#status/857"><strong>Cleaner Shot</strong></see> ↑ (All Classes) /// <para>Potency of next Clean Shot is increased.</para> /// </summary> CleanerShot = 857, + /// <summary> /// <see href="https://garlandtools.org/db/#status/858"><strong>Gauss Barrel</strong></see> ↑ (All Classes) /// <para>A gauss barrel is attached to the firearm, increasing attack power but adding cast times to machinist weaponskills.</para> /// </summary> GaussBarrel = 858, + /// <summary> /// <see href="https://garlandtools.org/db/#status/859"><strong>Rent Mind</strong></see> ↓ (All Classes) /// <para>Magic damage dealt is reduced.</para> /// </summary> RentMind = 859, + /// <summary> /// <see href="https://garlandtools.org/db/#status/860"><strong>Dismantled</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Dismantled = 860, + /// <summary> /// <see href="https://garlandtools.org/db/#status/861"><strong>Wildfire</strong></see> ↓ (All Classes) /// <para>Damage is being accumulated with each weaponskill landed by the machinist who applied the effect.</para> /// </summary> Wildfire = 861, + /// <summary> /// <see href="https://garlandtools.org/db/#status/862"><strong>Ammunition Loaded</strong></see> ↑ (All Classes) /// <para>Firearm is loaded with special ammunition.</para> /// </summary> AmmunitionLoaded = 862, + /// <summary> /// <see href="https://garlandtools.org/db/#status/863"><strong>Land Waker</strong></see> ↑ (WAR) /// <para>Damage taken is reduced.</para> /// </summary> LandWaker = 863, + /// <summary> /// <see href="https://garlandtools.org/db/#status/864"><strong>Dark Force</strong></see> ↑ (DRK) /// <para>Damage taken is reduced.</para> /// </summary> DarkForce = 864, + /// <summary> /// <see href="https://garlandtools.org/db/#status/865"><strong>The Wanderer's Minuet</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while cast time is added to all archer and bard weaponskills.</para> /// </summary> TheWanderersMinuet = 865, + /// <summary> /// <see href="https://garlandtools.org/db/#status/866"><strong>The Warden's Paean</strong></see> ↑ (BRD) /// <para>Impervious to the next enfeeblement.</para> /// </summary> TheWardensPaean = 866, + /// <summary> /// <see href="https://garlandtools.org/db/#status/867"><strong>Sharpcast</strong></see> ↑ (All Classes) /// <para>Next Scathe, Fire, or Thunder spell cast will trigger enhanced status.</para> /// </summary> Sharpcast = 867, + /// <summary> /// <see href="https://garlandtools.org/db/#status/868"><strong>Enochian</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> Enochian = 868, + /// <summary> /// <see href="https://garlandtools.org/db/#status/869"><strong>Carnal Chill</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> CarnalChill = 869, + /// <summary> /// <see href="https://garlandtools.org/db/#status/870"><strong>Push Back</strong></see> ↑ (All Classes) /// <para>Countering any physical attacks and reflecting next knockback effect.</para> /// </summary> PushBack = 870, + /// <summary> /// <see href="https://garlandtools.org/db/#status/871"><strong>Name of the Elements</strong></see> ↑ (Disciple of the Hand) /// <para>Efficiency of Brand of the Elements is increased.</para> /// </summary> NameOfTheElements = 871, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_872 = 872, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_873 = 873, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_874 = 874, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_875 = 875, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_876 = 876, + /// <summary> /// <see href="https://garlandtools.org/db/#status/877"><strong>Nameless</strong></see> ↑ (Disciple of the Hand) /// <para>Unable to recite the Name of the Elements.</para> /// </summary> Nameless = 877, + /// <summary> /// <see href="https://garlandtools.org/db/#status/878"><strong>Maker's Mark</strong></see> ↑ (Disciple of the Hand) /// <para>Flawless Synthesis CP cost and durability loss is reduced to zero.</para> /// </summary> MakersMark = 878, + /// <summary> /// <see href="https://garlandtools.org/db/#status/879"><strong>Crafter's Soul</strong></see> ↑ (Disciple of the Hand) /// <para>Chances of material condition becoming good are increased.</para> /// </summary> CraftersSoul = 879, + /// <summary> /// <see href="https://garlandtools.org/db/#status/880"><strong>Whistle</strong></see> ↑ (Disciple of the Hand) /// <para>Synthesis-related effects granted based on stack size.</para> /// </summary> Whistle = 880, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_881 = 881, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_882 = 882, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_883 = 883, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_884 = 884, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_885 = 885, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_886 = 886, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_887 = 887, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_888 = 888, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_889 = 889, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_890 = 890, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_891 = 891, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_892 = 892, + /// <summary> /// <see href="https://garlandtools.org/db/#status/893"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_893 = 893, + /// <summary> /// <see href="https://garlandtools.org/db/#status/894"><strong>Wind Resistance Down</strong></see> ↓ (All Classes) /// <para>Resistance to wind damage is reduced.</para> /// </summary> WindResistanceDown_894 = 894, + /// <summary> /// <see href="https://garlandtools.org/db/#status/895"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Impervious to all attacks.</para> /// </summary> Invincibility_895 = 895, + /// <summary> /// <see href="https://garlandtools.org/db/#status/896"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_896 = 896, + /// <summary> /// <see href="https://garlandtools.org/db/#status/897"><strong>Regen</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Regen_897 = 897, + /// <summary> /// <see href="https://garlandtools.org/db/#status/898"><strong>Lightning Resistance Down</strong></see> ↓ (All Classes) /// <para>Lightning resistance is reduced.</para> /// </summary> LightningResistanceDown_898 = 898, + /// <summary> /// <see href="https://garlandtools.org/db/#status/899"><strong>Physical Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalVulnerabilityDown_899 = 899, + /// <summary> /// <see href="https://garlandtools.org/db/#status/900"><strong>Temporal Displacement</strong></see> ↓ (All Classes) /// <para>Time is stopped.</para> /// </summary> TemporalDisplacement = 900, + /// <summary> /// <see href="https://garlandtools.org/db/#status/901"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_901 = 901, + /// <summary> /// <see href="https://garlandtools.org/db/#status/902"><strong>Jackpot</strong></see> ↑ (All Classes) /// <para>MGP earned at Gold Saucer attractions is increased.</para> /// </summary> Jackpot = 902, + /// <summary> /// <see href="https://garlandtools.org/db/#status/903"><strong>Collectable Synthesis</strong></see> ↑ (Disciple of the Hand) /// <para>Creating collectables.</para> /// </summary> CollectableSynthesis = 903, + /// <summary> /// <see href="https://garlandtools.org/db/#status/904"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any party members you wander near will become marked in your stead.</para> /// </summary> Prey_904 = 904, + /// <summary> /// <see href="https://garlandtools.org/db/#status/905"><strong>Thin Ice</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon ice-covered ground.</para> /// </summary> ThinIce_905 = 905, + /// <summary> /// <see href="https://garlandtools.org/db/#status/906"><strong>Darkness</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while damage taken is reduced.</para> /// </summary> Darkness = 906, + /// <summary> /// <see href="https://garlandtools.org/db/#status/907"><strong>Arcanum Blessing</strong></see> ↑ (All Classes) /// <para>HP restored via healing magic is increased.</para> /// </summary> ArcanumBlessing = 907, + /// <summary> /// <see href="https://garlandtools.org/db/#status/908"><strong>Aethertrail Attunement</strong></see> ↑ (All Classes) /// <para>Aether within the body is near completely attuned to the aethertrails left by the dreadwyrm Bahamut. When attunement reaches 6, you will enter the Dreadwyrm Trance.</para> /// </summary> AethertrailAttunement_908 = 908, + /// <summary> /// <see href="https://garlandtools.org/db/#status/909"><strong>Refresh</strong></see> ↑ (All Classes) /// <para>Restoring MP over time.</para> /// </summary> Refresh = 909, + /// <summary> /// <see href="https://garlandtools.org/db/#status/910"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_910 = 910, + /// <summary> /// <see href="https://garlandtools.org/db/#status/911"><strong>Thin Ice</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon ice-covered ground.</para> /// </summary> ThinIce_911 = 911, + /// <summary> /// <see href="https://garlandtools.org/db/#status/912"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_912 = 912, + /// <summary> /// <see href="https://garlandtools.org/db/#status/913"><strong>Balance Drawn</strong></see> ↑ (All Classes) /// <para>The Balance card is drawn.</para> /// </summary> BalanceDrawn = 913, + /// <summary> /// <see href="https://garlandtools.org/db/#status/914"><strong>Bole Drawn</strong></see> ↑ (All Classes) /// <para>The Bole card is drawn.</para> /// </summary> BoleDrawn = 914, + /// <summary> /// <see href="https://garlandtools.org/db/#status/915"><strong>Arrow Drawn</strong></see> ↑ (All Classes) /// <para>The Arrow card is drawn.</para> /// </summary> ArrowDrawn = 915, + /// <summary> /// <see href="https://garlandtools.org/db/#status/916"><strong>Spear Drawn</strong></see> ↑ (All Classes) /// <para>The Spear card is drawn.</para> /// </summary> SpearDrawn = 916, + /// <summary> /// <see href="https://garlandtools.org/db/#status/917"><strong>Ewer Drawn</strong></see> ↑ (All Classes) /// <para>The Ewer card is drawn.</para> /// </summary> EwerDrawn = 917, + /// <summary> /// <see href="https://garlandtools.org/db/#status/918"><strong>Spire Drawn</strong></see> ↑ (All Classes) /// <para>The Spire card is drawn.</para> /// </summary> SpireDrawn = 918, + /// <summary> /// <see href="https://garlandtools.org/db/#status/919"><strong>Heightened Visibility</strong></see> ↑ (All Classes) /// <para>Able to see and attack concealed targets.</para> /// </summary> HeightenedVisibility = 919, + /// <summary> /// <see href="https://garlandtools.org/db/#status/920"><strong>Balance Held</strong></see> ↑ (All Classes) /// <para>The Balance card is drawn and held in your spread.</para> /// </summary> BalanceHeld = 920, + /// <summary> /// <see href="https://garlandtools.org/db/#status/921"><strong>Bole Held</strong></see> ↑ (All Classes) /// <para>The Bole card is drawn and held in your spread.</para> /// </summary> BoleHeld = 921, + /// <summary> /// <see href="https://garlandtools.org/db/#status/922"><strong>Arrow Held</strong></see> ↑ (All Classes) /// <para>The Arrow card is drawn and held in your spread.</para> /// </summary> ArrowHeld = 922, + /// <summary> /// <see href="https://garlandtools.org/db/#status/923"><strong>Spear Held</strong></see> ↑ (All Classes) /// <para>The Spear card is drawn and held in your spread.</para> /// </summary> SpearHeld = 923, + /// <summary> /// <see href="https://garlandtools.org/db/#status/924"><strong>Ewer Held</strong></see> ↑ (All Classes) /// <para>The Ewer card is drawn and held in your spread.</para> /// </summary> EwerHeld = 924, + /// <summary> /// <see href="https://garlandtools.org/db/#status/925"><strong>Spire Held</strong></see> ↑ (All Classes) /// <para>The Spire card is drawn and held in your spread.</para> /// </summary> SpireHeld = 925, + /// <summary> /// <see href="https://garlandtools.org/db/#status/926"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_926 = 926, + /// <summary> /// <see href="https://garlandtools.org/db/#status/927"><strong>Nectar</strong></see> ↓ (All Classes) /// <para>Your entire body is covered in sweet-smelling nectar.</para> /// </summary> Nectar = 927, + /// <summary> /// <see href="https://garlandtools.org/db/#status/928"><strong>Black Menace</strong></see> ↑ (All Classes) /// <para>The beast is overtaken with madness.</para> /// </summary> BlackMenace = 928, + /// <summary> /// <see href="https://garlandtools.org/db/#status/929"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_929 = 929, + /// <summary> /// <see href="https://garlandtools.org/db/#status/930"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_930 = 930, + /// <summary> /// <see href="https://garlandtools.org/db/#status/931"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown_931 = 931, + /// <summary> /// <see href="https://garlandtools.org/db/#status/932"><strong>Quarantine</strong></see> ↓ (All Classes) /// <para>You are separated from your allies.</para> /// </summary> Quarantine = 932, + /// <summary> /// <see href="https://garlandtools.org/db/#status/933"><strong>Healing Potency Down</strong></see> ↓ (All Classes) /// <para>Healing magic potency is reduced.</para> /// </summary> HealingPotencyDown_933 = 933, + /// <summary> /// <see href="https://garlandtools.org/db/#status/934"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_934 = 934, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_935 = 935, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_936 = 936, + /// <summary> /// <see href="https://garlandtools.org/db/#status/937"><strong>Unwilling Host</strong></see> ↓ (All Classes) /// <para>A parasite has entered the body and taken control of all motor skills. Parasite is passed via direct contact with other players.</para> /// </summary> UnwillingHost = 937, + /// <summary> /// <see href="https://garlandtools.org/db/#status/938"><strong>Throttle</strong></see> ↓ (All Classes) /// <para>Windpipe is crushed. KO is imminent.</para> /// </summary> Throttle_938 = 938, + /// <summary> /// <see href="https://garlandtools.org/db/#status/939"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction_939 = 939, + /// <summary> /// <see href="https://garlandtools.org/db/#status/940"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_940 = 940, + /// <summary> /// <see href="https://garlandtools.org/db/#status/941"><strong>Ranged Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to ranged attacks.</para> /// </summary> RangedResistance = 941, + /// <summary> /// <see href="https://garlandtools.org/db/#status/942"><strong>Magic Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to magic attacks.</para> /// </summary> MagicResistance = 942, + /// <summary> /// <see href="https://garlandtools.org/db/#status/943"><strong>Light of Ascalon</strong></see> ↑ (All Classes) /// <para>Strengthened by the power of the dragon's eye imbued within the holy blade.</para> /// </summary> LightOfAscalon = 943, + /// <summary> /// <see href="https://garlandtools.org/db/#status/944"><strong>Sword of the Heavens</strong></see> ↑ (All Classes) /// <para>Damage dealt by self and nearby allies is increased.</para> /// </summary> SwordOfTheHeavens = 944, + /// <summary> /// <see href="https://garlandtools.org/db/#status/945"><strong>Shield of the Heavens</strong></see> ↑ (All Classes) /// <para>Damage taken by self and all nearby allies is reduced.</para> /// </summary> ShieldOfTheHeavens = 945, + /// <summary> /// <see href="https://garlandtools.org/db/#status/946"><strong>Legs of the Spider</strong></see> ↑ (All Classes) /// <para>Physical form is changed to that of a spider.</para> /// </summary> LegsOfTheSpider = 946, + /// <summary> /// <see href="https://garlandtools.org/db/#status/947"><strong>Wings of the Raptor</strong></see> ↑ (All Classes) /// <para>Physical form is changed to that of a bird of prey.</para> /// </summary> WingsOfTheRaptor = 947, + /// <summary> /// <see href="https://garlandtools.org/db/#status/948"><strong>Shocking Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with lightning damage.</para> /// </summary> ShockingCounter = 948, + /// <summary> /// <see href="https://garlandtools.org/db/#status/949"><strong>Burning Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with fire damage.</para> /// </summary> BurningCounter = 949, + /// <summary> /// <see href="https://garlandtools.org/db/#status/950"><strong>Freezing Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with ice damage.</para> /// </summary> FreezingCounter = 950, + /// <summary> /// <see href="https://garlandtools.org/db/#status/951"><strong>Cutting Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with wind damage.</para> /// </summary> CuttingCounter = 951, + /// <summary> /// <see href="https://garlandtools.org/db/#status/952"><strong>Burying Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with earth damage.</para> /// </summary> BuryingCounter = 952, + /// <summary> /// <see href="https://garlandtools.org/db/#status/953"><strong>Drowning Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with water damage.</para> /// </summary> DrowningCounter = 953, + /// <summary> /// <see href="https://garlandtools.org/db/#status/954"><strong>Unrelenting Counter</strong></see> ↑ (All Classes) /// <para>Countering all attacks with unaspected damage.</para> /// </summary> UnrelentingCounter = 954, + /// <summary> /// <see href="https://garlandtools.org/db/#status/955"><strong>Healing Potency Up</strong></see> ↑ (All Classes) /// <para>HP restoration via healing magic is increased.</para> /// </summary> HealingPotencyUp_955 = 955, + /// <summary> /// <see href="https://garlandtools.org/db/#status/956"><strong>Wheel of Fortune</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> WheelOfFortune = 956, + /// <summary> /// <see href="https://garlandtools.org/db/#status/957"><strong>Digestive Enzymes</strong></see> ↓ (All Classes) /// <para>Corrosive enzymes cover your body, increasing damage sustained by Devoured status.</para> /// </summary> DigestiveEnzymes = 957, + /// <summary> /// <see href="https://garlandtools.org/db/#status/958"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any enemy you wander near will become marked in your stead.</para> /// </summary> Prey_958 = 958, + /// <summary> /// <see href="https://garlandtools.org/db/#status/959"><strong>Strings of the Marionette</strong></see> ↑ (All Classes) /// <para>Physical form is changed to that of a doll.</para> /// </summary> StringsOfTheMarionette = 959, + /// <summary> /// <see href="https://garlandtools.org/db/#status/960"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic_960 = 960, + /// <summary> /// <see href="https://garlandtools.org/db/#status/961"><strong>Seized</strong></see> ↓ (All Classes) /// <para>Held in a vicelike grip and cannot act. Taking damage over time.</para> /// </summary> Seized_961 = 961, + /// <summary> /// <see href="https://garlandtools.org/db/#status/962"><strong>ATK Up</strong></see> ↑ (All Classes) /// <para>ATK is increased.</para> /// </summary> AtkUp = 962, + /// <summary> /// <see href="https://garlandtools.org/db/#status/963"><strong>ATK Down</strong></see> ↓ (All Classes) /// <para>ATK is decreased.</para> /// </summary> AtkDown = 963, + /// <summary> /// <see href="https://garlandtools.org/db/#status/964"><strong>DEF Up</strong></see> ↑ (All Classes) /// <para>DEF is increased.</para> /// </summary> DefUp = 964, + /// <summary> /// <see href="https://garlandtools.org/db/#status/965"><strong>DEF Down</strong></see> ↓ (All Classes) /// <para>DEF is decreased.</para> /// </summary> DefDown = 965, + /// <summary> /// <see href="https://garlandtools.org/db/#status/966"><strong>SPD Up</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> SpdUp = 966, + /// <summary> /// <see href="https://garlandtools.org/db/#status/967"><strong>SPD Down</strong></see> ↓ (All Classes) /// <para>Movement speed is decreased.</para> /// </summary> SpdDown = 967, + /// <summary> /// <see href="https://garlandtools.org/db/#status/968"><strong>Arcana Breaker</strong></see> ↑ (All Classes) /// <para>Dealing extra damage to Arcana Stones.</para> /// </summary> ArcanaBreaker = 968, + /// <summary> /// <see href="https://garlandtools.org/db/#status/969"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_969 = 969, + /// <summary> /// <see href="https://garlandtools.org/db/#status/970"><strong>Critter Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by critter-type minions.</para> /// </summary> CritterResistance = 970, + /// <summary> /// <see href="https://garlandtools.org/db/#status/971"><strong>Monster Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by monster-type minions.</para> /// </summary> MonsterResistance = 971, + /// <summary> /// <see href="https://garlandtools.org/db/#status/972"><strong>Poppet Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by poppet-type minions.</para> /// </summary> PoppetResistance = 972, + /// <summary> /// <see href="https://garlandtools.org/db/#status/973"><strong>Gadget Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by gadget-type minions.</para> /// </summary> GadgetResistance = 973, + /// <summary> /// <see href="https://garlandtools.org/db/#status/974"><strong>Critter Vulnerability</strong></see> ↓ (All Classes) /// <para>Suffering extra damage from critter-type minions.</para> /// </summary> CritterVulnerability = 974, + /// <summary> /// <see href="https://garlandtools.org/db/#status/975"><strong>Monster Vulnerability</strong></see> ↓ (All Classes) /// <para>Suffering extra damage from monster-type minions.</para> /// </summary> MonsterVulnerability = 975, + /// <summary> /// <see href="https://garlandtools.org/db/#status/976"><strong>Poppet Vulnerability</strong></see> ↓ (All Classes) /// <para>Suffering extra damage from poppet-type minions.</para> /// </summary> PoppetVulnerability = 976, + /// <summary> /// <see href="https://garlandtools.org/db/#status/977"><strong>Forced Withdrawal</strong></see> ↓ (All Classes) /// <para>Readying withdrawal from the playing field.</para> /// </summary> ForcedWithdrawal = 977, + /// <summary> /// <see href="https://garlandtools.org/db/#status/978"><strong>ATK and DEF Up</strong></see> ↑ (All Classes) /// <para>ATK and DEF are increased.</para> /// </summary> AtkDefUp = 978, + /// <summary> /// <see href="https://garlandtools.org/db/#status/979"><strong>Damage Over Time</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> DamageOverTime = 979, + /// <summary> /// <see href="https://garlandtools.org/db/#status/980"><strong>Expanded Attack</strong></see> ↑ (All Classes) /// <para>Auto-attacks reach all nearby enemies.</para> /// </summary> ExpandedAttack = 980, + /// <summary> /// <see href="https://garlandtools.org/db/#status/981"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_981 = 981, + /// <summary> /// <see href="https://garlandtools.org/db/#status/982"><strong>Critter Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by critter-type minions.</para> /// </summary> CritterResistance_982 = 982, + /// <summary> /// <see href="https://garlandtools.org/db/#status/983"><strong>Monster Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by monster-type minions.</para> /// </summary> MonsterResistance_983 = 983, + /// <summary> /// <see href="https://garlandtools.org/db/#status/984"><strong>Poppet Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by poppet-type minions.</para> /// </summary> PoppetResistance_984 = 984, + /// <summary> /// <see href="https://garlandtools.org/db/#status/985"><strong>Gadget Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to damage dealt by gadget-type minions.</para> /// </summary> GadgetResistance_985 = 985, + /// <summary> /// <see href="https://garlandtools.org/db/#status/986"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_986 = 986, + /// <summary> /// <see href="https://garlandtools.org/db/#status/987"><strong>Trapper</strong></see> ↑ (All Classes) /// <para>Readying trap.</para> /// </summary> Trapper = 987, + /// <summary> /// <see href="https://garlandtools.org/db/#status/988"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis_988 = 988, + /// <summary> /// <see href="https://garlandtools.org/db/#status/989"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_989 = 989, + /// <summary> /// <see href="https://garlandtools.org/db/#status/990"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_990 = 990, + /// <summary> /// <see href="https://garlandtools.org/db/#status/991"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_991 = 991, + /// <summary> /// <see href="https://garlandtools.org/db/#status/992"><strong>Offense Kit</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> OffenseKit = 992, + /// <summary> /// <see href="https://garlandtools.org/db/#status/993"><strong>Defense Kit</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> DefenseKit = 993, + /// <summary> /// <see href="https://garlandtools.org/db/#status/994"><strong>Marked for Culling</strong></see> ↓ (All Classes) /// <para>Damage taken is increased. The greater the stack, the higher the increase.</para> /// </summary> MarkedForCulling = 994, + /// <summary> /// <see href="https://garlandtools.org/db/#status/995"><strong>Headache</strong></see> ↓ (All Classes) /// <para>Suffering mild head trauma. Damage dealt is reduced. Increased trauma results in a Concussion.</para> /// </summary> Headache = 995, + /// <summary> /// <see href="https://garlandtools.org/db/#status/996"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Suffering severe head trauma. Unable to act and taking increased damage.</para> /// </summary> Concussion_996 = 996, + /// <summary> /// <see href="https://garlandtools.org/db/#status/997"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Suffering severe head trauma. Unable to act and taking increased damage.</para> /// </summary> Concussion_997 = 997, + /// <summary> /// <see href="https://garlandtools.org/db/#status/998"><strong>Bigbulge Goblixer</strong></see> ↑ (All Classes) /// <para>Transformed into a sasquatch and only able to execute the action Browbeat.</para> /// </summary> BigbulgeGoblixer = 998, + /// <summary> /// <see href="https://garlandtools.org/db/#status/999"><strong>Swiftkicks Goblixer</strong></see> ↑ (All Classes) /// <para>Transformed into a vulture and only able to execute the action Wing Cutter.</para> /// </summary> SwiftkicksGoblixer = 999, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1000"><strong>Blankface Goblixer</strong></see> ↑ (All Classes) /// <para>Unable to be readily detected by sight.</para> /// </summary> BlankfaceGoblixer = 1000, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1001"><strong>Goblixer Overgulp</strong></see> ↓ (All Classes) /// <para>Overdosed on goblixers. Side effects will emerge if stack increases.</para> /// </summary> GoblixerOvergulp = 1001, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1002"><strong>Goblixer Grumblygut</strong></see> ↓ (All Classes) /// <para>Experiencing side effects from overconsumption of goblixers.</para> /// </summary> GoblixerGrumblygut = 1002, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1003"><strong>Bigbulge Biggerbrain</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while damage taken is reduced.</para> /// </summary> BigbulgeBiggerbrain = 1003, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1004"><strong>Anti-coagulant</strong></see> ↓ (All Classes) /// <para>Wounds are bleeding, causing damage over time. Overexposure to anti-coagulant will result in KO.</para> /// </summary> Anticoagulant = 1004, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1005"><strong>Force Against Might</strong></see> ↓ (All Classes) /// <para>Physical damage taken is significantly reduced while magic damage taken is significantly increased.</para> /// </summary> ForceAgainstMight = 1005, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1006"><strong>Force Against Magic</strong></see> ↓ (All Classes) /// <para>Magic damage taken is significantly reduced while physical damage taken is significantly increased.</para> /// </summary> ForceAgainstMagic = 1006, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1007"><strong>Invisible</strong></see> ↑ (All Classes) /// <para>Unable to be detected by sight.</para> /// </summary> Invisible_1007 = 1007, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1008"><strong>Nohurts Goblixer</strong></see> ↑ (All Classes) /// <para>Removing anti-coagulant from blood while regenerating HP over time.</para> /// </summary> NohurtsGoblixer = 1008, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1009"><strong>Road to Toad</strong></see> ↓ (All Classes) /// <para>Slowly transforming into a toad. Process accelerates as stack increases.</para> /// </summary> RoadToToad = 1009, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1010"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1010 = 1010, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1011"><strong>Concentrated Poison</strong></see> ↓ (All Classes) /// <para>Powerful poison is slowly draining HP while HP recovery via healing magic and actions is reduced.</para> /// </summary> ConcentratedPoison_1011 = 1011, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1012"><strong>High Wire</strong></see> ↑ (All Classes) /// <para>Heightened excitement is causing actions to become erratic.</para> /// </summary> HighWire = 1012, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1013"><strong>Reverse</strong></see> ↑ (All Classes) /// <para>The effects of white magicks have been reversed from beneficial to corrupting.</para> /// </summary> Reverse = 1013, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1014"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_1014 = 1014, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1015"><strong>Seed of Life</strong></see> ↑ (All Classes) /// <para>Each stacked seed staves off the hands of death.</para> /// </summary> SeedOfLife = 1015, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1016"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_1016 = 1016, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1017"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp_1017 = 1017, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1018"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp_1018 = 1018, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1019"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp_1019 = 1019, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1020"><strong>Allied Arithmeticks</strong></see> ↑ (All Classes) /// <para>Increasing attributes by an amount calculated using the number of nearby allies.</para> /// </summary> AlliedArithmeticks = 1020, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1021"><strong>Low Arithmeticks</strong></see> ↓ (All Classes) /// <para>Vulnerable to damage while on low ground.</para> /// </summary> LowArithmeticks = 1021, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1022"><strong>High Arithmeticks</strong></see> ↓ (All Classes) /// <para>Vulnerable to damage while on high ground.</para> /// </summary> HighArithmeticks = 1022, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1023"><strong>Compressed Water</strong></see> ↓ (All Classes) /// <para>Highly compressed aetherial energy covers the body. Water-aspected damage dealt when effect ends.</para> /// </summary> CompressedWater = 1023, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1024"><strong>Compressed Lightning</strong></see> ↓ (All Classes) /// <para>Highly compressed aetherial energy covers the body. Lightning-aspected damage dealt when effect ends.</para> /// </summary> CompressedLightning = 1024, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1025"><strong>Water Resistance Down II</strong></see> ↓ (All Classes) /// <para>Water resistance is significantly reduced.</para> /// </summary> WaterResistanceDownIi = 1025, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1026"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi = 1026, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1027"><strong>Final Punishment</strong></see> ↓ (All Classes) /// <para>Sentenced to public flogging. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalPunishment = 1027, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1028"><strong>Direct Attack</strong></see> ↑ (All Classes) /// <para>Able to directly attack the target.</para> /// </summary> DirectAttack = 1028, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1029"><strong>Final Decree Nisi A</strong></see> ↓ (All Classes) /// <para>Decree Nisi A is issued.</para> /// </summary> FinalDecreeNisiA = 1029, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1030"><strong>Final Decree Nisi B</strong></see> ↓ (All Classes) /// <para>Decree Nisi B is issued.</para> /// </summary> FinalDecreeNisiB = 1030, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1031"><strong>Final Judgment: Max HP</strong></see> ↓ (All Classes) /// <para>Sentenced to receive increased HP. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentMaxHp = 1031, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1032"><strong>Final Judgment: Min HP</strong></see> ↓ (All Classes) /// <para>Sentenced to receive reduced HP. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentMinHp = 1032, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1033"><strong>Final Judgment: Penalty I</strong></see> ↓ (All Classes) /// <para>Sentenced to receive enfeeblement I. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentPenaltyI = 1033, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1034"><strong>Final Judgment: Penalty II</strong></see> ↓ (All Classes) /// <para>Sentenced to receive enfeeblement II. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentPenaltyIi = 1034, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1035"><strong>Final Judgment: Penalty III</strong></see> ↓ (All Classes) /// <para>Sentenced to receive enfeeblement III. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentPenaltyIii = 1035, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1036"><strong>Final Judgment: Decree Nisi A</strong></see> ↓ (All Classes) /// <para>Sentenced to receive Decree Nisi A. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentDecreeNisiA = 1036, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1037"><strong>Final Judgment: Decree Nisi B</strong></see> ↓ (All Classes) /// <para>Sentenced to receive Decree Nisi B. Refusal to serve sentence will result in additional punishment.</para> /// </summary> FinalJudgmentDecreeNisiB = 1037, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1038"><strong>Final Flight</strong></see> ↓ (All Classes) /// <para>Damage taken from J Storm is increased.</para> /// </summary> FinalFlight = 1038, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1039"><strong>Brilliant Conviction</strong></see> ↑ (All Classes) /// <para>Breaking limits as only a true Warrior of Light could.</para> /// </summary> BrilliantConviction = 1039, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1040"><strong>Brilliant Conviction</strong></see> ↑ (All Classes) /// <para>Breaking limits as only a true Warrior of Light could.</para> /// </summary> BrilliantConviction_1040 = 1040, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1041"><strong>Brilliant Conviction</strong></see> ↑ (All Classes) /// <para>Breaking limits as only a true Warrior of Light could.</para> /// </summary> BrilliantConviction_1041 = 1041, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1042"><strong>Direct Attack</strong></see> ↑ (All Classes) /// <para>Able to directly attack the target.</para> /// </summary> DirectAttack_1042 = 1042, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1043"><strong>Direct Attack</strong></see> ↑ (All Classes) /// <para>Able to directly attack the target.</para> /// </summary> DirectAttack_1043 = 1043, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1044"><strong>Magnetic Levitation</strong></see> ↑ (All Classes) /// <para>Hovering above the ground.</para> /// </summary> MagneticLevitation = 1044, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1045"><strong>Gradual Zombification</strong></see> ↓ (All Classes) /// <para>Slowly transforming into a brain-craving zombie.</para> /// </summary> GradualZombification = 1045, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1046"><strong>Concentrated Poison</strong></see> ↓ (All Classes) /// <para>Powerful poison is slowly draining HP while HP recovery via healing magic is reduced.</para> /// </summary> ConcentratedPoison_1046 = 1046, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1047"><strong>Confused</strong></see> ↓ (All Classes) /// <para>Attacking allies instead of the enemy.</para> /// </summary> Confused_1047 = 1047, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1048"><strong>Direct Attack</strong></see> ↑ (All Classes) /// <para>Able to directly attack the target.</para> /// </summary> DirectAttack_1048 = 1048, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1049"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic_1049 = 1049, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1050"><strong>EXP Bonus</strong></see> ↑ (All Classes) /// <para>Receiving a mentor/new adventurer/returner party bonus.</para> /// </summary> ExpBonus = 1050, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1051"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_1051 = 1051, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1052"><strong>Wind Resistance Down II</strong></see> ↓ (All Classes) /// <para>Wind resistance is significantly reduced.</para> /// </summary> WindResistanceDownIi = 1052, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1053"><strong>Earth Resistance Down II</strong></see> ↓ (All Classes) /// <para>Earth resistance is significantly reduced.</para> /// </summary> EarthResistanceDownIi = 1053, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1054"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1054 = 1054, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1055"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1055 = 1055, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1056"><strong>Mimic</strong></see> ↑ (All Classes) /// <para>Repeating any ability or item used by forerunning chocobos.</para> /// </summary> Mimic = 1056, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1057"><strong>Feather Field</strong></see> ↑ (All Classes) /// <para>Effects inflicted by other chocobos' fields are nullified.</para> /// </summary> FeatherField = 1057, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1058"><strong>Super Sprint</strong></see> ↑ (All Classes) /// <para>Sprinting until all stamina is spent.</para> /// </summary> SuperSprint = 1058, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1059"><strong>Enervation</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced and damage taken is increased.</para> /// </summary> Enervation_1059 = 1059, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1060"><strong>Silence</strong></see> ↓ (All Classes) /// <para>A stifling magic is preventing casts.</para> /// </summary> Silence_1060 = 1060, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1061"><strong>Priority Aetheryte Pass</strong></see> ↑ (All Classes) /// <para>Aetheryte teleportation fees are reduced.</para> /// </summary> PriorityAetherytePass = 1061, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1062"><strong>Heavy Medal</strong></see> ↓ (All Classes) /// <para>The weight of medals collected is hampering faculty to fend off attacks. The higher the stack, the more damage taken.</para> /// </summary> HeavyMedal = 1062, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1063"><strong>Healing Potency Down</strong></see> ↓ (All Classes) /// <para>Healing magic potency is reduced.</para> /// </summary> HealingPotencyDown_1063 = 1063, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1064"><strong>Off-balance</strong></see> ↓ (All Classes) /// <para>The next attack suffered will result in knockback.</para> /// </summary> Offbalance = 1064, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1065"><strong>Brand of the Fallen</strong></see> ↓ (All Classes) /// <para>Damage taken is increased the further those branded are from each other.</para> /// </summary> BrandOfTheFallen = 1065, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1066"><strong>Bitter Hate</strong></see> ↓ (All Classes) /// <para>Suffering the mind-rending effects of Nidhogg's raw fury. A stack of 8 will result in extreme damage.</para> /// </summary> BitterHate = 1066, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1067"><strong>Dirty Venom</strong></see> ↓ (All Classes) /// <para>Dark poisons course through your veins, reducing damage dealt and maximum HP.</para> /// </summary> DirtyVenom = 1067, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1068"><strong>Assimilation</strong></see> ↓ (All Classes) /// <para>Eye contact with the enemy is resulting in gradual assimilation of body and mind.</para> /// </summary> Assimilation = 1068, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1069"><strong>Assimilated</strong></see> ↓ (All Classes) /// <para>Completely assimilated with the enemy.</para> /// </summary> Assimilated = 1069, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1070"><strong>Cube</strong></see> ↑ (All Classes) /// <para>Damage taken is decreased.</para> /// </summary> Cube = 1070, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1071"><strong>Pyramid</strong></see> ↑ (All Classes) /// <para>Evasion is increased.</para> /// </summary> Pyramid = 1071, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1072"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb = 1072, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1073"><strong>Digestive Fluid</strong></see> ↓ (All Classes) /// <para>Highly corrosive acid is reducing movement speed while causing damage over time.</para> /// </summary> DigestiveFluid = 1073, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1074"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_1074 = 1074, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1075"><strong>Heart of Man</strong></see> ↑ (All Classes) /// <para>Nidhogg has taken the form of a man.</para> /// </summary> HeartOfMan = 1075, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1076"><strong>Heart of Dragon</strong></see> ↑ (All Classes) /// <para>Nidhogg has taken his true form.</para> /// </summary> HeartOfDragon = 1076, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1077"><strong>Lightning Chain</strong></see> ↓ (All Classes) /// <para>Bound by searing chains causing damage over time.</para> /// </summary> LightningChain = 1077, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1078"><strong>Priority Seal Allowance</strong></see> ↑ (All Classes) /// <para>Company seals earned are increased.</para> /// </summary> PrioritySealAllowance = 1078, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1079"><strong>Gold Saucer VIP Card</strong></see> ↑ (All Classes) /// <para>MGP earned at Gold Saucer attractions is increased.</para> /// </summary> GoldSaucerVipCard = 1079, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1080"><strong>Squadron Battle Manual</strong></see> ↑ (All Classes) /// <para>EXP earned through battle is increased.</para> /// </summary> SquadronBattleManual = 1080, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1081"><strong>Squadron Survival Manual</strong></see> ↑ (All Classes) /// <para>EXP earned through gathering is increased.</para> /// </summary> SquadronSurvivalManual = 1081, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1082"><strong>Squadron Engineering Manual</strong></see> ↑ (All Classes) /// <para>EXP earned through crafting is increased.</para> /// </summary> SquadronEngineeringManual = 1082, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1083"><strong>Squadron Spiritbonding Manual</strong></see> ↑ (All Classes) /// <para>Spiritbonding speed is increased.</para> /// </summary> SquadronSpiritbondingManual = 1083, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1084"><strong>Rationing</strong></see> ↑ (All Classes) /// <para>Food effect duration is increased.</para> /// </summary> Rationing = 1084, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1085"><strong>Squadron Gear Maintenance Manual</strong></see> ↑ (All Classes) /// <para>Gear wear is reduced.</para> /// </summary> SquadronGearMaintenanceManual = 1085, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1086"><strong>Squadron Enlistment Manual</strong></see> ↑ (All Classes) /// <para>Squadron recruit enlistment chance is increased.</para> /// </summary> SquadronEnlistmentManual = 1086, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1087"><strong>Accursed Pox</strong></see> ↓ (All Classes) /// <para>Humours are corrupted, causing damage over time. HP regeneration has also stopped and damage dealt is reduced.</para> /// </summary> AccursedPox = 1087, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1088"><strong>Blind</strong></see> ↓ (All Classes) /// <para>Encroaching darkness is lowering accuracy.</para> /// </summary> Blind_1088 = 1088, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1089"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is decreased.</para> /// </summary> HpPenalty_1089 = 1089, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1090"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_1090 = 1090, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1091"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_1091 = 1091, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1092"><strong>Amnesia</strong></see> ↓ (All Classes) /// <para>Unable to use abilities.</para> /// </summary> Amnesia_1092 = 1092, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1093"><strong>HP and MP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP and MP are increased.</para> /// </summary> HpMpBoost_1093 = 1093, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1094"><strong>Item Penalty</strong></see> ↓ (All Classes) /// <para>Unable to use normal items or certain dungeon-specific items.</para> /// </summary> ItemPenalty = 1094, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1095"><strong>Sprint Penalty</strong></see> ↓ (All Classes) /// <para>Unable to sprint.</para> /// </summary> SprintPenalty = 1095, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1096"><strong>Knockback Penalty</strong></see> ↓ (All Classes) /// <para>Unable to use knockback and draw-in effects.</para> /// </summary> KnockbackPenalty = 1096, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1097"><strong>Auto-heal Penalty</strong></see> ↓ (All Classes) /// <para>HP regeneration has stopped.</para> /// </summary> AutohealPenalty = 1097, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1098"><strong>Aetherial Surge</strong></see> ↓ (All Classes) /// <para>Releasing excess aether.</para> /// </summary> AetherialSurge = 1098, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1099"><strong>Healing Potency Up</strong></see> ↑ (All Classes) /// <para>HP restoration via healing magic is increased.</para> /// </summary> HealingPotencyUp_1099 = 1099, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1100"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_1100 = 1100, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1101"><strong>Toad</strong></see> ↓ (All Classes) /// <para>Transformed into a toad.</para> /// </summary> Toad_1101 = 1101, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1102"><strong>Chicken</strong></see> ↓ (All Classes) /// <para>Transformed into a chicken.</para> /// </summary> Chicken_1102 = 1102, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1103"><strong>Imp</strong></see> ↓ (All Classes) /// <para>Transformed into an imp.</para> /// </summary> Imp_1103 = 1103, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1104"><strong>Obfuscated</strong></see> ↑ (All Classes) /// <para>An obfuscation charm is hiding you from enemies.</para> /// </summary> Obfuscated = 1104, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1105"><strong>Pumpkin</strong></see> ↓ (All Classes) /// <para>Transformed into a pumpkin.</para> /// </summary> Pumpkin = 1105, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1106"><strong>Obfuscated</strong></see> ↑ (All Classes) /// <para>Hidden from enemies.</para> /// </summary> Obfuscated_1106 = 1106, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1107"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_1107 = 1107, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1108"><strong>Hidden</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> Hidden_1108 = 1108, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1109"><strong>Impervious</strong></see> ↑ (All Classes) /// <para>Impervious to all but select attacks.</para> /// </summary> Impervious = 1109, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1110"><strong>Clawbound</strong></see> ↓ (All Classes) /// <para>Your body is bound to Nidhogg's claw. Any damage taken also results in damage to the claw.</para> /// </summary> Clawbound = 1110, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1111"><strong>Fangbound</strong></see> ↓ (All Classes) /// <para>Your body is bound to Nidhogg's fang. Any damage taken heals the fang.</para> /// </summary> Fangbound = 1111, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1112"><strong>Movement Speed Up</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> MovementSpeedUp_1112 = 1112, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1113"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction_1113 = 1113, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1114"><strong>Disease</strong></see> ↓ (All Classes) /// <para>Movement speed and HP recovery via healing magic are reduced.</para> /// </summary> Disease_1114 = 1114, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1115"><strong>Eternal Doom</strong></see> ↓ (All Classes) /// <para>Zombification when counter reaches zero or upon KO. KO does not remove zombification.</para> /// </summary> EternalDoom = 1115, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1116"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_1116 = 1116, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1117"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_1117 = 1117, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1118"><strong>Passenger</strong></see> ↑ (All Classes) /// <para>Riding a moving object.</para> /// </summary> Passenger = 1118, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1119"><strong>Temporal Displacement</strong></see> ↓ (All Classes) /// <para>Time is stopped.</para> /// </summary> TemporalDisplacement_1119 = 1119, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1120"><strong>Defamation</strong></see> ↓ (All Classes) /// <para>You are convicted with defamation.</para> /// </summary> Defamation = 1120, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1121"><strong>Aggravated Assault</strong></see> ↓ (All Classes) /// <para>You are convicted with aggravated assault.</para> /// </summary> AggravatedAssault = 1121, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1122"><strong>Shared Sentence</strong></see> ↓ (All Classes) /// <para>You are convicted for a crime committed by you and your peers.</para> /// </summary> SharedSentence = 1122, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1123"><strong>House Arrest</strong></see> ↓ (All Classes) /// <para>You are ordered to remain bound to another party.</para> /// </summary> HouseArrest = 1123, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1124"><strong>Restraining Order</strong></see> ↓ (All Classes) /// <para>You are ordered to remain separated from another party.</para> /// </summary> RestrainingOrder = 1124, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1125"><strong>Directional Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage taken from a certain direction.</para> /// </summary> DirectionalInvincibility = 1125, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1126"><strong>Main Hull Reassembly</strong></see> ↓ (All Classes) /// <para>Repairing main hull.</para> /// </summary> MainHullReassembly = 1126, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1127"><strong>Right Arm Reassembly</strong></see> ↓ (All Classes) /// <para>Repairing right arm.</para> /// </summary> RightArmReassembly = 1127, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1128"><strong>Left Arm Reassembly</strong></see> ↓ (All Classes) /// <para>Repairing left arm.</para> /// </summary> LeftArmReassembly = 1128, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1129"><strong>Main Hull Operational</strong></see> ↑ (All Classes) /// <para>Main hull repaired and operational.</para> /// </summary> MainHullOperational = 1129, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1130"><strong>Right Arm Operational</strong></see> ↑ (All Classes) /// <para>Right arm repaired and operational.</para> /// </summary> RightArmOperational = 1130, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1131"><strong>Left Arm Operational</strong></see> ↑ (All Classes) /// <para>Left arm repaired and operational.</para> /// </summary> LeftArmOperational = 1131, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1132"><strong>Extreme Caution</strong></see> ↓ (All Classes) /// <para>A penalty will be assessed for any action, auto-attack, or movement taken after status ends.</para> /// </summary> ExtremeCaution = 1132, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1133"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic_1133 = 1133, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1134"><strong>Imp</strong></see> ↓ (All Classes) /// <para>Transformed into an imp and unable to execute actions.</para> /// </summary> Imp_1134 = 1134, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1135"><strong>Sunseal</strong></see> ↓ (All Classes) /// <para>Marked with the sunseal.</para> /// </summary> Sunseal = 1135, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1136"><strong>Moonseal</strong></see> ↓ (All Classes) /// <para>Marked with the moonseal.</para> /// </summary> Moonseal = 1136, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1137"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) /// <para>Fire resistance is significantly reduced.</para> /// </summary> FireResistanceDownIi = 1137, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1138"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_1138 = 1138, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1139"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp_1139 = 1139, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1140"><strong>Raise</strong></see> ↑ (All Classes) /// <para>Teetering on the brink of consciousness.</para> /// </summary> Raise_1140 = 1140, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1141"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_1141 = 1141, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1142"><strong>Aetherial Surge</strong></see> ↓ (All Classes) /// <para>Releasing excess aether.</para> /// </summary> AetherialSurge_1142 = 1142, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1143"><strong>Infinite Fire</strong></see> ↓ (All Classes) /// <para>Marked with fire.</para> /// </summary> InfiniteFire = 1143, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1144"><strong>Infinite Ice</strong></see> ↓ (All Classes) /// <para>Marked with ice.</para> /// </summary> InfiniteIce = 1144, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1145"><strong>Keen Edge</strong></see> ↑ (All Classes) /// <para>Sustaining damage over time in exchange for dealing increased damage to targets.</para> /// </summary> KeenEdge = 1145, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1146"><strong>Riled</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased and restoring HP over time.</para> /// </summary> Riled = 1146, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1147"><strong>Shadow Links</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time. Movement speed is also decreased.</para> /// </summary> ShadowLinks = 1147, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1148"><strong>Shadow Limb</strong></see> ↑ (All Classes) /// <para>A shadowy appendage has sprouted from Scathach's body.</para> /// </summary> ShadowLimb = 1148, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1149"><strong>Wolf's Heart Kit</strong></see> ↑ (All Classes) /// <para>Movement speed is increased while restoring MP over time.</para> /// </summary> WolfsHeartKit = 1149, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1150"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_1150 = 1150, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1151"><strong>Fae Cloak</strong></see> ↑ (All Classes) /// <para>An enchantment is preventing detection by fae creatures.</para> /// </summary> FaeCloak = 1151, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1152"><strong>Darksight</strong></see> ↑ (All Classes) /// <para>Able to see with little illumination.</para> /// </summary> Darksight = 1152, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1153"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Fetters_1153 = 1153, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1154"><strong>Beastking's Boon</strong></see> ↑ (All Classes) /// <para>Receiving the boon of the Beastking, Buer.</para> /// </summary> BeastkingsBoon = 1154, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1155"><strong>Aetherial Enhancement</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> AetherialEnhancement = 1155, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1156"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp_1156 = 1156, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1157"><strong>Water Resistance Down II</strong></see> ↓ (All Classes) /// <para>Water resistance is significantly reduced.</para> /// </summary> WaterResistanceDownIi_1157 = 1157, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1158"><strong>Nose for Battle</strong></see> ↑ (All Classes) /// <para>Detecting a skirmish nearby.</para> /// </summary> NoseForBattle = 1158, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1159"><strong>Infinite Anguish</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time and damage taken from attacks is increased.</para> /// </summary> InfiniteAnguish = 1159, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1160"><strong>Enfeebled</strong></see> ↓ (All Classes) /// <para>Enfeebling elixir has corrupted the humours, causing damage over time.</para> /// </summary> Enfeebled = 1160, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1161"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1161 = 1161, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1162"><strong>Infinite Anguish</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time and damage taken from attacks is increased.</para> /// </summary> InfiniteAnguish_1162 = 1162, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1163"><strong>Stroke of Genius</strong></see> ↑ (Disciple of the Hand) /// <para>Maximum CP is increased by 15.</para> /// </summary> StrokeOfGenius = 1163, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1164"><strong>Manipulation</strong></see> ↑ (Disciple of the Hand) /// <para>Receiving 5 points of durability after each step.</para> /// </summary> Manipulation_1164 = 1164, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1165"><strong>Initial Preparations</strong></see> ↑ (Disciple of the Hand) /// <para>CP consumption may be reduced.</para> /// </summary> InitialPreparations = 1165, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1166"><strong>Fathom</strong></see> ↑ (All Classes) /// <para>Able to locate teeming waters suitable for spearfishing.</para> /// </summary> Fathom = 1166, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1167"><strong>Shark Eye</strong></see> ↑ (All Classes) /// <para>Surveying the waters for the nearest teeming waters.</para> /// </summary> SharkEye = 1167, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1168"><strong>Shark Eye II</strong></see> ↑ (All Classes) /// <para>Surveying the waters for the highest-level teeming waters.</para> /// </summary> SharkEyeIi = 1168, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1169"><strong>Veteran Trade</strong></see> ↑ (All Classes) /// <para>Fish of a certain type are now aware of your presence and have left the area.</para> /// </summary> VeteranTrade = 1169, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1170"><strong>Bountiful Catch</strong></see> ↑ (All Classes) /// <para>Number of items obtained on your next gigging attempt is increased.</para> /// </summary> BountifulCatch = 1170, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1171"><strong>Nature's Bounty</strong></see> ↑ (All Classes) /// <para>Chance of landing large-sized fish is increased.</para> /// </summary> NaturesBounty = 1171, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1172"><strong>Salvage</strong></see> ↑ (All Classes) /// <para>Able to discover treasure maps.</para> /// </summary> Salvage = 1172, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1173"><strong>Truth of Oceans</strong></see> ↑ (All Classes) /// <para>Able to locate swimming shadows.</para> /// </summary> TruthOfOceans = 1173, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1174"><strong>Intervention</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> Intervention = 1174, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1175"><strong>Passage of Arms</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> PassageOfArms = 1175, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1176"><strong>Arms Up</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> ArmsUp = 1176, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1177"><strong>Inner Release</strong></see> ↑ (All Classes) /// <para>Beast Gauge consumption for Fell Cleave and Decimate is reduced to 0. Attacks with these weaponskills are guaranteed critical and direct hits. Damage dealt when under an effect that raises critical hit rate or direct hit rate is increased.</para> /// </summary> InnerRelease = 1177, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1178"><strong>Blackest Night</strong></see> ↑ (DRK) /// <para>An all-encompassing darkness is nullifying damage.</para> /// </summary> BlackestNight = 1178, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1179"><strong>Riddle of Earth</strong></see> ↑ (MNK) /// <para>Contemplating the riddle of earth. Damage taken is reduced.</para> /// </summary> RiddleOfEarth = 1179, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1180"><strong>Earth's Resolve</strong></see> ↑ (MNK) /// <para>Regenerating HP over time.</para> /// </summary> EarthsResolve = 1180, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1181"><strong>Riddle of Fire</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> RiddleOfFire = 1181, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1182"><strong>Meditative Brotherhood</strong></see> ↑ (MNK) /// <para>Grants chance to open a chakra to the monk who applied the effect when you or party members under this effect successfully land a weaponskill or cast a spell.</para> /// </summary> MeditativeBrotherhood = 1182, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1183"><strong>Right Eye</strong></see> ↑ (DRG) /// <para>Damage dealt is increased.</para> /// </summary> RightEye = 1183, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1184"><strong>Left Eye</strong></see> ↑ (DRG) /// <para>Damage dealt is increased.</para> /// </summary> LeftEye = 1184, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1185"><strong>Brotherhood</strong></see> ↑ (MNK) /// <para>Damage dealt is increased.</para> /// </summary> Brotherhood = 1185, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1186"><strong>Ten Chi Jin</strong></see> ↑ (All Classes) /// <para>Able to execute ninjutsu in succession.</para> /// </summary> TenChiJin = 1186, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1187"><strong>Troubadour's Ballad</strong></see> ↑ (BRD) /// <para>Maximum HP is increased.</para> /// </summary> TroubadoursBallad = 1187, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1188"><strong>Critical Up</strong></see> ↑ (BRD) /// <para>Critical hit rate is increased.</para> /// </summary> CriticalUp = 1188, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1189"><strong>Troubadour's Paeon</strong></see> ↑ (BRD) /// <para>Physical damage taken is reduced.</para> /// </summary> TroubadoursPaeon = 1189, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1190"><strong>Troubadour's Minuet</strong></see> ↑ (BRD) /// <para>Magic damage taken is reduced.</para> /// </summary> TroubadoursMinuet = 1190, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1191"><strong>Rampart</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced and HP recovery via healing actions is increased and HP recovery via healing actions is increased and HP recovery via healing actions is increased and HP recovery via healing actions is increased and HP recovery via healing actions is increased and HP recovery via healing actions is increased.</para> /// </summary> Rampart_1191 = 1191, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1192"><strong>Convalescence</strong></see> ↑ (All Classes) /// <para>HP recovery via healing magic is increased.</para> /// </summary> Convalescence_1192 = 1192, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1193"><strong>Reprisal</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Reprisal_1193 = 1193, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1194"><strong>Anticipation</strong></see> ↑ (All Classes) /// <para>Chance to parry is increased.</para> /// </summary> Anticipation = 1194, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1195"><strong>Feint</strong></see> ↓ (All Classes) /// <para>Physical and magic damage are reduced.</para> /// </summary> Feint = 1195, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1196"><strong>Palisade</strong></see> ↑ (ARC BRD MCH DNC) /// <para>Physical damage taken is reduced.</para> /// </summary> Palisade = 1196, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1197"><strong>Tactician</strong></see> ↑ (ARC BRD MCH DNC) /// <para>Gradually regenerating TP.</para> /// </summary> Tactician = 1197, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1198"><strong>Refresh</strong></see> ↑ (ARC BRD MCH DNC) /// <para>Restoring MP over time.</para> /// </summary> Refresh_1198 = 1198, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1199"><strong>Peloton</strong></see> ↑ (ARC BRD MCH DNC) /// <para>Movement speed is increased. Effect ends upon entering battle.</para> /// </summary> Peloton = 1199, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1200"><strong>Caustic Bite</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> CausticBite = 1200, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1201"><strong>Stormbite</strong></see> ↓ (All Classes) /// <para>Wounds are exposed to the elements, causing wind damage over time.</para> /// </summary> Stormbite = 1201, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1202"><strong>Nature's Minne</strong></see> ↑ (BRD) /// <para>HP recovery via healing actions is increased.</para> /// </summary> NaturesMinne = 1202, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1203"><strong>Addle</strong></see> ↓ (All Classes) /// <para>Physical and magic damage are reduced.</para> /// </summary> Addle = 1203, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1204"><strong>Lucid Dreaming</strong></see> ↑ (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE PCT) /// <para>Restoring MP over time.</para> /// </summary> LucidDreaming = 1204, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1205"><strong>Flamethrower</strong></see> ↑ (All Classes) /// <para>Emitting a gout of searing flames in a cone before you, dealing damage over time.</para> /// </summary> Flamethrower = 1205, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1206"><strong>Wheel of Fortune</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> WheelOfFortune_1206 = 1206, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1207"><strong>Largesse</strong></see> ↑ (CNJ WHM SCH AST SGE) /// <para>HP restoration via healing magic is increased.</para> /// </summary> Largesse = 1207, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1208"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1208 = 1208, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1209"><strong>Arm's Length</strong></see> ↑ (All Classes) /// <para>Slowing enemies struck by physical attacks. Immune to most knockback and draw-in effects.</para> /// </summary> ArmsLength = 1209, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1210"><strong>Thunder IV</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> ThunderIv = 1210, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1211"><strong>Triplecast</strong></see> ↑ (All Classes) /// <para>Spells require no time to cast.</para> /// </summary> Triplecast = 1211, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1212"><strong>Further Ruin</strong></see> ↑ (All Classes) /// <para>Able to cast Ruin IV.</para> /// </summary> FurtherRuin = 1212, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1213"><strong>Devotion</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> Devotion = 1213, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1214"><strong>Bio III</strong></see> ↓ (All Classes) /// <para>Contagions are spreading, causing damage over time.</para> /// </summary> BioIii = 1214, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1215"><strong>Miasma III</strong></see> ↓ (All Classes) /// <para>Lungs are failing, causing damage over time.</para> /// </summary> MiasmaIii = 1215, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1216"><strong>Load-bearing</strong></see> ↓ (All Classes) /// <para>Carrying a weighty burden and growing wearier with each passing second.</para> /// </summary> Loadbearing = 1216, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1217"><strong>Thin Air</strong></see> ↑ (All Classes) /// <para>Next spell cast consumes no MP.</para> /// </summary> ThinAir = 1217, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1218"><strong>Divine Benison</strong></see> ↑ (WHM) /// <para>A holy blessing from the gods is nullifying damage.</para> /// </summary> DivineBenison = 1218, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1219"><strong>Confession</strong></see> ↑ (WHM) /// <para>Sins are confessed. Additional HP is recovered when receiving the healing effect of certain spells cast by the white mage who granted this effect.</para> /// </summary> Confession = 1219, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1220"><strong>Excogitation</strong></see> ↑ (SCH) /// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> /// </summary> Excogitation = 1220, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1221"><strong>Chain Stratagem</strong></see> ↓ (All Classes) /// <para>Rate at which critical hits are taken is increased.</para> /// </summary> ChainStratagem = 1221, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1222"><strong>Fey Union</strong></see> ↑ (All Classes) /// <para>Allowing regeneration of HP over time.</para> /// </summary> FeyUnion = 1222, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1223"><strong>Fey Union</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> FeyUnion_1223 = 1223, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1224"><strong>Earthly Dominance</strong></see> ↑ (All Classes) /// <para>An earthly star is in your control.</para> /// </summary> EarthlyDominance = 1224, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1225"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1225 = 1225, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1226"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_1226 = 1226, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1227"><strong>Yukikaze</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> Yukikaze = 1227, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1228"><strong>Higanbana</strong></see> ↓ (All Classes) /// <para>Open wounds are bleeding, causing damage over time.</para> /// </summary> Higanbana = 1228, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1229"><strong>Kaiten</strong></see> ↑ (All Classes) /// <para>Next weaponskill will deal increased damage.</para> /// </summary> Kaiten = 1229, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1230"><strong>Recuperation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Recuperation_1230 = 1230, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1231"><strong>Meditate</strong></see> ↑ (All Classes) /// <para>Storing Kenki.</para> /// </summary> Meditate = 1231, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1232"><strong>Third Eye</strong></see> ↑ (All Classes) /// <para>Next damage taken is reduced.</para> /// </summary> ThirdEye = 1232, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1233"><strong>Meikyo Shisui</strong></see> ↑ (All Classes) /// <para>Combo prerequisites are met.</para> /// </summary> MeikyoShisui = 1233, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1234"><strong>Verfire Ready</strong></see> ↑ (All Classes) /// <para>Able to cast Verfire.</para> /// </summary> VerfireReady = 1234, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1235"><strong>Verstone Ready</strong></see> ↑ (All Classes) /// <para>Able to cast Verstone.</para> /// </summary> VerstoneReady = 1235, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1236"><strong>Enhanced Enpi</strong></see> ↑ (All Classes) /// <para>Next Enpi will deal increased damage.</para> /// </summary> EnhancedEnpi = 1236, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1237"><strong>Enhanced Scatter</strong></see> ↑ (All Classes) /// <para>Next Scatter will store increased black and white mana.</para> /// </summary> EnhancedScatter = 1237, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1238"><strong>Acceleration</strong></see> ↑ (All Classes) /// <para>Next Verthunder III, Veraero IIIVerthunder, VeraeroVerthunder, Veraero, or ImpactScatterScatter can be cast immediately.</para> /// <para>Potency of ImpactScatterScatter is increased, and Verthunder III and Veraero IIIVerthunder and VeraeroVerthunder and Veraero trigger Verfire Ready or Verstone Ready respectively.</para> /// </summary> Acceleration = 1238, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1239"><strong>Embolden</strong></see> ↑ (RDM) /// <para>Magic damage dealt is increased.</para> /// </summary> Embolden = 1239, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1240"><strong>Chiten</strong></see> ↑ (SAM) /// <para>Damage taken is reduced while countering attacks.</para> /// </summary> Chiten = 1240, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1241"><strong>Monomachy</strong></see> ↑ (All Classes) /// <para>Damage dealt to target is increased while damage taken from target is reduced.</para> /// </summary> Monomachy = 1241, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1242"><strong>Monomachy</strong></see> ↓ (All Classes) /// <para>Damage dealt to target red mage is decreased while damage taken from target red mage is increased.</para> /// </summary> Monomachy_1242 = 1242, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1243"><strong>Dive Ready</strong></see> ↑ (All Classes) /// <para>Able to execute Mirage Dive.</para> /// </summary> DiveReady = 1243, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1244"><strong>Riddle of Wind</strong></see> ↑ (All Classes) /// <para>Able to execute Riddle of Wind.</para> /// </summary> RiddleOfWind = 1244, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1245 = 1245, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1246 = 1246, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1247"><strong>Diurnal Balance</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalBalance = 1247, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1248"><strong>Giant Dominance</strong></see> ↑ (All Classes) /// <para>An earthly star is in your control.</para> /// </summary> GiantDominance = 1248, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1249"><strong>Dualcast</strong></see> ↑ (All Classes) /// <para>Next spell will require no time to cast.</para> /// </summary> Dualcast = 1249, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1250"><strong>True North</strong></see> ↑ (All Classes) /// <para>All action direction requirements are nullified.</para> /// </summary> TrueNorth = 1250, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1251"><strong>Turret Reset</strong></see> ↓ (All Classes) /// <para>Unable to deploy turrets.</para> /// </summary> TurretReset = 1251, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1252"><strong>Eyes Open</strong></see> ↑ (All Classes) /// <para>Succeeded at opening the Third Eye.</para> /// </summary> EyesOpen = 1252, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1253"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_1253 = 1253, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1254"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_1254 = 1254, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1255"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) /// <para>Fire resistance is significantly reduced.</para> /// </summary> FireResistanceDownIi_1255 = 1255, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1256"><strong>Wounded</strong></see> ↓ (All Classes) /// <para>Severe wounds are reducing damage dealt while increasing damage taken by certain attacks.</para> /// </summary> Wounded = 1256, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1257"><strong>Forced March</strong></see> ↓ (All Classes) /// <para>Advancing in the ordered direction.</para> /// </summary> ForcedMarch = 1257, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1258"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Fetters_1258 = 1258, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1259"><strong>Old</strong></see> ↓ (All Classes) /// <para>You have aged considerably. Movement speed is severely reduced.</para> /// </summary> Old = 1259, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1260"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi_1260 = 1260, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1261 = 1261, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1262"><strong>Gathering Fortune Up II (Limited)</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an HQ item on your next gathering attempt is increased.</para> /// </summary> GatheringFortuneUpIiLimited = 1262, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1263"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_1263 = 1263, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1264"><strong>Brilliant Conviction</strong></see> ↑ (All Classes) /// <para>Breaking limits as only a true Warrior of Light could.</para> /// </summary> BrilliantConviction_1264 = 1264, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1265"><strong>Brilliant Conviction</strong></see> ↑ (All Classes) /// <para>Breaking limits as only a true Warrior of Light could.</para> /// </summary> BrilliantConviction_1265 = 1265, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1266"><strong>Transparent II</strong></see> ↑ (All Classes) /// <para>Body is allowing light to pass, rendering you invisible to the enemy.</para> /// </summary> TransparentIi = 1266, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1267"><strong>Affixed</strong></see> ↑ (All Classes) /// <para>Affixed to another object.</para> /// </summary> Affixed = 1267, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1268"><strong>In Event</strong></see> ↑ (All Classes) /// <para>Participating in an in-game event.</para> /// </summary> InEvent = 1268, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1269"><strong>Extreme Caution</strong></see> ↓ (All Classes) /// <para>A penalty will be assessed for any action, auto-attack, or movement taken after status ends.</para> /// </summary> ExtremeCaution_1269 = 1269, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1270"><strong>Churning</strong></see> ↓ (All Classes) /// <para>Churning waters are upon you. Severe damage will be suffered if moving when the effect wears off.</para> /// </summary> Churning = 1270, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1271"><strong>Clashing</strong></see> ↓ (All Classes) /// <para>Pushing back at another weapon with your own.</para> /// </summary> Clashing = 1271, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1272"><strong>Slashing Resistance Down II</strong></see> ↓ (All Classes) /// <para>Slashing resistance is significantly reduced.</para> /// </summary> SlashingResistanceDownIi = 1272, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1273"><strong>Sinking</strong></see> ↓ (All Classes) /// <para>Your body is slowly sinking. Burial will result in KO.</para> /// </summary> Sinking = 1273, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1274"><strong>Bardam's Price</strong></see> ↓ (All Classes) /// <para>You are being punished for failing Bardam's trial. A stack of 2 will render you unable to move.</para> /// </summary> BardamsPrice = 1274, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1275"><strong>Fire Convergence</strong></see> ↑ (All Classes) /// <para>Reflecting back all ice- and lightning-aspected attacks.</para> /// </summary> FireConvergence = 1275, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1276"><strong>Ice Convergence</strong></see> ↑ (All Classes) /// <para>Reflecting back all fire- and lightning-aspected attacks.</para> /// </summary> IceConvergence = 1276, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1277"><strong>Lightning Convergence</strong></see> ↑ (All Classes) /// <para>Reflecting back all ice- and fire-aspected attacks.</para> /// </summary> LightningConvergence = 1277, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1278"><strong>Aspected to Fire</strong></see> ↑ (All Classes) /// <para>Harboring a dangerous amount of fire-aspected aether.</para> /// </summary> AspectedToFire = 1278, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1279"><strong>Aspected to Ice</strong></see> ↑ (All Classes) /// <para>Harboring a dangerous amount of ice-aspected aether.</para> /// </summary> AspectedToIce = 1279, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1280"><strong>Aspected to Lightning</strong></see> ↑ (All Classes) /// <para>Harboring a dangerous amount of lightning-aspected aether.</para> /// </summary> AspectedToLightning = 1280, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1281"><strong>Empowered Rahu</strong></see> ↑ (All Classes) /// <para>Rahu's strength is enhanced.</para> /// </summary> EmpoweredRahu = 1281, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1282"><strong>Empowered Ketu</strong></see> ↑ (All Classes) /// <para>Ketu's strength is enhanced.</para> /// </summary> EmpoweredKetu = 1282, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1283"><strong>Confused</strong></see> ↓ (All Classes) /// <para>Attacking allies instead of the enemy.</para> /// </summary> Confused_1283 = 1283, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1284"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction_1284 = 1284, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1285"><strong>Gathering Fortune Up II</strong></see> ↑ (All Classes) /// <para>Chance of obtaining an HQ item while gathering is increased.</para> /// </summary> GatheringFortuneUpIi = 1285, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1286"><strong>Gathering Yield Up II</strong></see> ↑ (All Classes) /// <para>Number of items obtained while gathering is increased.</para> /// </summary> GatheringYieldUpIi = 1286, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1287"><strong>Seized</strong></see> ↓ (All Classes) /// <para>Held in a vicelike grip and cannot act. Taking damage over time.</para> /// </summary> Seized_1287 = 1287, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1288"><strong>Twist of Fate</strong></see> ↑ (All Classes) /// <para>Certain rewards earned from FATEs are dramatically increased.</para> /// </summary> TwistOfFate = 1288, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1289"><strong>Twist of Fate</strong></see> ↑ (All Classes) /// <para>Certain rewards earned from FATEs are dramatically increased.</para> /// </summary> TwistOfFate_1289 = 1289, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1290"><strong>Vril</strong></see> ↑ (All Classes) /// <para>Damage taken by certain attacks is reduced or converted in to HP.</para> /// </summary> Vril = 1290, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1291"><strong>Ruination</strong></see> ↓ (All Classes) /// <para>Damage taken from Outburst and Ruin spells cast by arcanists and summoners is increased.</para> /// </summary> Ruination = 1291, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1292"><strong>Piggy</strong></see> ↓ (All Classes) /// <para>Transformed into a pig and unable to execute actions.</para> /// </summary> Piggy = 1292, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1293"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch = 1293, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1294"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace = 1294, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1295"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace = 1295, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1296"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace = 1296, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1297"><strong>Embolden</strong></see> ↑ (RDM) /// <para>Damage dealt is increased.</para> /// </summary> Embolden_1297 = 1297, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1298"><strong>Fugetsu</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> Fugetsu = 1298, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1299"><strong>Fuka</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Fuka = 1299, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1300"><strong>Cover</strong></see> ↑ (PLD) /// <para>Protecting a party member.</para> /// </summary> Cover_1300 = 1300, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1301"><strong>Covered</strong></see> ↑ (PLD) /// <para>Under the protection of a party member.</para> /// </summary> Covered_1301 = 1301, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1302"><strong>Hallowed Ground</strong></see> ↑ (PLD) /// <para>Impervious to most attacks.</para> /// </summary> HallowedGround_1302 = 1302, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1303"><strong>Inner Release</strong></see> ↑ (WAR) /// <para>All Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, knockback, and draw-in effects are nullified. Potency of certain weaponskills is also increased. Movement speed is also increased.</para> /// </summary> InnerRelease_1303 = 1303, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1304"><strong>Holmgang</strong></see> ↓ (WAR) /// <para>Unable to move until effect fades. Most attacks cannot reduce your HP to less than 1.</para> /// </summary> Holmgang_1304 = 1304, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1305"><strong>Holmgang</strong></see> ↓ (WAR) /// <para>Unable to move until effect fades.</para> /// </summary> Holmgang_1305 = 1305, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1306"><strong>Sole Survivor</strong></see> ↓ (DRK) /// <para>HP recovery via healing actions is reduced.</para> /// </summary> SoleSurvivor = 1306, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1307"><strong>Ice Spikes</strong></see> ↑ (All Classes) /// <para>Upon taking physical damage, sharpened spikes deal ice damage to the attacking opponent, potentially slowing them.</para> /// </summary> IceSpikes_1307 = 1307, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1308"><strong>Blackest Night</strong></see> ↑ (DRK) /// <para>An all-encompassing darkness is nullifying damage.</para> /// </summary> BlackestNight_1308 = 1308, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1309"><strong>Demolish</strong></see> ↓ (MNK) /// <para>Sustaining damage over time, as well as increased damage from target who executed Demolish.</para> /// </summary> Demolish_1309 = 1309, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1310"><strong>Riddle of Earth</strong></see> ↑ (All Classes) /// <para>Contemplating the riddle of earth. Taking a certain amount of damage triggers Earth's Reply.</para> /// </summary> RiddleOfEarth_1310 = 1310, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1311"><strong>Earth's Reply</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while damage taken is reduced.</para> /// </summary> EarthsReply = 1311, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1312"><strong>Chaos Thrust</strong></see> ↓ (DRG) /// <para>Sustaining damage over time, as well as increased damage from target who executed Chaos Thrust.</para> /// </summary> ChaosThrust_1312 = 1312, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1313"><strong>Shadow Fang</strong></see> ↓ (NIN) /// <para>Sustaining damage over time, as well as increased damage from target who executed Shadow Fang.</para> /// </summary> ShadowFang_1313 = 1313, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1314"><strong>Assassinated</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time, as well as increased damage.</para> /// </summary> Assassinated = 1314, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1315"><strong>Kakuremi</strong></see> ↑ (NIN) /// <para>Slowly blending in with the environment. If not attacked, you will eventually become hidden.</para> /// </summary> Kakuremi = 1315, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1316"><strong>Hidden</strong></see> ↑ (NIN) /// <para>Unable to be detected.</para> /// </summary> Hidden_1316 = 1316, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1317"><strong>Three Mudra</strong></see> ↑ (NIN) /// <para>Able to execute any ninjutsu action.</para> /// </summary> ThreeMudra = 1317, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1318"><strong>Zanshin Ready</strong></see> ↑ (SAM) /// <para>Able to execute Zanshin.</para> /// </summary> ZanshinReady = 1318, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1319"><strong>Higanbana</strong></see> ↓ (SAM) /// <para>Open wounds are bleeding, causing damage over time. HP recovery is reduced.</para> /// </summary> Higanbana_1319 = 1319, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1320"><strong>Meikyo Shisui</strong></see> ↑ (SAM) /// <para>Nullifying status afflictions that can be removed by Purify, as well as knockback and draw-in effects.</para> /// </summary> MeikyoShisui_1320 = 1320, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1321"><strong>Caustic Bite</strong></see> ↓ (BRD) /// <para>Toxins are causing damage over time.</para> /// </summary> CausticBite_1321 = 1321, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1322"><strong>Stormbite</strong></see> ↓ (BRD) /// <para>Wounds are exposed to the elements, causing damage over time.</para> /// </summary> Stormbite_1322 = 1322, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1323"><strong>Wildfire</strong></see> ↓ (MCH) /// <para>Damage is being accumulated with each weaponskill landed by the machinist who applied the effect.</para> /// </summary> Wildfire_1323 = 1323, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1324"><strong>Thunder</strong></see> ↓ (BLM) /// <para>Sustaining lightning damage over time.</para> /// </summary> Thunder_1324 = 1324, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1325"><strong>Swiftcast</strong></see> ↑ (All Classes) /// <para>Next spell will require no time to cast.</para> /// </summary> Swiftcast_1325 = 1325, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1326"><strong>Bio III</strong></see> ↓ (SMN) /// <para>Contagions are spreading, causing damage over time.</para> /// </summary> BioIii_1326 = 1326, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1327"><strong>Miasma III</strong></see> ↓ (SMN) /// <para>Lungs are failing, causing damage over time and reducing HP recovery.</para> /// </summary> MiasmaIii_1327 = 1327, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1328"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_1328 = 1328, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1329"><strong>Withering</strong></see> ↓ (SMN) /// <para>HP recovery via healing actions is reduced.</para> /// </summary> Withering = 1329, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1330"><strong>Regen</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> Regen_1330 = 1330, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1331"><strong>Galvanize</strong></see> ↑ (SCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Galvanize_1331 = 1331, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1332"><strong>Chanchala</strong></see> ↑ (All Classes) /// <para>Lakshmi's divine nature vacillates unsteadily.</para> /// </summary> Chanchala = 1332, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1333"><strong>Eye for an Eye</strong></see> ↑ (All Classes) /// <para>Chance that next hit suffered will lower the attacker's damage dealt.</para> /// </summary> EyeForAnEye_1333 = 1333, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1334"><strong>Eye for an Eye</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> EyeForAnEye_1334 = 1334, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1335"><strong>Abridged</strong></see> ↑ (AST) /// <para>Next spell will require no time to cast.</para> /// </summary> Abridged = 1335, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1336"><strong>Synastry</strong></see> ↑ (All Classes) /// <para>An aetheric bond is created with a party member. Each time a single-target healing spell is cast, that member will recover partial HP.</para> /// </summary> Synastry_1336 = 1336, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1337"><strong>Synastry</strong></see> ↑ (All Classes) /// <para>An aetheric bond is created with a party astrologian. Each time a single-target healing spell is cast by the astrologian, you will recover partial HP.</para> /// </summary> Synastry_1337 = 1337, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1338"><strong>The Balance</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> TheBalance_1338 = 1338, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1339"><strong>The Bole</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> TheBole_1339 = 1339, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1340"><strong>The Ewer</strong></see> ↑ (All Classes) /// <para>Restoring MP over time.</para> /// </summary> TheEwer_1340 = 1340, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1341"><strong>The Spire</strong></see> ↑ (All Classes) /// <para>Limit gauge is gradually filling.</para> /// </summary> TheSpire_1341 = 1341, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1342"><strong>Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Sprint_1342 = 1342, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1343"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_1343 = 1343, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1344"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_1344 = 1344, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1345"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_1345 = 1345, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1346"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill and spell cast time and recast time are increased.</para> /// </summary> Slow_1346 = 1346, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1347"><strong>Silence</strong></see> ↓ (All Classes) /// <para>A stifling magic is preventing the use of any actions.</para> /// </summary> Silence_1347 = 1347, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1348"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_1348 = 1348, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1349"><strong>Stun Resistance</strong></see> ↑ (All Classes) /// <para>Immune to stun effects.</para> /// </summary> StunResistance_1349 = 1349, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1350"><strong>Heavy Resistance</strong></see> ↑ (All Classes) /// <para>Immune to heavy effects.</para> /// </summary> HeavyResistance = 1350, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1351"><strong>Bind Resistance</strong></see> ↑ (All Classes) /// <para>Immune to bind effects.</para> /// </summary> BindResistance = 1351, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1352"><strong>Slow Resistance</strong></see> ↑ (All Classes) /// <para>Immune to slow effects.</para> /// </summary> SlowResistance = 1352, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1353"><strong>Silence Resistance</strong></see> ↑ (All Classes) /// <para>Immune to silence effects.</para> /// </summary> SilenceResistance_1353 = 1353, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1354"><strong>Sleep Resistance</strong></see> ↑ (All Classes) /// <para>Immune to sleep effects.</para> /// </summary> SleepResistance = 1354, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1355"><strong>Knockback Penalty</strong></see> ↑ (All Classes) /// <para>Immune to knockback and draw-in effects.</para> /// </summary> KnockbackPenalty_1355 = 1355, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1356"><strong>Imp</strong></see> ↓ (All Classes) /// <para>Transformed into an imp and only able to execute the action Imp Punch.</para> /// </summary> Imp_1356 = 1356, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1357"><strong>Gravity Flip</strong></see> ↓ (All Classes) /// <para>Gravity is inverted, slowly lifting you further from the ground.</para> /// </summary> GravityFlip = 1357, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1358"><strong>Elevated</strong></see> ↓ (All Classes) /// <para>Bound to current elevation.</para> /// </summary> Elevated = 1358, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1359"><strong>Gradual Petrification</strong></see> ↓ (All Classes) /// <para>Flesh once soft is slowly turning to stone.</para> /// </summary> GradualPetrification = 1359, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1360"><strong>Unstable Gravity</strong></see> ↓ (All Classes) /// <para>The gravity about you is highly unstable and will soon rupture, dealing unaspected damage to all allies within range.</para> /// </summary> UnstableGravity = 1360, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1361"><strong>Magitek Levitation</strong></see> ↑ (All Classes) /// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> /// </summary> MagitekLevitation = 1361, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1362"><strong>Divine Veil</strong></see> ↑ (PLD) /// <para>A holy barrier is nullifying damage.</para> /// </summary> DivineVeil_1362 = 1362, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1363"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_1363 = 1363, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1364"><strong>Riddle of Wind</strong></see> ↑ (All Classes) /// <para>Able to execute Riddle of Wind.</para> /// </summary> RiddleOfWind_1364 = 1364, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1365"><strong>Thundercloud</strong></see> ↑ (BLM) /// <para>Able to cast Thunder III or Thunder IV.</para> /// </summary> Thundercloud_1365 = 1365, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1366"><strong>Levitation</strong></see> ↑ (All Classes) /// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> /// </summary> Levitation_1366 = 1366, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1367"><strong>Impactful</strong></see> ↑ (All Classes) /// <para>Able to execute Impact.</para> /// </summary> Impactful = 1367, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1368"><strong>Requiescat</strong></see> ↑ (PLD) /// <para>Potency of certain actions is increased and spells require no time to cast.</para> /// </summary> Requiescat = 1368, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1369"><strong>Requiescat</strong></see> ↑ (PLD) /// <para>Spells require no time to cast and consume no MP.</para> /// </summary> Requiescat_1369 = 1369, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1370"><strong>Rage of Halone</strong></see> ↓ (All Classes) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> RageOfHalone = 1370, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1371"><strong>Butcher's Block</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> ButchersBlock = 1371, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1372"><strong>Power Slash</strong></see> ↓ (All Classes) /// <para>HP recovery is reduced.</para> /// </summary> PowerSlash = 1372, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1373"><strong>Immaterialized</strong></see> ↓ (All Classes) /// <para>Not yet fully materialized to a complete form.</para> /// </summary> Immaterialized = 1373, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1374"><strong>Target Right</strong></see> ↓ (All Classes) /// <para>Focusing attack on target to the right.</para> /// </summary> TargetRight = 1374, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1375"><strong>Target Left</strong></see> ↓ (All Classes) /// <para>Focusing attack on target to the left.</para> /// </summary> TargetLeft = 1375, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1376"><strong>Kyoshin</strong></see> ↑ (All Classes) /// <para>Body is enlarged, increasing damage dealt.</para> /// </summary> Kyoshin = 1376, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1377"><strong>Life Drain</strong></see> ↓ (All Classes) /// <para>Life force is being drained, causing damage over time.</para> /// </summary> LifeDrain = 1377, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1378"><strong>Dualcast</strong></see> ↑ (All Classes) /// <para>The next spell will be cast immediately.</para> /// </summary> Dualcast_1378 = 1378, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1379"><strong>Almagest</strong></see> ↓ (All Classes) /// <para>Celestial magicks are causing damage over time.</para> /// </summary> Almagest = 1379, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1380"><strong>White Wound</strong></see> ↓ (All Classes) /// <para>Taking extra damage from White Antilight.</para> /// </summary> WhiteWound = 1380, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1381"><strong>Black Wound</strong></see> ↓ (All Classes) /// <para>Taking extra damage from Black Antilight.</para> /// </summary> BlackWound = 1381, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1382"><strong>Beyond Death</strong></see> ↓ (All Classes) /// <para>Only beyond death's boundaries can life be achieved.</para> /// </summary> BeyondDeath = 1382, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1383"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced.</para> /// </summary> HpPenalty_1383 = 1383, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1384"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb_1384 = 1384, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1385"><strong>Off-balance</strong></see> ↓ (All Classes) /// <para>Attacks suffered will result in knockback.</para> /// </summary> Offbalance_1385 = 1385, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1386"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_1386 = 1386, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1387"><strong>Altered States</strong></see> ↑ (All Classes) /// <para>Action area of effect has been altered.</para> /// </summary> AlteredStates = 1387, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1388"><strong>Ashen</strong></see> ↓ (All Classes) /// <para>Covered in stygian ash.</para> /// </summary> Ashen = 1388, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1389"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_1389 = 1389, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1390"><strong>Levitation</strong></see> ↑ (All Classes) /// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> /// </summary> Levitation_1390 = 1390, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1391"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1391 = 1391, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1392"><strong>Shining Moonstone</strong></see> ↑ (All Classes) /// <para>Empowered by the light of the moonstone, increasing damage dealt while reducing damage taken.</para> /// </summary> ShiningMoonstone = 1392, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1393"><strong>Dualcast</strong></see> ↑ (RDM) /// <para>The next spell will be cast immediately.</para> /// </summary> Dualcast_1393 = 1393, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1394"><strong>Limp</strong></see> ↓ (All Classes) /// <para>Your mount has been lamed by an attack. Movement speed is reduced.</para> /// </summary> Limp = 1394, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1395"><strong>Shield Oath</strong></see> ↑ (All Classes) /// <para>Damage dealt and taken are reduced.</para> /// </summary> ShieldOath = 1395, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1396"><strong>Defiance</strong></see> ↑ (All Classes) /// <para>Damage dealt and taken are reduced.</para> /// </summary> Defiance_1396 = 1396, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1397"><strong>Grit</strong></see> ↑ (All Classes) /// <para>Damage dealt and taken are reduced.</para> /// </summary> Grit_1397 = 1397, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1398"><strong>Inner Beast</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> InnerBeast_1398 = 1398, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1399"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1399 = 1399, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1400"><strong>Terror</strong></see> ↓ (All Classes) /// <para>Frozen with fear and unable to execute actions.</para> /// </summary> Terror_1400 = 1400, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1401"><strong>Enervation</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced and damage taken is increased.</para> /// </summary> Enervation_1401 = 1401, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1402"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1402 = 1402, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1403"><strong>Lightspeed</strong></see> ↑ (All Classes) /// <para>Spell casting time and MP cost are reduced by 100% and 50% respectively.</para> /// </summary> Lightspeed_1403 = 1403, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1404"><strong>Divine Benison</strong></see> ↑ (All Classes) /// <para>A holy blessing from the gods is nullifying damage.</para> /// </summary> DivineBenison_1404 = 1404, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1405"><strong>Disabled</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Disabled_1405 = 1405, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1406"><strong>Chain Stratagem</strong></see> ↓ (SCH) /// <para>Damage taken is increased.</para> /// </summary> ChainStratagem_1406 = 1406, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1407"><strong>Barrage</strong></see> ↑ (BRD) /// <para>Striking multiple times per weaponskill.</para> /// </summary> Barrage_1407 = 1407, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1408"><strong>Cometeor</strong></see> ↓ (BLM SMN RDM BLU PCT) /// <para>Damage taken is increased.</para> /// </summary> Cometeor = 1408, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1409"><strong>Terminal Velocity</strong></see> ↓ (BRD MCH DNC) /// <para>HP recovery is reduced.</para> /// </summary> TerminalVelocity = 1409, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1410"><strong>Chanchala</strong></see> ↑ (All Classes) /// <para>Lakshmi's divine nature vacillates unsteadily.</para> /// </summary> Chanchala_1410 = 1410, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1411"><strong>Preferred World Bonus</strong></see> ↑ (All Classes) /// <para>Experience earned while below level is dramatically increased.</para> /// </summary> PreferredWorldBonus = 1411, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1412"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1412 = 1412, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1413"><strong>Riddle of Fire</strong></see> ↑ (MNK) /// <para>Damage dealt is increased.</para> /// </summary> RiddleOfFire_1413 = 1413, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1414"><strong>Battle Litany</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> BattleLitany_1414 = 1414, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1415"><strong>Protect</strong></see> ↑ (WHM) /// <para>Damage taken is reduced.</para> /// </summary> Protect_1415 = 1415, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1416"><strong>Grounded</strong></see> ↓ (All Classes) /// <para>Bound to current elevation.</para> /// </summary> Grounded = 1416, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1417"><strong>Stone Curse</strong></see> ↓ (All Classes) /// <para>Turned into stone. Taking damage results in instant death.</para> /// </summary> StoneCurse_1417 = 1417, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1418"><strong>Abandonment</strong></see> ↓ (All Classes) /// <para>Will suffer Fear when straying too far from party members.</para> /// </summary> Abandonment_1418 = 1418, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1419"><strong>The Worm's Curse</strong></see> ↓ (All Classes) /// <para>HP regeneration is nullified and damage is taken slowly over time. Attacking, however, will periodically restore HP.</para> /// </summary> TheWormsCurse = 1419, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1420"><strong>Mounted</strong></see> ↑ (All Classes) /// <para>Mounted in warmachina. HP recovery and beneficial effects conferred by actions are nullified.</para> /// </summary> Mounted = 1420, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1421"><strong>Craven</strong></see> ↓ (All Classes) /// <para>Courage is fully tapped, increasing damage taken.</para> /// </summary> Craven = 1421, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1422"><strong>Temporary Misdirection</strong></see> ↓ (All Classes) /// <para>Overcome with temporary insanity. Can only move in the direction indicated.</para> /// </summary> TemporaryMisdirection = 1422, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1423"><strong>Transfiguration</strong></see> ↓ (All Classes) /// <para>Spiritual and corporeal forms are drastically altered.</para> /// </summary> Transfiguration_1423 = 1423, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1424"><strong>Divine Commandment: Flee</strong></see> ↓ (All Classes) /// <para>Affected by the word of a god.</para> /// </summary> DivineCommandmentFlee = 1424, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1425"><strong>Divine Commandment: Turn</strong></see> ↓ (All Classes) /// <para>Affected by the word of a god.</para> /// </summary> DivineCommandmentTurn = 1425, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1426"><strong>Unnerved</strong></see> ↓ (All Classes) /// <para>Courage is tapped, increasing damage taken.</para> /// </summary> Unnerved = 1426, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1427"><strong>Drenched</strong></see> ↓ (All Classes) /// <para>Body is covered in water and susceptible to freezing.</para> /// </summary> Drenched = 1427, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1429"><strong>Breathless</strong></see> ↓ (All Classes) /// <para>Toxins in the water are causing difficulty breathing. A stack of 10 will result in KO.</para> /// </summary> Breathless = 1429, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1430"><strong>Legendary Resolve</strong></see> ↑ (All Classes) /// <para>Convinced of your mettle, Shinryu has unleashed its true power.</para> /// </summary> LegendaryResolve = 1430, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1431"><strong>Tower Defense</strong></see> ↑ (All Classes) /// <para>The tower's field invigorates those who enter its sphere of influence, halving damage taken and regenerating HP over time.</para> /// </summary> TowerDefense = 1431, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1432"><strong>Tower Defense</strong></see> ↑ (All Classes) /// <para>The tower's protective field is active.</para> /// </summary> TowerDefense_1432 = 1432, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1433"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form is altered.</para> /// </summary> Transfiguration_1433 = 1433, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1434"><strong>Mana Hypersensitivity</strong></see> ↓ (All Classes) /// <para>Additional damage taken from Hatch.</para> /// </summary> ManaHypersensitivity = 1434, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1435"><strong>Piercing Resistance Down II</strong></see> ↓ (All Classes) /// <para>Piercing resistance is significantly reduced.</para> /// </summary> PiercingResistanceDownIi = 1435, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1436"><strong>Phoenix's Blessing</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> PhoenixsBlessing = 1436, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1437"><strong>Lohs Daih</strong></see> ↑ (All Classes) /// <para>Bahamut Prime's insanity has peaked. Damage dealt is increased.</para> /// </summary> LohsDaih = 1437, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1438"><strong>Resonant</strong></see> ↑ (All Classes) /// <para>Strength is transcending that of mere mortals.</para> /// </summary> Resonant_1438 = 1438, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1439"><strong>Independent Tactics</strong></see> ↑ (All Classes) /// <para>Maximum HP and damage dealt are increased while damage taken is reduced.</para> /// </summary> IndependentTactics = 1439, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1440"><strong>Offensive Tactics</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> OffensiveTactics = 1440, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1441"><strong>Defensive Tactics</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased while damage taken is reduced.</para> /// </summary> DefensiveTactics = 1441, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1442"><strong>Balanced Tactics</strong></see> ↑ (All Classes) /// <para>Maximum HP and damage dealt are increased.</para> /// </summary> BalancedTactics = 1442, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1443"><strong>Clockwork</strong></see> ↓ (All Classes) /// <para>When the gears run down, functionality will cease. HP restoration is reduced.</para> /// </summary> Clockwork = 1443, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1444"><strong>Magitek Field</strong></see> ↑ (All Classes) /// <para>Impervious to all damage.</para> /// </summary> MagitekField = 1444, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1445"><strong>The Deceiver</strong></see> ↑ (All Classes) /// <para>Wearing the face of the god of lies.</para> /// </summary> TheDeceiver = 1445, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1446"><strong>The Upholder</strong></see> ↑ (All Classes) /// <para>Wearing the face of the god of truth.</para> /// </summary> TheUpholder = 1446, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1447"><strong>Elemental EXP Up</strong></see> ↑ (All Classes) /// <para>Elemental EXP earned through battle while at an elemental level lower than 50 is increased.</para> /// </summary> ElementalExpUp = 1447, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1448"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form has been altered.</para> /// </summary> Transfiguration_1448 = 1448, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1449"><strong>Troubadour's Minuet</strong></see> ↑ (SAM) /// <para>Damage dealt is increased.</para> /// </summary> TroubadoursMinuet_1449 = 1449, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1450"><strong>Troubadour's Paeon</strong></see> ↑ (SAM) /// <para>Weaponskill and spell cast and recast time are reduced.</para> /// </summary> TroubadoursPaeon_1450 = 1450, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1451"><strong>Lord of Crowns</strong></see> ↓ (AST) /// <para>Damage taken is increased.</para> /// </summary> LordOfCrowns = 1451, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1452"><strong>Lady of Crowns</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> LadyOfCrowns = 1452, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1453"><strong>Right Eye</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> RightEye_1453 = 1453, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1454"><strong>Left Eye</strong></see> ↑ (DRG) /// <para>Damage dealt is increased.</para> /// </summary> LeftEye_1454 = 1454, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1455"><strong>Flamethrower</strong></see> ↑ (All Classes) /// <para>Emitting a gout of searing flames in a cone, dealing damage over time.</para> /// </summary> Flamethrower_1455 = 1455, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1456"><strong>Thrill of War</strong></see> ↑ (All Classes) /// <para>Refreshing HP of party members within range while draining own MP.</para> /// </summary> ThrillOfWar = 1456, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1457"><strong>Shake It Off</strong></see> ↑ (WAR) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> ShakeItOff = 1457, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1458"><strong>Flamethrower Flames</strong></see> ↓ (All Classes) /// <para>Taking damage over time.</para> /// </summary> FlamethrowerFlames = 1458, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1459"><strong>Transfiguration</strong></see> ↓ (All Classes) /// <para>Spiritual and corporeal forms are drastically altered.</para> /// </summary> Transfiguration_1459 = 1459, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1460"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1460 = 1460, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1461"><strong>Elemental Blessing: EXP</strong></see> ↑ (All Classes) /// <para>Receiving the blessing of Eureka's elementals. Elemental EXP earned through battle is increased.</para> /// </summary> ElementalBlessingExp = 1461, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1462"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction_1462 = 1462, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1463"><strong>Elemental Blessing: Damage</strong></see> ↑ (All Classes) /// <para>Receiving the blessing of Eureka's elementals. Damage dealt is increased and restoring HP over time.</para> /// </summary> ElementalBlessingDamage = 1463, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1464"><strong>Time's Up</strong></see> ↓ (All Classes) /// <para>Nearing the end of allotted exploration time in Eureka. </para> /// </summary> TimesUp = 1464, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1465"><strong>Soaring</strong></see> ↑ (All Classes) /// <para>Overcome with the battle high, increasing damage dealt and potency of HP restoration actions. Effect is nullified when piloting warmachina.</para> /// </summary> Soaring = 1465, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1466"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_1466 = 1466, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1467"><strong>Yellow Paint</strong></see> ↑ (All Classes) /// <para>Carrying a pot of yellow paint.</para> /// </summary> YellowPaint = 1467, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1468"><strong>Blue Paint</strong></see> ↑ (All Classes) /// <para>Carrying a pot of light blue paint.</para> /// </summary> BluePaint = 1468, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1469"><strong>Black Paint</strong></see> ↑ (All Classes) /// <para>Carrying a pot of black paint.</para> /// </summary> BlackPaint = 1469, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1470"><strong>Red Paint</strong></see> ↑ (All Classes) /// <para>Carrying a pot of red paint.</para> /// </summary> RedPaint = 1470, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1471"><strong>Last Kiss</strong></see> ↓ (All Classes) /// <para>Cursed by a kiss. Unaspected damage dealt to all nearby allies when effect ends.</para> /// </summary> LastKiss = 1471, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1472"><strong>Apathetic</strong></see> ↓ (All Classes) /// <para>Unable to use HP restoration abilities while MP slowly drains. Not that you care.</para> /// </summary> Apathetic = 1472, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1474"><strong>Filthy</strong></see> ↓ (All Classes) /// <para>Earthen residue is causing damage over time.</para> /// </summary> Filthy = 1474, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1475"><strong>Aether Rot</strong></see> ↓ (All Classes) /// <para>Infected with an unknown pestilience. Mortal pathogen is released when effect ends.</para> /// </summary> AetherRot = 1475, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1476"><strong>Aether Rot Immunity</strong></see> ↓ (All Classes) /// <para>Unable to be an Aether Rot carrier.</para> /// </summary> AetherRotImmunity = 1476, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1477"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1477 = 1477, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1478"><strong>Connectivity</strong></see> ↓ (All Classes) /// <para>The Phantom Train is slowly leeching your life essence. Damage taken is also increased.</para> /// </summary> Connectivity = 1478, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1479"><strong>Falling</strong></see> ↓ (All Classes) /// <para>Decided absence of terra firma is causing an inability to execute certain actions.</para> /// </summary> Falling = 1479, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1480"><strong>Unrelenting Anguish</strong></see> ↑ (All Classes) /// <para>Continuously launching Aratama from your body.</para> /// </summary> UnrelentingAnguish = 1480, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1481"><strong>Ominous Wind</strong></see> ↓ (All Classes) /// <para>Touched by an ominous wind. Coming in contact with another cursed by the selfsame wind causes the omen to spread.</para> /// </summary> OminousWind = 1481, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1482"><strong>Mana Charge</strong></see> ↑ (All Classes) /// <para>Charging mana for a forthcoming spell.</para> /// </summary> ManaCharge = 1482, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1483"><strong>Fire Charged</strong></see> ↑ (All Classes) /// <para>Mana sufficient to cast Fire III or equivalent.</para> /// </summary> FireCharged = 1483, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1484"><strong>Blizzard Charged</strong></see> ↑ (All Classes) /// <para>Mana sufficient to cast Blizzard III or equivalent.</para> /// </summary> BlizzardCharged = 1484, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1485"><strong>Thunder Charged</strong></see> ↑ (All Classes) /// <para>Mana sufficient to cast Thunder III or equivalent.</para> /// </summary> ThunderCharged = 1485, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1486"><strong>Jester's Antics</strong></see> ↑ (All Classes) /// <para>Effect radius and characteristics for Fire, Ice, and Lightning spells are severely altered.</para> /// </summary> JestersAntics = 1486, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1487"><strong>Jester's Truths</strong></see> ↑ (All Classes) /// <para>Effect radius and characteristics for Fire, Ice, and Lightning spells are unaltered.</para> /// </summary> JestersTruths = 1487, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1488"><strong>Incurable</strong></see> ↓ (All Classes) /// <para>All HP restoration is nullified.</para> /// </summary> Incurable = 1488, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1489"><strong>Ultros Simulation</strong></see> ↑ (All Classes) /// <para>The Ultros simulation program is loaded.</para> /// </summary> UltrosSimulation = 1489, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1490"><strong>Air Force Simulation</strong></see> ↑ (All Classes) /// <para>The Air Force simulation program is loaded.</para> /// </summary> AirForceSimulation = 1490, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1491"><strong>Dadaluma Simulation</strong></see> ↑ (All Classes) /// <para>The Dadaluma simulation program is loaded.</para> /// </summary> DadalumaSimulation = 1491, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1492"><strong>Bibliotaph Simulation</strong></see> ↑ (All Classes) /// <para>The Bibliotaph simulation program is loaded.</para> /// </summary> BibliotaphSimulation = 1492, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1493"><strong>Virus</strong></see> ↑ (All Classes) /// <para>A virus is loaded.</para> /// </summary> Virus_1493 = 1493, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1494"><strong>Face in the Crowd</strong></see> ↑ (All Classes) /// <para>Participating in a live performance.</para> /// </summary> FaceInTheCrowd = 1494, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1495"><strong>Scalebound</strong></see> ↓ (All Classes) /// <para>You have entered the sacred domain of the Rathalos and are somehow unable to heal wounds via any method save mega potions.</para> /// </summary> Scalebound = 1495, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1496"><strong>Vanished</strong></see> ↑ (All Classes) /// <para>Invisible to enemies and traps.</para> /// </summary> Vanished = 1496, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1497"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1497 = 1497, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1498"><strong>Shocked</strong></see> ↓ (All Classes) /// <para>Experiencing periodic immobility while bleeding HP over time.</para> /// </summary> Shocked = 1498, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1499"><strong>Heavy Medal</strong></see> ↓ (All Classes) /// <para>The weight of medals collected is hampering faculty to fend off attacks. The higher the stack, the more damage taken.</para> /// </summary> HeavyMedal_1499 = 1499, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1500"><strong>Heavy Medal</strong></see> ↓ (All Classes) /// <para>The weight of medals collected is hampering faculty to fend off attacks. The higher the stack, the more damage taken.</para> /// </summary> HeavyMedal_1500 = 1500, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1501"><strong>Heavy Medal</strong></see> ↓ (All Classes) /// <para>The weight of medals collected is hampering faculty to fend off attacks. The higher the stack, the more damage taken.</para> /// </summary> HeavyMedal_1501 = 1501, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1502"><strong>Heavy Medal</strong></see> ↓ (All Classes) /// <para>The weight of medals collected is hampering faculty to fend off attacks. The higher the stack, the more damage taken.</para> /// </summary> HeavyMedal_1502 = 1502, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1503"><strong>Light Medal</strong></see> ↑ (All Classes) /// <para>The lack of medals collected is increasing faculty to fend off attacks. The higher the stack, the less damage taken.</para> /// </summary> LightMedal = 1503, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1504"><strong>Light Medal</strong></see> ↑ (All Classes) /// <para>The lack of medals collected is increasing faculty to fend off attacks. The higher the stack, the less damage taken.</para> /// </summary> LightMedal_1504 = 1504, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1505"><strong>Light Medal</strong></see> ↑ (All Classes) /// <para>The lack of medals collected is increasing faculty to fend off attacks. The higher the stack, the less damage taken.</para> /// </summary> LightMedal_1505 = 1505, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1506"><strong>Light Medal</strong></see> ↑ (All Classes) /// <para>The lack of medals collected is increasing faculty to fend off attacks. The higher the stack, the less damage taken.</para> /// </summary> LightMedal_1506 = 1506, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1507"><strong>Pollen</strong></see> ↓ (All Classes) /// <para>Deadly pollen has filled the lungs, causing damage over time.</para> /// </summary> Pollen_1507 = 1507, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1508"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_1508 = 1508, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1509"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_1509 = 1509, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1510"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_1510 = 1510, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1511"><strong>Petrification</strong></see> ↓ (All Classes) /// <para>Stone-like rigidity is preventing the execution of actions.</para> /// </summary> Petrification_1511 = 1511, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1512"><strong>Knockback Penalty</strong></see> ↓ (All Classes) /// <para>Unable to use knockback and draw-in effects.</para> /// </summary> KnockbackPenalty_1512 = 1512, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1513"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_1513 = 1513, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1515"><strong>Hover</strong></see> ↑ (All Classes) /// <para>Floating above ground.</para> /// </summary> Hover_1515 = 1515, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1517"><strong>Fire Resistance Up</strong></see> ↑ (All Classes) /// <para>Fire resistance is increased.</para> /// </summary> FireResistanceUp_1517 = 1517, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1518"><strong>King of the Skies</strong></see> ↑ (All Classes) /// <para>The Rathalos has unleashed its true might.</para> /// </summary> KingOfTheSkies = 1518, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1519"><strong>Drubbed</strong></see> ↓ (All Classes) /// <para>Taking blunt damage over time.</para> /// </summary> Drubbed = 1519, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1520"><strong>Mounted</strong></see> ↑ (All Classes) /// <para>Riding atop a Rathalos.</para> /// </summary> Mounted_1520 = 1520, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1521"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to act and taking increased damage.</para> /// </summary> Stun_1521 = 1521, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1522"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to act.</para> /// </summary> Stun_1522 = 1522, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1523"><strong>Haste+</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced. Effect cannot be nullified.</para> /// </summary> Haste_1523 = 1523, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1524"><strong>Blind</strong></see> ↓ (All Classes) /// <para>Encroaching darkness is lowering accuracy.</para> /// </summary> Blind_1524 = 1524, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1525"><strong>Thermal Low</strong></see> ↓ (All Classes) /// <para>The wind is high.</para> /// </summary> ThermalLow_1525 = 1525, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1526"><strong>Thermal High</strong></see> ↑ (All Classes) /// <para>The wind has died. Resistance to wind damage is increased.</para> /// </summary> ThermalHigh_1526 = 1526, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1527"><strong>Accursed Flame</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> AccursedFlame = 1527, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1528"><strong>Aetherially Charged</strong></see> ↑ (All Classes) /// <para>Charged with aether.</para> /// </summary> AetheriallyCharged = 1528, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1529"><strong>Woken</strong></see> ↑ (All Classes) /// <para>Overcharged with aether.</para> /// </summary> Woken = 1529, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1530"><strong>Beyond Limits</strong></see> ↑ (All Classes) /// <para>Hypercharged with aether.</para> /// </summary> BeyondLimits = 1530, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1531"><strong>Down the Rabbit Hole</strong></see> ↑ (All Classes) /// <para>Being guided to buried treasure.</para> /// </summary> DownTheRabbitHole = 1531, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1532"><strong>Viscous Aetheroplasm</strong></see> ↓ (All Classes) /// <para>Aetheroplasm is attached to your body. A stack of 5 will result in instant death.</para> /// </summary> ViscousAetheroplasm_1532 = 1532, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1533"><strong>Airbound</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Airbound = 1533, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1534"><strong>Role-playing</strong></see> ↑ (All Classes) /// <para>Experiencing what it is to be someone else.</para> /// </summary> Roleplaying = 1534, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1535"><strong>Full Moon</strong></see> ↑ (All Classes) /// <para>Unleashing the power of the full moon.</para> /// </summary> FullMoon = 1535, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1536"><strong>New Moon</strong></see> ↑ (All Classes) /// <para>Unleashing the power of the new moon.</para> /// </summary> NewMoon = 1536, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1537"><strong>Blood Moon</strong></see> ↑ (All Classes) /// <para>Bringing to bear the full might of the dark and bright blades.</para> /// </summary> BloodMoon = 1537, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1538"><strong>Moonlit</strong></see> ↓ (All Classes) /// <para>Under the influence of the full moon.</para> /// </summary> Moonlit = 1538, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1539"><strong>Moonshadowed</strong></see> ↓ (All Classes) /// <para>Under the influence of the new moon.</para> /// </summary> Moonshadowed = 1539, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1540"><strong>Veil of Shadow</strong></see> ↑ (All Classes) /// <para>Darkness shields you from the full moon's influence.</para> /// </summary> VeilOfShadow = 1540, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1541"><strong>Veil of Light</strong></see> ↑ (All Classes) /// <para>Light shields you from the new moon's influence.</para> /// </summary> VeilOfLight = 1541, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1542"><strong>Haunt</strong></see> ↑ (All Classes) /// <para>Memory is taking corporeal form.</para> /// </summary> Haunt = 1542, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1543"><strong>Haunt</strong></see> ↑ (All Classes) /// <para>Memory is taking corporeal form.</para> /// </summary> Haunt_1543 = 1543, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1544"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1544 = 1544, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1545"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_1545 = 1545, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1546"><strong>Odder</strong></see> ↓ (All Classes) /// <para>Transformed into an otter and unable to execute actions.</para> /// </summary> Odder = 1546, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1547"><strong>Indomitable Spirit</strong></see> ↑ (All Classes) /// <para>Maximum HP, damage dealt, and potency of HP restoration actions are increased.</para> /// </summary> IndomitableSpirit = 1547, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1548"><strong>Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Sprint_1548 = 1548, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1549"><strong>Unmagicked</strong></see> ↓ (All Classes) /// <para>Unable to use magicite.</para> /// </summary> Unmagicked = 1549, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1550"><strong>Magnetic Lysis +</strong></see> ↓ (All Classes) /// <para>Body is exhibiting a positive magnetic charge.</para> /// </summary> MagneticLysis = 1550, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1551"><strong>Magnetic Lysis -</strong></see> ↓ (All Classes) /// <para>Body is exhibiting a negative magnetic charge.</para> /// </summary> MagneticLysis_1551 = 1551, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1552"><strong>Magnetic Levitation</strong></see> ↓ (All Classes) /// <para>Suspended in midair.</para> /// </summary> MagneticLevitation_1552 = 1552, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1553"><strong>The One Dragon</strong></see> ↑ (All Classes) /// <para>Yiazmat's body is pulsing with power.</para> /// </summary> TheOneDragon = 1553, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1554"><strong>Borne Heart</strong></see> ↑ (All Classes) /// <para>Yiazmat's heart is exposed and can be broken.</para> /// </summary> BorneHeart = 1554, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1555"><strong>Heartless</strong></see> ↑ (All Classes) /// <para>Yiazmat's heart is destroyed. Maximum HP is decreased.</para> /// </summary> Heartless = 1555, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1556"><strong>Threatened</strong></see> ↑ (All Classes) /// <para>Maximum HP is decreased.</para> /// </summary> Threatened = 1556, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1557"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is severely decreased.</para> /// </summary> HpPenalty_1557 = 1557, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1558"><strong>HP Boost +1</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased by 1.</para> /// </summary> HpBoost1 = 1558, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1559"><strong>HP Boost +2</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased by 2.</para> /// </summary> HpBoost2 = 1559, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1560"><strong>HP Boost +3</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased by 3.</para> /// </summary> HpBoost3 = 1560, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1561"><strong>HP Boost +4</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased by 4.</para> /// </summary> HpBoost4 = 1561, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1562"><strong>Computation Mode</strong></see> ↑ (All Classes) /// <para>Basic computation protocol is loaded.</para> /// </summary> ComputationMode = 1562, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1563"><strong>Tartarus Mode</strong></see> ↑ (All Classes) /// <para>Tartarean protocol is loaded.</para> /// </summary> TartarusMode = 1563, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1564"><strong>Annihilation Mode</strong></see> ↑ (All Classes) /// <para>Annihilation protocol is loaded.</para> /// </summary> AnnihilationMode = 1564, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1565"><strong>Computation Boost</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> ComputationBoost = 1565, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1566"><strong>Computation Error</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> ComputationError = 1566, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1567"><strong>Primal Rage</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> PrimalRage = 1567, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1568"><strong>Slow+</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased. Effect cannot be nullified.</para> /// </summary> Slow_1568 = 1568, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1569"><strong>Auspicious</strong></see> ↑ (All Classes) /// <para>Temporarily granted the power of an auspice.</para> /// </summary> Auspicious = 1569, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1570"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_1570 = 1570, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1571"><strong>Temporal Barrier</strong></see> ↑ (All Classes) /// <para>The effect of Temporal Stasis is nullified.</para> /// </summary> TemporalBarrier = 1571, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1572"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1572 = 1572, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1573"><strong>Grudge</strong></see> ↓ (All Classes) /// <para>Damage taken is turning to resentment.</para> /// </summary> Grudge = 1573, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1574 = 1574, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1575"><strong>Brotherly Love</strong></see> ↑ (All Classes) /// <para>Bound by fraternal bonds.</para> /// </summary> BrotherlyLove = 1575, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1577"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_1577 = 1577, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1578"><strong>Searing Wind</strong></see> ↓ (All Classes) /// <para>Ignited by white-hot embers and scorching those nearby. Sustaining fire damage over time.</para> /// </summary> SearingWind_1578 = 1578, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1579"><strong>Thin Ice</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon ice-covered ground.</para> /// </summary> ThinIce_1579 = 1579, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1580"><strong>Thin Ice</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon ice-covered ground.</para> /// </summary> ThinIce_1580 = 1580, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1581"><strong>Adaptation</strong></see> ↑ (All Classes) /// <para>Adapted to an aetherially unstable environment.</para> /// </summary> Adaptation = 1581, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1582"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation = 1582, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1583"><strong>Elemental EXP Up</strong></see> ↑ (All Classes) /// <para>Elemental EXP earned through battle while at an elemental level lower than 20 is increased.</para> /// </summary> ElementalExpUp_1583 = 1583, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1584"><strong>Komainu's Favor</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> KomainusFavor = 1584, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1585"><strong>Inugami's Favor</strong></see> ↑ (All Classes) /// <para>Damage taken is decreased.</para> /// </summary> InugamisFavor = 1585, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1586"><strong>Senri's Favor</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> SenrisFavor = 1586, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1587"><strong>Elemental Harmony</strong></see> ↑ (All Classes) /// <para>Elemental EXP earned through battle is increased.</para> /// </summary> ElementalHarmony = 1587, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1588"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation_1588 = 1588, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1589"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation_1589 = 1589, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1590"><strong>Light in the Dark</strong></see> ↑ (All Classes) /// <para>Absorbing the light of a deepvoid torch and transforming it into mana.</para> /// </summary> LightInTheDark = 1590, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1591"><strong>Woken</strong></see> ↑ (All Classes) /// <para>Overcharged with aether.</para> /// </summary> Woken_1591 = 1591, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1592"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1592 = 1592, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1593"><strong>Adaptation</strong></see> ↑ (All Classes) /// <para>Adapted to an aetherially unstable environment.</para> /// </summary> Adaptation_1593 = 1593, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1594"><strong>Hundred Fists</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> HundredFists_1594 = 1594, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1595"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_1595 = 1595, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1596"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_1596 = 1596, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1597"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1597 = 1597, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1598"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation_1598 = 1598, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1599"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic_1599 = 1599, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1600"><strong>Entropy</strong></see> ↓ (All Classes) /// <para>Plagued by chaotic flames that will deal damage to nearby party members when the effect ends.</para> /// </summary> Entropy = 1600, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1601"><strong>Dynamic Fluid</strong></see> ↓ (All Classes) /// <para>Plagued by a chaotic body of water that will deal damage when the effect ends.</para> /// </summary> DynamicFluid = 1601, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1602"><strong>Headwind</strong></see> ↓ (All Classes) /// <para>Plagued by chaotic frontal winds that will deal damage when the effect ends. Effect dissipates upon exposure to directional winds. Knockback effects from winds faced head-on are doubled, while those of rear winds are reduced by half.</para> /// </summary> Headwind = 1602, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1603"><strong>Tailwind</strong></see> ↓ (All Classes) /// <para>Plagued by chaotic rear winds that will deal damage when the effect ends. Effect dissipates upon exposure to directional winds. Knockback effects from winds faced head-on are reduced by half, while those of rear winds are doubled.</para> /// </summary> Tailwind_1603 = 1603, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1604"><strong>Accretion</strong></see> ↓ (All Classes) /// <para>Plagued by rapidly hardening mud. All HP recovery is reduced. Effect dissipates once fully healed.</para> /// </summary> Accretion = 1604, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1605"><strong>Primordial Crust</strong></see> ↓ (All Classes) /// <para>Plagued by rapidly hardening mud. Damage taken is reduced, but all HP recovery is nullified. Effect dissipates when damage that would cause HP to drop below 0 is taken, leaving HP at 1.</para> /// </summary> PrimordialCrust = 1605, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1606"><strong>Muddy</strong></see> ↑ (All Classes) /// <para>In need of a good rinsing. Damage taken is reduced.</para> /// </summary> Muddy = 1606, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1608"><strong>Transfiguration</strong></see> ↓ (All Classes) /// <para>Corporeal form has been altered.</para> /// </summary> Transfiguration_1608 = 1608, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1609"><strong>Transfiguration</strong></see> ↓ (All Classes) /// <para>Corporeal form has been altered.</para> /// </summary> Transfiguration_1609 = 1609, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1610"><strong>Landborne</strong></see> ↑ (All Classes) /// <para>Drawing power from the land itself.</para> /// </summary> Landborne = 1610, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1611"><strong>Arcane Bulwark</strong></see> ↑ (All Classes) /// <para>Protected by a magicked barrier.</para> /// </summary> ArcaneBulwark = 1611, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1612"><strong>Defenseless</strong></see> ↓ (All Classes) /// <para>Unable to call upon the arcane bulwark for protection.</para> /// </summary> Defenseless = 1612, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1613"><strong>Burning Soul</strong></see> ↑ (All Classes) /// <para>The immortal spirit blazes bright within.</para> /// </summary> BurningSoul = 1613, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1614"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1614 = 1614, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1615"><strong>Crumbling Bulwark</strong></see> ↑ (All Classes) /// <para>Magicked barrier is gradually disintegrating.</para> /// </summary> CrumblingBulwark = 1615, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1616"><strong>Death from Above</strong></see> ↓ (All Classes) /// <para>Any auto-attack from a skyborne opponent will apply Doom.</para> /// </summary> DeathFromAbove = 1616, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1617"><strong>Death from Below</strong></see> ↓ (All Classes) /// <para>Any auto-attack from a landborne opponent will apply Doom.</para> /// </summary> DeathFromBelow = 1617, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1618"><strong>Logos-minded</strong></see> ↑ (All Classes) /// <para>Ruminating on extracted mnemes. Ready to use select logos actions.</para> /// </summary> Logosminded = 1618, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1619"><strong>Preoccupied</strong></see> ↑ (All Classes) /// <para>Engaged in complex maneuvers.</para> /// </summary> Preoccupied = 1619, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1620"><strong>Unveiled</strong></see> ↑ (All Classes) /// <para>Gilgamesh's true form is revealed.</para> /// </summary> Unveiled = 1620, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1621"><strong>Concealed</strong></see> ↑ (All Classes) /// <para>Unable to be detected from a distance.</para> /// </summary> Concealed_1621 = 1621, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1622"><strong>Critical Strikes</strong></see> ↑ (All Classes) /// <para>All attacks are dealing critical damage.</para> /// </summary> CriticalStrikes_1622 = 1622, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1623"><strong>Live Wire</strong></see> ↑ (All Classes) /// <para>Crackling like a levinbolt. Damage dealt against opponents vulnerable to electricity is increased.</para> /// </summary> LiveWire = 1623, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1624"><strong>Looper</strong></see> ↓ (All Classes) /// <para>Corrupted by Omega's program loop.</para> /// </summary> Looper = 1624, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1625"><strong>Memory Degradation</strong></see> ↓ (All Classes) /// <para>Gradually forgetting important details. A stack of 6 will result in full memory loss.</para> /// </summary> MemoryDegradation = 1625, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1626"><strong>Memory Loss</strong></see> ↓ (All Classes) /// <para>Bereft of sense of self and purpose.</para> /// </summary> MemoryLoss = 1626, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1627"><strong>Chains of Memory</strong></see> ↓ (All Classes) /// <para>Under siege by what you can no longer remember.</para> /// </summary> ChainsOfMemory = 1627, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1628"><strong>Gradual Petrification</strong></see> ↓ (All Classes) /// <para>Flesh once soft is slowly turning to stone. Effect dissipates once fully healed.</para> /// </summary> GradualPetrification_1628 = 1628, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1629"><strong>Kill Command</strong></see> ↓ (All Classes) /// <para>Deleting variables from the Interdimensional Rift.</para> /// </summary> KillCommand = 1629, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1630"><strong>Love's True Form</strong></see> ↑ (All Classes) /// <para>Suzaku's heretofore unknown visage is revealed.</para> /// </summary> LovesTrueForm = 1630, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1631"><strong>Wisdom of the Aetherweaver</strong></see> ↑ (All Classes) /// <para>Magic damage is increased.</para> /// </summary> WisdomOfTheAetherweaver = 1631, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1632"><strong>Wisdom of the Martialist</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> WisdomOfTheMartialist = 1632, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1633"><strong>Wisdom of the Platebearer</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased while damage taken is reduced.</para> /// </summary> WisdomOfThePlatebearer = 1633, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1634"><strong>Wisdom of the Guardian</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased while damage taken is reduced.</para> /// </summary> WisdomOfTheGuardian = 1634, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1635"><strong>Wisdom of the Ordained</strong></see> ↑ (All Classes) /// <para>Maximum MP and healing magic potency are increased.</para> /// </summary> WisdomOfTheOrdained = 1635, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1636"><strong>Wisdom of the Skirmisher</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> WisdomOfTheSkirmisher = 1636, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1637"><strong>Wisdom of the Watcher</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced, while damage dealt is reduced.</para> /// </summary> WisdomOfTheWatcher = 1637, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1638"><strong>Wisdom of the Templar</strong></see> ↑ (All Classes) /// <para>Maximum HP and healing magic potency are increased, while damage dealt is reduced.</para> /// </summary> WisdomOfTheTemplar = 1638, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1639"><strong>Wisdom of the Irregular</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while magic defense is reduced.</para> /// </summary> WisdomOfTheIrregular = 1639, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1640"><strong>Wisdom of the Breathtaker</strong></see> ↑ (All Classes) /// <para>Movement speed, evasion, and poison resistance are increased.</para> /// </summary> WisdomOfTheBreathtaker = 1640, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1641"><strong>Spirit of the Remembered</strong></see> ↑ (All Classes) /// <para>Maximum HP and accuracy are increased. Chance of automatic revival upon KO.</para> /// </summary> SpiritOfTheRemembered = 1641, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1642"><strong>Protect L</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> ProtectL = 1642, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1643"><strong>Shell L</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> ShellL = 1643, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1644"><strong>Swift L</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> SwiftL = 1644, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1645"><strong>Rapid Recast</strong></see> ↑ (All Classes) /// <para>Recast time of next ability is reduced.</para> /// </summary> RapidRecast = 1645, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1646"><strong>Bravery L</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> BraveryL = 1646, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1647"><strong>Solid Shield</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> SolidShield = 1647, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1648"><strong>Spell Shield</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> SpellShield = 1648, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1649"><strong>Reflect L</strong></see> ↑ (All Classes) /// <para>Reflecting magic back on its caster.</para> /// </summary> ReflectL = 1649, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1650"><strong>Poison L</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> PoisonL = 1650, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1651"><strong>Refresh L</strong></see> ↑ (All Classes) /// <para>Magia aether regeneration is increased.</para> /// </summary> RefreshL = 1651, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1652"><strong>Magic Burst</strong></see> ↑ (All Classes) /// <para>Damage dealt by spells and MP cost of spells is increased.</para> /// </summary> MagicBurst = 1652, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1653"><strong>Double Edge L</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increasing, while you are sustaining damage over time.</para> /// </summary> DoubleEdgeL = 1653, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1654"><strong>Spirit Dart L</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> SpiritDartL = 1654, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1655"><strong>Banish L</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> BanishL = 1655, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1656"><strong>Boost</strong></see> ↑ (All Classes) /// <para>Attack power of next weaponskill is increased.</para> /// </summary> Boost_1656 = 1656, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1657"><strong>Incense L</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> IncenseL = 1657, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1658"><strong>Omega</strong></see> ↑ (All Classes) /// <para>Inscrutable.</para> /// </summary> Omega = 1658, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1659"><strong>Infinite Limit</strong></see> ↑ (All Classes) /// <para>Actions transcending standard limits.</para> /// </summary> InfiniteLimit = 1659, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1660"><strong>Packet Filter M</strong></see> ↓ (All Classes) /// <para>Firewall is preventing the dealing of damage to Omega-M.</para> /// </summary> PacketFilterM = 1660, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1661"><strong>Packet Filter F</strong></see> ↓ (All Classes) /// <para>Firewall is preventing the dealing of damage to Omega-F.</para> /// </summary> PacketFilterF = 1661, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1662"><strong>Local Resonance</strong></see> ↑ (All Classes) /// <para>Combat capabilities increase with proximity to counterpart.</para> /// </summary> LocalResonance = 1662, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1663"><strong>Remote Resonance</strong></see> ↑ (All Classes) /// <para>Combat capabilities increase with distance from counterpart.</para> /// </summary> RemoteResonance = 1663, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1664"><strong>Critical Synchronization Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Data corruption will cause damage and spread when the effect ends.</para> /// </summary> CriticalSynchronizationBug = 1664, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1665"><strong>Critical Overflow Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Data corruption will cause damage and spread when the effect ends.</para> /// </summary> CriticalOverflowBug = 1665, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1666"><strong>Critical Underflow Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Coming in contact with allies will cause data corruption to spread. Corruption will cause damage when the effect ends.</para> /// </summary> CriticalUnderflowBug = 1666, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1667"><strong>Synchronization Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to synchronization bugs.</para> /// </summary> SynchronizationDebugger = 1667, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1668"><strong>Overflow Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to overflow bugs.</para> /// </summary> OverflowDebugger = 1668, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1669"><strong>Underflow Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to underflow bugs.</para> /// </summary> UnderflowDebugger = 1669, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1670"><strong>Latent Defect</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> LatentDefect = 1670, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1671"><strong>Cascading Latent Defect</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> CascadingLatentDefect = 1671, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1672"><strong>Local Regression</strong></see> ↓ (All Classes) /// <para>Affected by a patch error. Data corruption will cause damage when in close proximity to others affected by the same error, or when the effect ends.</para> /// </summary> LocalRegression = 1672, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1673"><strong>Remote Regression</strong></see> ↓ (All Classes) /// <para>Affected by a patch error. Data corruption will cause damage when out of range of others affected by the same error, or when the effect ends.</para> /// </summary> RemoteRegression = 1673, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1674"><strong>Omega-M</strong></see> ↑ (All Classes) /// <para>Mimicking the male form.</para> /// </summary> OmegaM = 1674, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1675"><strong>Omega-F</strong></see> ↑ (All Classes) /// <para>Mimicking the female form.</para> /// </summary> OmegaF = 1675, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1676"><strong>Superfluid</strong></see> ↑ (All Classes) /// <para>In a transitional liquid state.</para> /// </summary> Superfluid = 1676, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1677"><strong>Bloodbath L</strong></see> ↑ (All Classes) /// <para>Attacks generate HP equal to a portion of damage dealt.</para> /// </summary> BloodbathL = 1677, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1678 = 1678, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1681"><strong>Paying the Piper</strong></see> ↓ (All Classes) /// <para>Advancing in the direction to which you are called.</para> /// </summary> PayingThePiper = 1681, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1682"><strong>Sleeping Dark</strong></see> ↑ (All Classes) /// <para>Ying is fast asleep.</para> /// </summary> SleepingDark = 1682, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1683"><strong>Sleeping Light</strong></see> ↑ (All Classes) /// <para>Yang is fast asleep.</para> /// </summary> SleepingLight = 1683, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1684"><strong>Break III Edict</strong></see> ↑ (All Classes) /// <para>Following orders to perform Little Break III.</para> /// </summary> BreakIiiEdict = 1684, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1685"><strong>Rush Edict</strong></see> ↑ (All Classes) /// <para>Following orders to perform Little Rush.</para> /// </summary> RushEdict = 1685, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1686"><strong>Tornado Edict</strong></see> ↑ (All Classes) /// <para>Following orders to perform Little Tornado.</para> /// </summary> TornadoEdict = 1686, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1687"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_1687 = 1687, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1688"><strong>Group Oriented</strong></see> ↑ (All Classes) /// <para>Cooperatively attacking the primary target.</para> /// </summary> GroupOriented = 1688, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1689"><strong>Primary Target</strong></see> ↓ (All Classes) /// <para>Identified as the focus of a coordinated attack.</para> /// </summary> PrimaryTarget = 1689, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1690"><strong>Skyborne</strong></see> ↑ (All Classes) /// <para>Drawing power from the firmament.</para> /// </summary> Skyborne = 1690, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1691"><strong>Landborne</strong></see> ↑ (All Classes) /// <para>Drawing power from the land itself.</para> /// </summary> Landborne_1691 = 1691, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1692"><strong>Guardian Spirit</strong></see> ↑ (All Classes) /// <para>Soul ablaze with the will to protect.</para> /// </summary> GuardianSpirit = 1692, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1693"><strong>Slashing Resistance Down</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> SlashingResistanceDown_1693 = 1693, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1694"><strong>Piercing Resistance Down</strong></see> ↓ (All Classes) /// <para>Piercing resistance is reduced.</para> /// </summary> PiercingResistanceDown_1694 = 1694, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1695"><strong>Apathetic</strong></see> ↓ (All Classes) /// <para>Unable to use HP restoration abilities while MP slowly drains. Not that you care.</para> /// </summary> Apathetic_1695 = 1695, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1696"><strong>Drowning</strong></see> ↓ (All Classes) /// <para>Being dragged under by the current. Unable to move or execute actions.</para> /// </summary> Drowning = 1696, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1697"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_1697 = 1697, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1698"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation_1698 = 1698, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1699"><strong>Looming Crescendo</strong></see> ↓ (All Classes) /// <para>The melody of the pyre calls. Will be compelled in the designated direction when the effect ends.</para> /// </summary> LoomingCrescendo = 1699, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1700"><strong>Mutation</strong></see> ↑ (All Classes) /// <para>Aetherial instability is triggering mutations.</para> /// </summary> Mutation_1700 = 1700, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1701"><strong>Electromagnetic Field</strong></see> ↑ (All Classes) /// <para>Encased by a highly charged protective barrier.</para> /// </summary> ElectromagneticField = 1701, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1702"><strong>Ice Resistance Down</strong></see> ↓ (All Classes) /// <para>Ice resistance is reduced.</para> /// </summary> IceResistanceDown = 1702, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1703"><strong>Biohacked</strong></see> ↓ (All Classes) /// <para>Mind is being infiltrated. Will be temporarily stunned when the effect ends.</para> /// </summary> Biohacked = 1703, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1704"><strong>Looper</strong></see> ↓ (All Classes) /// <para>Corrupted by Omega's program loop.</para> /// </summary> Looper_1704 = 1704, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1705"><strong>Hidden</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> Hidden_1705 = 1705, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1706"><strong>Evasion Up</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced.</para> /// </summary> EvasionUp_1706 = 1706, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1707"><strong>Right Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the right side of the body remain undetected. Hits to the front, back, and left sides of the body will result in severe damage.</para> /// </summary> RightUnseen = 1707, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1708"><strong>Left Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the left side of the body remain undetected. Hits to the front, back, and right sides of the body will result in severe damage.</para> /// </summary> LeftUnseen = 1708, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1709"><strong>Back Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the back of the body remain undetected. Hits to the front, right, and left sides of the body will result in severe damage.</para> /// </summary> BackUnseen = 1709, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1710"><strong>Astral Essence</strong></see> ↑ (All Classes) /// <para>Astrally charged attacks are enhanced.</para> /// </summary> AstralEssence = 1710, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1711"><strong>Umbral Essence</strong></see> ↑ (All Classes) /// <para>Umbrally charged attacks are enhanced.</para> /// </summary> UmbralEssence = 1711, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1712"><strong>Astral Cloak</strong></see> ↑ (All Classes) /// <para>Enshrouded in light and resistant to certain umbrally charged attacks. </para> /// </summary> AstralCloak = 1712, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1713"><strong>Umbral Cloak</strong></see> ↑ (All Classes) /// <para>Enshrouded in shadow and resistant to certain astrally charged attacks.</para> /// </summary> UmbralCloak = 1713, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1714"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_1714 = 1714, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1715"><strong>Malodorous</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> Malodorous = 1715, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1716"><strong>Boost</strong></see> ↑ (All Classes) /// <para>Potency of next offensive spell is increased.</para> /// </summary> Boost_1716 = 1716, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1717"><strong>Off-guard</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> Offguard = 1717, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1718"><strong>Waxing Nocturne</strong></see> ↑ (All Classes) /// <para>Damage dealt and movement speed are increased. Waning Nocturne will take hold when the effect ends.</para> /// </summary> WaxingNocturne = 1718, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1719"><strong>Mighty Guard</strong></see> ↑ (All Classes) /// <para>Damage taken and dealt are reduced, while enmity is increased.</para> /// </summary> MightyGuard = 1719, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1720"><strong>Ice Spikes</strong></see> ↑ (All Classes) /// <para>Upon taking physical damage, sharpened spikes deal ice damage to the attacking opponent, potentially slowing them.</para> /// </summary> IceSpikes_1720 = 1720, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1721"><strong>Peculiar Light</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> PeculiarLight = 1721, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1722"><strong>Diamondback</strong></see> ↑ (All Classes) /// <para>Though unable to move, damage taken is reduced.</para> /// </summary> Diamondback = 1722, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1723"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_1723 = 1723, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1724"><strong>Veil of the Whorl</strong></see> ↑ (All Classes) /// <para>Dealing water damage to attackers upon taking damage.</para> /// </summary> VeilOfTheWhorl_1724 = 1724, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1725"><strong>Cursekeeper</strong></see> ↓ (All Classes) /// <para>Afflicted by a karmic curse carried within a paper doll. Damage taken will be channeled into an explosion when the effect ends or you are KO'd.</para> /// </summary> Cursekeeper = 1725, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1726"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1726 = 1726, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1727"><strong>Waning Nocturne</strong></see> ↓ (All Classes) /// <para>Unable to auto-attack or use spells, weaponskills, and abilities.</para> /// </summary> WaningNocturne = 1727, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1728"><strong>Contractual Obligation</strong></see> ↓ (All Classes) /// <para>Mercenaries are allied to a team. Contract will expire when the counter reaches zero. HP restored by healing magic is reduced.</para> /// </summary> ContractualObligation = 1728, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1729"><strong>Sheer Will</strong></see> ↑ (All Classes) /// <para>Remaining standing through pure determination. Damage dealt is increased.</para> /// </summary> SheerWill = 1729, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1730"><strong>Flying High</strong></see> ↑ (All Classes) /// <para>Nearly giddy with the thrill of battle, increasing damage dealt, potency of HP restoration actions, and the rate at which the limit gauge fills. Effect is nullified when piloting warmachina.</para> /// </summary> FlyingHigh = 1730, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1731"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Frozen solid and unable to execute actions.</para> /// </summary> DeepFreeze_1731 = 1731, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1732"><strong>Elemental EXP Up</strong></see> ↑ (All Classes) /// <para>Elemental EXP earned through battle while at an elemental level lower than 35 is increased.</para> /// </summary> ElementalExpUp_1732 = 1732, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1733"><strong>Shieldbearer</strong></see> ↑ (All Classes) /// <para>Equipped with an ethereal shield and able to use the duty action Heavenly Shield.</para> /// </summary> Shieldbearer = 1733, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1734"><strong>Swordbearer</strong></see> ↑ (All Classes) /// <para>Equipped with an ethereal sword and able to use the duty action Heavenly Sword.</para> /// </summary> Swordbearer = 1734, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1735"><strong>Heavenly Shield</strong></see> ↑ (All Classes) /// <para>Protected by an ethereal shield. Damage taken from certain attacks is reduced.</para> /// </summary> HeavenlyShield = 1735, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1736"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_1736 = 1736, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1737"><strong>Toad Oil</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced.</para> /// </summary> ToadOil = 1737, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1738"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_1738 = 1738, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1739"><strong>Wisdom of the Elder</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased. Magic damage taken and spell MP cost are reduced.</para> /// </summary> WisdomOfTheElder = 1739, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1740"><strong>Wisdom of the Duelist</strong></see> ↑ (All Classes) /// <para>Physical damage dealt and maximum HP are increased.</para> /// </summary> WisdomOfTheDuelist = 1740, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1741"><strong>Wisdom of the Fiendhunter</strong></see> ↑ (All Classes) /// <para>Physical damage dealt and evasion are increased.</para> /// </summary> WisdomOfTheFiendhunter = 1741, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1742"><strong>Wisdom of the Indomitable</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced. Maximum HP is boosted each time you take damage equivalent to at least 50% of your maximum HP from a single-target attack.</para> /// </summary> WisdomOfTheIndomitable = 1742, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1743"><strong>Sacrifice</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Sacrifice = 1743, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1744"><strong>Stellation</strong></see> ↑ (All Classes) /// <para>Transformed into a many-pointed star. Damage dealt is increased.</para> /// </summary> Stellation = 1744, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1745"><strong>Black Hole Buffer</strong></see> ↑ (All Classes) /// <para>Invulnerable to the pull of the black hole.</para> /// </summary> BlackHoleBuffer = 1745, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1746"><strong>Blown Away</strong></see> ↓ (All Classes) /// <para>Carried away by an updraft.</para> /// </summary> BlownAway = 1746, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1747"><strong>Fearless</strong></see> ↑ (All Classes) /// <para>Empowered by courage, increasing damage dealt.</para> /// </summary> Fearless = 1747, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1748"><strong>Guardians' Aegis</strong></see> ↑ (All Classes) /// <para>Shielded by a protective barrier.</para> /// </summary> GuardiansAegis = 1748, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1749"><strong>Area of Influence Up</strong></see> ↑ (All Classes) /// <para>Area of effect for actions is expanded.</para> /// </summary> AreaOfInfluenceUp_1749 = 1749, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1750"><strong>Twin Fates</strong></see> ↑ (All Classes) /// <para>Orlasrach and Munderg are in resonance with one another, each protecting its twin.</para> /// </summary> TwinFates = 1750, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1751"><strong>Soul of Fire</strong></see> ↑ (All Classes) /// <para>Aetherial aspect is leaning primarily to fire.</para> /// </summary> SoulOfFire = 1751, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1752"><strong>Soul of Ice</strong></see> ↑ (All Classes) /// <para>Aetherial aspect is leaning primarily to ice.</para> /// </summary> SoulOfIce = 1752, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1753"><strong>Blood Sacrifice</strong></see> ↓ (All Classes) /// <para>Damage taken is increased if those bonded by the blood ritual are separated.</para> /// </summary> BloodSacrifice = 1753, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1754"><strong>Aetherially Primed</strong></see> ↑ (All Classes) /// <para>Awash in aether attuned for traveling via unstable currents.</para> /// </summary> AetheriallyPrimed = 1754, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1755"><strong>Resurrection Restricted</strong></see> ↓ (All Classes) /// <para>The influence of Eureka-forged weapons is making resurrection by certain means impossible.</para> /// </summary> ResurrectionRestricted = 1755, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1756"><strong>Elemental Blessing</strong></see> ↑ (All Classes) /// <para>An area of land has been granted the elementals' protection, reducing damage taken for all who enter.</para> /// </summary> ElementalBlessing = 1756, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1757"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1757 = 1757, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1758"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_1758 = 1758, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1759"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_1759 = 1759, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1760"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1760 = 1760, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1761"><strong>Ice Resistance Up</strong></see> ↑ (All Classes) /// <para>Ice resistance is increased.</para> /// </summary> IceResistanceUp_1761 = 1761, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1762"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_1762 = 1762, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1763"><strong>HP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> HpBoost_1763 = 1763, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1764"><strong>Artificially Enhanced</strong></see> ↑ (All Classes) /// <para>Magitek plate armor has been enhanced.</para> /// </summary> ArtificiallyEnhanced = 1764, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1765"><strong>Artificially Enhanced</strong></see> ↑ (All Classes) /// <para>Magitek plate armor has been enhanced.</para> /// </summary> ArtificiallyEnhanced_1765 = 1765, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1766"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1766 = 1766, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1767"><strong>Weak Magitek Field</strong></see> ↑ (All Classes) /// <para>Protection provided by towers has lessened, but damage taken is still reduced.</para> /// </summary> WeakMagitekField = 1767, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1768"><strong>Watery Grave</strong></see> ↓ (All Classes) /// <para>You are trapped in a magicked prison of water and are unable to execute actions.</para> /// </summary> WateryGrave_1768 = 1768, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1769"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero. Effect dissipates once fully healed.</para> /// </summary> Doom_1769 = 1769, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1770"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1770 = 1770, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1771"><strong>True Virtue</strong></see> ↑ (All Classes) /// <para>As an ideal made manifest, strength surpasses mortal imagination.</para> /// </summary> TrueVirtue = 1771, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1772"><strong>Aggressive Posture</strong></see> ↑ (All Classes) /// <para>Prepared to carry out an assault.</para> /// </summary> AggressivePosture = 1772, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1773"><strong>Defensive Posture</strong></see> ↑ (All Classes) /// <para>Prepared to stand fast.</para> /// </summary> DefensivePosture = 1773, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1774"><strong>Blazing Aramitama</strong></see> ↑ (All Classes) /// <para>The aramitama has been stoked, and both body and soul surrendered to it.</para> /// </summary> BlazingAramitama = 1774, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1775"><strong>Reforged</strong></see> ↑ (All Classes) /// <para>Aetherial composition has been altered, changing elemental aspect.</para> /// </summary> Reforged = 1775, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1776"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown_1776 = 1776, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1777"><strong>Reforged</strong></see> ↑ (All Classes) /// <para>Aetherial composition has been altered, changing elemental aspect.</para> /// </summary> Reforged_1777 = 1777, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1778"><strong>Hoofing It</strong></see> ↑ (All Classes) /// <para>Unable to summon or ride mounts, or to equip fashion accessories.</para> /// </summary> HoofingIt = 1778, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1779"><strong>Ajisai</strong></see> ↓ (All Classes) /// <para>Fine cuts are causing damage over time.</para> /// </summary> Ajisai = 1779, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1781"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1781 = 1781, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1782"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_1782 = 1782, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1783"><strong>Soul of Fire</strong></see> ↑ (All Classes) /// <para>Aetherial aspect is leaning primarily to fire.</para> /// </summary> SoulOfFire_1783 = 1783, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1784"><strong>Soul of Ice</strong></see> ↑ (All Classes) /// <para>Aetherial aspect is leaning primarily to ice.</para> /// </summary> SoulOfIce_1784 = 1784, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1785"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_1785 = 1785, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1786"><strong>Pure Muscle</strong></see> ↑ (All Classes) /// <para>Muscles are rippling with power. Potency and range of certain actions are increased.</para> /// </summary> PureMuscle = 1786, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1787"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_1787 = 1787, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1788"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_1788 = 1788, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1789"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1789 = 1789, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1790"><strong>Shadow Links</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time. Movement speed is also decreased.</para> /// </summary> ShadowLinks_1790 = 1790, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1791"><strong>Magic Infusion</strong></see> ↑ (All Classes) /// <para>Imbued with enough potent aether to execute a certain action.</para> /// </summary> MagicInfusion = 1791, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1792"><strong>Artificial Boost</strong></see> ↑ (All Classes) /// <para>Magitek plate armor has been enhanced beyond standard limits.</para> /// </summary> ArtificialBoost = 1792, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1793"><strong>Mark of Mortality</strong></see> ↓ (All Classes) /// <para>Branded with a mark of mortality. Damage dealt is reduced. Too many stacks will result in KO.</para> /// </summary> MarkOfMortality = 1793, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1794"><strong>Heated Up</strong></see> ↑ (All Classes) /// <para>Burning vast quantities of energy and emitting steam from a portion of the body.</para> /// </summary> HeatedUp = 1794, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1795"><strong>Heated Up</strong></see> ↑ (All Classes) /// <para>Burning vast quantities of energy and emitting steam from a portion of the body.</para> /// </summary> HeatedUp_1795 = 1795, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1800"><strong>Bloated</strong></see> ↑ (All Classes) /// <para>Damage taken is increased. The greater the stack, the higher the increase.</para> /// </summary> Bloated_1800 = 1800, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1806"><strong>Reusing</strong></see> ↑ (Disciple of the Hand) /// <para>A portion of materials are being returned to your inventory.</para> /// </summary> Reusing = 1806, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1814"><strong>Flourishing Cascade</strong></see> ↑ (DNC) /// <para>Able to execute Reverse Cascade.</para> /// </summary> FlourishingCascade = 1814, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1815"><strong>Flourishing Fountain</strong></see> ↑ (DNC) /// <para>Able to execute Fountainfall.</para> /// </summary> FlourishingFountain = 1815, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1816"><strong>Flourishing Windmill</strong></see> ↑ (DNC) /// <para>Able to execute Rising Windmill.</para> /// </summary> FlourishingWindmill = 1816, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1817"><strong>Flourishing Shower</strong></see> ↑ (DNC) /// <para>Able to execute Bloodshower.</para> /// </summary> FlourishingShower = 1817, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1818"><strong>Standard Step</strong></see> ↑ (DNC) /// <para>Caught up in the dance and only able to execute step actions, role actions, Sprint, Limit Break, Standard Finish, Curing Waltz, Shield Samba, and En Avant.</para> /// </summary> StandardStep = 1818, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1819"><strong>Technical Step</strong></see> ↑ (DNC) /// <para>Caught up in the dance and only able to execute step actions, role actions, Sprint, Limit Break, Technical Finish, Curing Waltz, Shield Samba, and En Avant.</para> /// </summary> TechnicalStep = 1819, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1820"><strong>Threefold Fan Dance</strong></see> ↑ (DNC) /// <para>Able to execute Fan Dance III.</para> /// </summary> ThreefoldFanDance = 1820, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1821"><strong>Standard Finish</strong></see> ↑ (DNC) /// <para>Damage dealt is increased.</para> /// </summary> StandardFinish = 1821, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1822"><strong>Technical Finish</strong></see> ↑ (DNC) /// <para>Damage dealt is increased.</para> /// </summary> TechnicalFinish = 1822, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1823"><strong>Closed Position</strong></see> ↑ (DNC) /// <para>Sharing the effects of certain actions with target party member.</para> /// </summary> ClosedPosition = 1823, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1824"><strong>Dance Partner</strong></see> ↑ (DNC) /// <para>Sharing the effects of certain actions executed by your dancer companion.</para> /// </summary> DancePartner = 1824, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1825"><strong>Devilment</strong></see> ↑ (DNC) /// <para>Critical hit rate and direct hit rate are increased.</para> /// </summary> Devilment = 1825, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1826"><strong>Shield Samba</strong></see> ↑ (DNC) /// <para>Damage taken is reduced.</para> /// </summary> ShieldSamba = 1826, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1827"><strong>Improvisation</strong></see> ↑ (DNC) /// <para>Dancing to the beat of your own drum.</para> /// </summary> Improvisation = 1827, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1828"><strong>Improvisation</strong></see> ↑ (DNC) /// <para>Healing magic potency is increased.</para> /// </summary> Improvisation_1828 = 1828, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1829"><strong>Invincibility</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage.</para> /// </summary> Invincibility_1829 = 1829, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1830"><strong>Monstrous</strong></see> ↓ (All Classes) /// <para>Vile magicks have wrought a terrible transformation to body and mind.</para> /// </summary> Monstrous = 1830, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1831"><strong>No Mercy</strong></see> ↑ (GNB) /// <para>Damage dealt is increased.</para> /// </summary> NoMercy = 1831, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1832"><strong>Camouflage</strong></see> ↑ (GNB) /// <para>Parry rate is increased while damage taken is reduced.</para> /// </summary> Camouflage = 1832, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1833"><strong>Royal Guard</strong></see> ↑ (GNB) /// <para>Enmity is increased.</para> /// </summary> RoyalGuard_1833 = 1833, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1834"><strong>Nebula</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> Nebula = 1834, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1835"><strong>Aurora</strong></see> ↑ (GNB) /// <para>Regenerating HP over time.</para> /// </summary> Aurora = 1835, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1836"><strong>Superbolide</strong></see> ↑ (GNB) /// <para>Impervious to most attacks.</para> /// </summary> Superbolide = 1836, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1837"><strong>Sonic Break</strong></see> ↓ (GNB) /// <para>Sustaining damage over time.</para> /// </summary> SonicBreak = 1837, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1838"><strong>Bow Shock</strong></see> ↓ (GNB) /// <para>Sustaining damage over time.</para> /// </summary> BowShock = 1838, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1839"><strong>Heart of Light</strong></see> ↑ (GNB) /// <para>Physical and magic damage taken are reduced.</para> /// </summary> HeartOfLight = 1839, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1840"><strong>Heart of Stone</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> HeartOfStone = 1840, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1841 = 1841, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1842"><strong>Ready to Rip</strong></see> ↑ (GNB) /// <para>Able to execute Jugular Rip.</para> /// </summary> ReadyToRip = 1842, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1843"><strong>Ready to Tear</strong></see> ↑ (GNB) /// <para>Able to execute Abdomen Tear.</para> /// </summary> ReadyToTear = 1843, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1844"><strong>Ready to Gouge</strong></see> ↑ (GNB) /// <para>Able to execute Eye Gouge.</para> /// </summary> ReadyToGouge = 1844, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1845"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_1845 = 1845, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1846"><strong>Curse of the Ronka</strong></see> ↓ (All Classes) /// <para>A plague of ancient anathema clutters your thoughts, spurring you to deny your very existence. Increased exposure will eventually lead to madness and death.</para> /// </summary> CurseOfTheRonka = 1846, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1847"><strong>Esprit</strong></see> ↑ (DNC) /// <para>The Esprit Gauge is increasing when you or the party member designated as your Dance Partner executes a weaponskill or casts a spell.</para> /// </summary> Esprit = 1847, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1848"><strong>Esprit</strong></see> ↑ (DNC) /// <para>The Esprit Gauge is increasing when you or a party member executes a weaponskill or casts a spell.</para> /// </summary> Esprit_1848 = 1848, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1849"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1849 = 1849, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1850"><strong>Surging Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Surging Tsunami will occur when effect expires.</para> /// </summary> SurgingWaters = 1850, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1851"><strong>Splashing Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Splashing Tsunami will occur when effect expires.</para> /// </summary> SplashingWaters = 1851, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1852"><strong>Swirling Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Swirling Tsunami will occur when effect expires.</para> /// </summary> SwirlingWaters = 1852, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1853"><strong>Smothering Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Smothering Tsunami will occur when effect expires.</para> /// </summary> SmotheringWaters = 1853, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1854"><strong>Sundering Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Sundering Tsunami will occur when effect expires.</para> /// </summary> SunderingWaters = 1854, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1855"><strong>Sweeping Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Sweeping Tsunami will occur when effect expires.</para> /// </summary> SweepingWaters = 1855, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1856"><strong>Sheltron</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> Sheltron_1856 = 1856, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1857"><strong>Nascent Flash</strong></see> ↑ (WAR) /// <para>Restoring HP with each weaponskill successfully delivered.</para> /// </summary> NascentFlash = 1857, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1858"><strong>Nascent Glint</strong></see> ↑ (WAR) /// <para>Receiving 100% of all HP recovered by the warrior who granted this status via Nascent Flash. Damage taken is reduced.</para> /// </summary> NascentGlint = 1858, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1859"><strong>Fading Fast</strong></see> ↓ (All Classes) /// <para>Reduction of life-sustaining aether by concealment techniques is placing strain on the body. Failure to remove this effect will result in KO.</para> /// </summary> FadingFast = 1859, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1860"><strong>Vital Sign</strong></see> ↓ (All Classes) /// <para>Severing the flow of life-sustaining aether in order to avoid detection has damaged the body's vital functions. Movement speed is severely decreased.</para> /// </summary> VitalSign = 1860, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1861"><strong>Leaden Fist</strong></see> ↑ (MNK) /// <para>Next Bootshine will deal increased damage.</para> /// </summary> LeadenFist = 1861, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1862"><strong>Anatman</strong></see> ↑ (MNK) /// <para>Form and Disciplined Fist timers are suspended due to a transcendent inner calm.</para> /// </summary> Anatman = 1862, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1863"><strong>Draconian Fire</strong></see> ↑ (DRG) /// <para>Able to execute Raiden Thrust and Draconian Fury.</para> /// </summary> DraconianFire = 1863, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1864"><strong>Lance Charge</strong></see> ↑ (DRG) /// <para>Damage dealt is increased.</para> /// </summary> LanceCharge = 1864, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1865"><strong>Meditation</strong></see> ↑ (SAM) /// <para>Deep in contemplation.</para> /// </summary> Meditation = 1865, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1866"><strong>Bioblaster</strong></see> ↓ (MCH) /// <para>Sustaining damage over time.</para> /// </summary> Bioblaster = 1866, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1867"><strong>Hellish Conduit</strong></see> ↑ (SMN) /// <para>Able to execute Brand of Purgatory.</para> /// </summary> HellishConduit = 1867, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1868"><strong>Everlasting Flight</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> EverlastingFlight = 1868, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1869"><strong>Gale Enforcer</strong></see> ↑ (ACN SMN) /// <para>Maintaining a localized windstorm.</para> /// </summary> GaleEnforcer = 1869, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1870"><strong>Enhanced Piercing Talon</strong></see> ↑ (DRG) /// <para>Next Piercing Talon will deal increased damage.</para> /// </summary> EnhancedPiercingTalon = 1870, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1871"><strong>Dia</strong></see> ↓ (WHM) /// <para>Sustaining damage over time.</para> /// </summary> Dia = 1871, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1872"><strong>Temperance</strong></see> ↑ (WHM) /// <para>Healing magic potency is increased while damage taken by nearby party members is reduced.</para> /// </summary> Temperance = 1872, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1873"><strong>Temperance</strong></see> ↑ (WHM) /// <para>Damage taken is reduced.</para> /// </summary> Temperance_1873 = 1873, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1874"><strong>Angel's Whisper</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> AngelsWhisper = 1874, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1875"><strong>Seraphic Illumination</strong></see> ↑ (All Classes) /// <para>Magic defense and healing magic potency are increased.</para> /// </summary> SeraphicIllumination = 1875, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1876"><strong>Lord of Crowns</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> LordOfCrowns_1876 = 1876, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1877"><strong>Lady of Crowns</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> LadyOfCrowns_1877 = 1877, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1878"><strong>Divination</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> Divination = 1878, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1879"><strong>Opposition</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> Opposition = 1879, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1880"><strong>Nocturnal Opposition</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NocturnalOpposition = 1880, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1881"><strong>Combust III</strong></see> ↓ (AST) /// <para>Sustaining damage over time.</para> /// </summary> CombustIii = 1881, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1882"><strong>The Balance</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheBalance_1882 = 1882, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1883"><strong>The Bole</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheBole_1883 = 1883, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1884"><strong>The Arrow</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheArrow_1884 = 1884, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1885"><strong>The Spear</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheSpear_1885 = 1885, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1886"><strong>The Ewer</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheEwer_1886 = 1886, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1887"><strong>The Spire</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheSpire_1887 = 1887, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1888"><strong>Diurnal Intersection</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalIntersection = 1888, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1889"><strong>Intersection</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Intersection = 1889, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1890"><strong>Horoscope</strong></see> ↑ (AST) /// <para>Primed to receive the healing effects of Horoscope.</para> /// </summary> Horoscope = 1890, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1891"><strong>Horoscope Helios</strong></see> ↑ (AST) /// <para>Primed to receive the healing effects of Horoscope.</para> /// </summary> HoroscopeHelios = 1891, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1892"><strong>Neutral Sect</strong></see> ↑ (AST) /// <para>Healing magic potency is increased.</para> /// </summary> NeutralSect = 1892, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1893"><strong>Scouring Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Scouring Tsunami will occur when effect expires.</para> /// </summary> ScouringWaters = 1893, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1894"><strong>Dark Missionary</strong></see> ↑ (All Classes) /// <para>Physical and magic damage taken are reduced.</para> /// </summary> DarkMissionary = 1894, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1895"><strong>Biolysis</strong></see> ↓ (SCH) /// <para>Sustaining damage over time.</para> /// </summary> Biolysis = 1895, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1896"><strong>Recitation</strong></see> ↑ (SCH) /// <para>The next Adloquium, ConcitationSuccorSuccor, Indomitability, or Excogitation executed will cost no MP or Aetherflow stacks and will restore critical HP.</para> /// </summary> Recitation = 1896, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1897"><strong>Nascent Chaos</strong></see> ↑ (WAR) /// <para>Accumulating sufficient wrath in the Beast Gauge will upgrade Decimate to Chaotic Cyclone.</para> /// <para>Fell Cleave will be upgraded to Inner Chaos once learned.</para> /// </summary> NascentChaos = 1897, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1898"><strong>Brutal Shell</strong></see> ↑ (GNB) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> BrutalShell = 1898, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1899"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_1899 = 1899, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1900"><strong>Winged Shield</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> WingedShield = 1900, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1901"><strong>Enshielded</strong></see> ↑ (PLD) /// <para>Winged shield is reducing damage taken.</para> /// </summary> Enshielded = 1901, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1902"><strong>Atonement Ready</strong></see> ↑ (PLD) /// <para>Able to execute Atonement.</para> /// </summary> AtonementReady = 1902, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1903"><strong>Phantasmal</strong></see> ↑ (All Classes) /// <para>Without corporeal form.</para> /// </summary> Phantasmal = 1903, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1904"><strong>Light in the Dark</strong></see> ↑ (All Classes) /// <para>Unleashing the Light trapped within you in defiance of the Darkness. Damage dealt and HP recovery are increased. </para> /// </summary> LightInTheDark_1904 = 1904, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1905"><strong>Veil of Gukumatz</strong></see> ↑ (All Classes) /// <para>Combat capabilities are sharply enhanced by Gukumatz's power.</para> /// </summary> VeilOfGukumatz = 1905, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1906"><strong>Perfect Deception</strong></see> ↑ (All Classes) /// <para>Having severely restricted the flow of life-sustaining aether, your presence is concealed but you are subject to the effect of Fading Fast.</para> /// </summary> PerfectDeception = 1906, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1907"><strong>Faded Out</strong></see> ↓ (All Classes) /// <para>Overburdened body is unable to execute actions.</para> /// </summary> FadedOut = 1907, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1908"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_1908 = 1908, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1909"><strong>Area of Influence Up</strong></see> ↑ (All Classes) /// <para>Area of effect for actions is expanded.</para> /// </summary> AreaOfInfluenceUp_1909 = 1909, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1910"><strong>Right Eye</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased and all action direction requirements are nullified.</para> /// </summary> RightEye_1910 = 1910, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1911"><strong>Asylum</strong></see> ↑ (All Classes) /// <para>A veil of succor is healing party members in the area.</para> /// </summary> Asylum_1911 = 1911, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1912"><strong>Asylum</strong></see> ↑ (All Classes) /// <para>HP recovery via healing actions is increased.</para> /// </summary> Asylum_1912 = 1912, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1913"><strong>Vauthry's Blessing</strong></see> ↑ (All Classes) /// <para>Blessed by Vauthry and experiencing heightened senses.</para> /// </summary> VauthrysBlessing = 1913, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1914"><strong>Disembowel</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> Disembowel_1914 = 1914, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1915"><strong>Summon Order</strong></see> ↑ (All Classes) /// <para>Pet has been issued an action command.</para> /// </summary> SummonOrder = 1915, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1916"><strong>Name of the Elements</strong></see> ↑ (All Classes) /// <para>Efficiency of Brand of the Elements is increased.</para> /// </summary> NameOfTheElements_1916 = 1916, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1917"><strong>Seraphic Veil</strong></see> ↑ (All Classes) /// <para>A holy barrier is nullifying damage.</para> /// </summary> SeraphicVeil = 1917, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1918"><strong>Catalyze</strong></see> ↑ (All Classes) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Catalyze = 1918, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1919"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_1919 = 1919, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1920"><strong>Diurnal Balance</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalBalance_1920 = 1920, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1921"><strong>Neutral Sect</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NeutralSect_1921 = 1921, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1922"><strong>Vauthry's Blessing</strong></see> ↑ (All Classes) /// <para>Blessed by Vauthry and experiencing heightened senses.</para> /// </summary> VauthrysBlessing_1922 = 1922, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1923"><strong>Vauthry's Blessing</strong></see> ↑ (All Classes) /// <para>Blessed by Vauthry and experiencing heightened senses.</para> /// </summary> VauthrysBlessing_1923 = 1923, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1924"><strong>Vauthry's Blessing</strong></see> ↑ (All Classes) /// <para>Blessed by Vauthry and experiencing heightened senses.</para> /// </summary> VauthrysBlessing_1924 = 1924, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1925"><strong>Vauthry's Blessing</strong></see> ↑ (All Classes) /// <para>Blessed by Vauthry and experiencing heightened senses.</para> /// </summary> VauthrysBlessing_1925 = 1925, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1926"><strong>Sleeve Draw</strong></see> ↑ (AST) /// <para>Draws a new arcanum after executing Play, Minor Arcana, or Undraw.</para> /// </summary> SleeveDraw = 1926, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1927"><strong>Trusty Shield</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> TrustyShield = 1927, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1928"><strong>Levinskin</strong></see> ↑ (All Classes) /// <para>A subtle field of levin crackles about the body, increasing defense.</para> /// </summary> Levinskin = 1928, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1929"><strong>Light Beyond Darkness</strong></see> ↑ (All Classes) /// <para>Unleashing the Light trapped within you in defiance of the Darkness.</para> /// </summary> LightBeyondDarkness = 1929, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1930 = 1930, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1931"><strong>Gunmetal Soul</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> GunmetalSoul = 1931, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1932"><strong>Army's Muse</strong></see> ↑ (BRD) /// <para>Auto-attack delay as well as weaponskill and spell cast and recast time are reduced.</para> /// </summary> ArmysMuse = 1932, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1933"><strong>Army's Ethos</strong></see> ↑ (BRD) /// <para>Singing Mage's Ballad or the Wanderer's Minuet will grant the effect of Army's Muse.</para> /// </summary> ArmysEthos = 1933, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1934"><strong>Troubadour</strong></see> ↑ (BRD) /// <para>Damage taken is reduced.</para> /// </summary> Troubadour = 1934, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1935"><strong>Soaking Wet</strong></see> ↓ (All Classes) /// <para>Waterlogged gear is reducing movement speed.</para> /// </summary> SoakingWet = 1935, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1936"><strong>Stone Wall</strong></see> ↑ (All Classes) /// <para>An invisible-yet-rock-solid barrier is nullifying damage.</para> /// </summary> StoneWall = 1936, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1937"><strong>In Event</strong></see> ↑ (All Classes) /// <para>Participating in an in-game event.</para> /// </summary> InEvent_1937 = 1937, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1938"><strong>Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> Sprint_1938 = 1938, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1939"><strong>Beckoned</strong></see> ↓ (All Classes) /// <para>Fae magicks have taken hold, and your will is not entirely your own.</para> /// </summary> Beckoned = 1939, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1940"><strong>Chilled to the Bone</strong></see> ↓ (All Classes) /// <para>Drenched in ice-cold water, causing damage over time.</para> /// </summary> ChilledToTheBone = 1940, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1941"><strong>Accursed Poison</strong></see> ↓ (All Classes) /// <para>An ancient corruption is causing damage over time.</para> /// </summary> AccursedPoison = 1941, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1942"><strong>Ranging</strong></see> ↑ (All Classes) /// <para>Scouting territory. Will halt if engaged in combat. If not engaged while scouting, will end foray and return home.</para> /// </summary> Ranging = 1942, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1943"><strong>Hastilude</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> Hastilude = 1943, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1944"><strong>Sacred Soil</strong></see> ↑ (SCH) /// <para>A circle of sanctified earth is healing party members and reducing damage taken within its bounds.</para> /// </summary> SacredSoil_1944 = 1944, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1945"><strong>Hoofing It</strong></see> ↑ (All Classes) /// <para>Unable to summon or ride mounts, or to equip fashion accessories.</para> /// </summary> HoofingIt_1945 = 1945, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1946"><strong>Wildfire</strong></see> ↑ (All Classes) /// <para>Currently afflicting an enemy with Wildfire.</para> /// </summary> Wildfire_1946 = 1946, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1947"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_1947 = 1947, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1948"><strong>Magic Damage Down</strong></see> ↓ (All Classes) /// <para>Magic damage dealt is reduced.</para> /// </summary> MagicDamageDown_1948 = 1948, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1949"><strong>Splashing Waters</strong></see> ↓ (All Classes) /// <para>Overflowing with water-aspected aether. A Splashing Tsunami will occur when effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> SplashingWaters_1949 = 1949, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1950"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_1950 = 1950, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1951"><strong>Tactician</strong></see> ↑ (MCH) /// <para>Damage taken is reduced.</para> /// </summary> Tactician_1951 = 1951, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1952"><strong>Hide</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> Hide = 1952, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1953"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_1953 = 1953, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1954"><strong>Bunshin</strong></see> ↑ (NIN) /// <para>Your corporeal shadow is performing an attack each time you execute a weaponskill.</para> /// </summary> Bunshin = 1954, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1955"><strong>Assassinate Ready</strong></see> ↑ (NIN) /// <para>Able to execute Assassinate.</para> /// </summary> AssassinateReady = 1955, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1956"><strong>Souldeep Invisibility</strong></see> ↑ (All Classes) /// <para>Having severed the flow of life-sustaining aether, your presence is completely concealed but you are subject to the effects of Fading Fast and Vital Sign.</para> /// </summary> SouldeepInvisibility = 1956, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_1957 = 1957, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1958"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_1958 = 1958, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1959"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_1959 = 1959, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1960"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_1960 = 1960, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1961"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_1961 = 1961, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1962"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_1962 = 1962, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1963"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_1963 = 1963, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1964"><strong>Summon Order II</strong></see> ↑ (All Classes) /// <para>Pet has been issued an action command.</para> /// </summary> SummonOrderIi = 1964, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1965"><strong>Summon Order III</strong></see> ↑ (All Classes) /// <para>Pet has been issued an action command.</para> /// </summary> SummonOrderIii = 1965, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1966"><strong>Summon Order IV</strong></see> ↑ (All Classes) /// <para>Pet has been issued an action command.</para> /// </summary> SummonOrderIv = 1966, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1967"><strong>Sleep Resistance</strong></see> ↑ (All Classes) /// <para>Far too invigorated to fall easily to slumber's temptation.</para> /// </summary> SleepResistance_1967 = 1967, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1968"><strong>Behelmed</strong></see> ↓ (All Classes) /// <para>Head is crammed awkwardly into a dwarven helmet, granting resistance to sleep.</para> /// </summary> Behelmed = 1968, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1969"><strong>Behelmed</strong></see> ↓ (All Classes) /// <para>Dwarven helmet is preventing the use of certain restorative actions.</para> /// </summary> Behelmed_1969 = 1969, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1970"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_1970 = 1970, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1971"><strong>Manafication</strong></see> ↑ (RDM) /// <para>Magic damage dealt is increased.</para> /// </summary> Manafication = 1971, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1972"><strong>Delirium</strong></see> ↑ (DRK) /// <para>Blackblood cost for Bloodspiller and Quietus is nullified, and restoring MP when landing either weaponskill.</para> /// </summary> Delirium_1972 = 1972, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1973"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi_1973 = 1973, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1974"><strong>Paradise Regained</strong></see> ↑ (All Classes) /// <para>Magical power is increased.</para> /// </summary> ParadiseRegained = 1974, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1975"><strong>Enlarged</strong></see> ↑ (All Classes) /// <para>Body has grown to a massive size.</para> /// </summary> Enlarged = 1975, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1976"><strong>Fully Enlarged</strong></see> ↑ (All Classes) /// <para>Body has grown to maximum size.</para> /// </summary> FullyEnlarged = 1976, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1977"><strong>Full Swing</strong></see> ↓ (PLD WAR DRK GNB) /// <para>Damage taken is increased.</para> /// </summary> FullSwing = 1977, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1978"><strong>Rampart</strong></see> ↑ (PLD WAR DRK GNB) /// <para>Damage taken is reduced.</para> /// </summary> Rampart_1978 = 1978, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1981"><strong>Blood for Blood</strong></see> ↑ (MNK DRG NIN SAM RPR VPR) /// <para>Damage dealt and damage taken are increased.</para> /// </summary> BloodForBlood_1981 = 1981, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1982"><strong>Bloodbath</strong></see> ↑ (MNK DRG NIN SAM RPR VPR) /// <para>Attacks generate HP equal to the amount of physical damage dealt.</para> /// </summary> Bloodbath_1982 = 1982, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1983"><strong>Fetter Ward</strong></see> ↑ (MNK DRG NIN SAM RPR VPR) /// <para>All Stun, Sleep, Bind, Heavy, Silence, knockback, and draw-in effects are nullified.</para> /// </summary> FetterWard = 1983, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1984"><strong>Arm's Length</strong></see> ↑ (BRD MCH DNC) /// <para>Damage taken is reduced. Impervious to the next stun, sleep, bind, heavy, silence, knockback, or draw-in effect.</para> /// </summary> ArmsLength_1984 = 1984, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1985"><strong>Peloton</strong></see> ↑ (BRD MCH DNC) /// <para>Movement speed is increased.</para> /// </summary> Peloton_1985 = 1985, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1986"><strong>Phantom Dart</strong></see> ↓ (BLM SMN RDM BLU PCT) /// <para>Damage taken is increased.</para> /// </summary> PhantomDart = 1986, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1987"><strong>Swiftcast</strong></see> ↑ (BLM SMN RDM BLU PCT) /// <para>The next spell will be cast immediately.</para> /// </summary> Swiftcast_1987 = 1987, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1988"><strong>Addle</strong></see> ↓ (BLM SMN RDM BLU PCT) /// <para>Damage dealt is reduced.</para> /// </summary> Addle_1988 = 1988, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1989"><strong>Manaward</strong></see> ↑ (BLM SMN RDM BLU PCT) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> Manaward_1989 = 1989, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1990"><strong>Attunement</strong></see> ↑ (WHM SCH AST SGE) /// <para>Damage taken is significantly reduced. Unable to act.</para> /// </summary> Attunement = 1990, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1991"><strong>Sword Oath</strong></see> ↑ (PLD) /// <para>Damage dealt is increased.</para> /// </summary> SwordOath_1991 = 1991, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1992"><strong>Chaotic Cyclone Ready</strong></see> ↑ (WAR) /// <para>Able to execute Chaotic Cyclone.</para> /// </summary> ChaoticCycloneReady = 1992, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1993"><strong>Shake It Off</strong></see> ↑ (WAR) /// <para>A barrier is preventing damage.</para> /// </summary> ShakeItOff_1993 = 1993, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1996"><strong>Delirium</strong></see> ↑ (DRK) /// <para>Blackblood cost is nullified.</para> /// </summary> Delirium_1996 = 1996, + /// <summary> /// <see href="https://garlandtools.org/db/#status/1997"><strong>Brutal Shell</strong></see> ↑ (GNB) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> BrutalShell_1997 = 1997, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2000"><strong>Heart of Light</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> HeartOfLight_2000 = 2000, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2002"><strong>Ready to Rip</strong></see> ↑ (GNB) /// <para>Able to execute Jugular Rip.</para> /// </summary> ReadyToRip_2002 = 2002, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2003"><strong>Ready to Tear</strong></see> ↑ (GNB) /// <para>Able to execute Abdomen Tear.</para> /// </summary> ReadyToTear_2003 = 2003, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2004"><strong>Ready to Gouge</strong></see> ↑ (GNB) /// <para>Able to execute Eye Gouge.</para> /// </summary> ReadyToGouge_2004 = 2004, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2005"><strong>Fists of Fire</strong></see> ↑ (MNK) /// <para>Damage dealt is increased.</para> /// </summary> FistsOfFire_2005 = 2005, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2006"><strong>Fists of Earth</strong></see> ↑ (MNK) /// <para>Damage taken is reduced.</para> /// </summary> FistsOfEarth_2006 = 2006, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2007"><strong>Wind Resonance</strong></see> ↑ (MNK) /// <para>Movement speed is increased.</para> /// </summary> WindResonance = 2007, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2008"><strong>Riddle of Earth</strong></see> ↑ (MNK) /// <para>Damage taken is reduced.</para> /// </summary> RiddleOfEarth_2008 = 2008, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2009"><strong>Wanderer's Minuet</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> WanderersMinuet = 2009, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2010"><strong>Bunshin</strong></see> ↑ (NIN) /// <para>Your corporeal shadow is performing an attack each time you execute a weaponskill.</para> /// </summary> Bunshin_2010 = 2010, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2011"><strong>Shade Shift</strong></see> ↑ (NIN) /// <para>Shadows are nullifying damage.</para> /// </summary> ShadeShift_2011 = 2011, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2012"><strong>Corps-a-corps</strong></see> ↑ (RDM) /// <para>A barrier is preventing damage.</para> /// </summary> Corpsacorps = 2012, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2013"><strong>Displacement</strong></see> ↑ (RDM) /// <para>Next spell cast will deal increased damage.</para> /// </summary> Displacement = 2013, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2014"><strong>Trick Attack</strong></see> ↓ (NIN) /// <para>Damage taken is increased.</para> /// </summary> TrickAttack = 2014, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2015"><strong>Atonement Ready</strong></see> ↑ (PLD) /// <para>Able to execute Atonement.</para> /// </summary> AtonementReady_2015 = 2015, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2017"><strong>Repelling Shot</strong></see> ↑ (BRD) /// <para>Damage dealt by weaponskills is increased.</para> /// </summary> RepellingShot = 2017, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2018"><strong>Wildfire</strong></see> ↑ (All Classes) /// <para>Currently afflicting an enemy with Wildfire.</para> /// </summary> Wildfire_2018 = 2018, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2019"><strong>Bioblaster</strong></see> ↓ (MCH) /// <para>Sustaining damage over time.</para> /// </summary> Bioblaster_2019 = 2019, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2020"><strong>Intervention</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> Intervention_2020 = 2020, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2021"><strong>Flourishing Fan Dance</strong></see> ↑ (DNC) /// <para>Able to execute Fan Dance III.</para> /// </summary> FlourishingFanDance = 2021, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2022"><strong>Saber Dance</strong></see> ↑ (DNC) /// <para>Damage dealt is increased.</para> /// </summary> SaberDance = 2022, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2023"><strong>Standard Step</strong></see> ↑ (DNC) /// <para>Caught up in the dance and only able to execute step actions, additional actions, Head Graze, Bolt, Medical Kit, Standard Finish, and En Avant.</para> /// </summary> StandardStep_2023 = 2023, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2024"><strong>Standard Finish</strong></see> ↑ (DNC) /// <para>Weaponskill and spell cast and recast time are reduced.</para> /// </summary> StandardFinish_2024 = 2024, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2025"><strong>Esprit</strong></see> ↑ (DNC) /// <para>The Esprit Gauge is increasing when you or the party member designated as your Dance Partner executes a weaponskill or casts a spell.</para> /// </summary> Esprit_2025 = 2025, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2026"><strong>Closed Position</strong></see> ↑ (DNC) /// <para>Sharing the effects of certain actions with target party member.</para> /// </summary> ClosedPosition_2026 = 2026, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2027"><strong>Dance Partner</strong></see> ↑ (DNC) /// <para>Sharing the effects of certain actions executed by your dancer companion.</para> /// </summary> DancePartner_2027 = 2027, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2029"><strong>Fountain of Fire</strong></see> ↓ (SMN) /// <para>Sustaining fire damage over time.</para> /// </summary> FountainOfFire = 2029, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2030"><strong>Everlasting Flight</strong></see> ↑ (SMN) /// <para>Regenerating HP over time.</para> /// </summary> EverlastingFlight_2030 = 2030, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2033"><strong>Engagement</strong></see> ↑ (RDM) /// <para>A barrier is preventing damage.</para> /// </summary> Engagement = 2033, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2034"><strong>Divination</strong></see> ↑ (AST) /// <para>Damage dealt is increased while damage taken is reduced.</para> /// </summary> Divination_2034 = 2034, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2035"><strong>Dia</strong></see> ↓ (WHM) /// <para>Damage taken is increased.</para> /// </summary> Dia_2035 = 2035, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2036"><strong>Afflatus Solace</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> AfflatusSolace = 2036, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2037"><strong>Temperance</strong></see> ↑ (WHM) /// <para>Restoring HP over time for self and nearby party members.</para> /// </summary> Temperance_2037 = 2037, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2038"><strong>Temperance</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> Temperance_2038 = 2038, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2039"><strong>Biolysis</strong></see> ↓ (SCH) /// <para>Rapid decomposition of the flesh is reducing HP recovery.</para> /// </summary> Biolysis_2039 = 2039, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2040"><strong>Seraphic Veil</strong></see> ↑ (SCH) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> SeraphicVeil_2040 = 2040, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2041"><strong>Combust III</strong></see> ↓ (AST) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> CombustIii_2041 = 2041, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2042"><strong>Diurnal Balance</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalBalance_2042 = 2042, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2043"><strong>Nocturnal Balance</strong></see> ↑ (AST) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> NocturnalBalance = 2043, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2044"><strong>Neutral Sect</strong></see> ↑ (AST) /// <para>Spell cast and recast times are reduced.</para> /// <para>Helios is upgraded to Aspected Helios, while Benefic is upgraded to Aspected Benefic.</para> /// </summary> NeutralSect_2044 = 2044, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2047"><strong>Wide Awake</strong></see> ↑ (All Classes) /// <para>Resistance to the effects of dream powder has been granted by an unpleasant-yet-effective serum.</para> /// </summary> WideAwake = 2047, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2048"><strong>En Avant</strong></see> ↑ (DNC) /// <para>Cascade is upgraded to Reverse Cascade and Fountain is upgraded to Fountainfall.</para> /// </summary> EnAvant = 2048, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2049"><strong>Technical Step</strong></see> ↑ (DNC) /// <para>Caught up in the dance and only able to execute step actions, additional actions, Technical Finish, En Avant, Head Graze, Bolt, and Medical Kit.</para> /// </summary> TechnicalStep_2049 = 2049, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2050"><strong>Technical Finish</strong></see> ↑ (DNC) /// <para>Weaponskill and spell cast and recast time are reduced.</para> /// </summary> TechnicalFinish_2050 = 2050, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2051"><strong>Esprit</strong></see> ↑ (DNC) /// <para>The Esprit Gauge is increasing when you or a party member executes a weaponskill or casts a spell.</para> /// </summary> Esprit_2051 = 2051, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2052"><strong>Fan Dance</strong></see> ↑ (DNC) /// <para>Damage taken is reduced.</para> /// </summary> FanDance = 2052, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2053"><strong>Protect</strong></see> ↑ (WHM SCH AST SGE) /// <para>Damage taken is reduced.</para> /// </summary> Protect_2053 = 2053, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2054"><strong>Lord of Crowns Drawn</strong></see> ↑ (All Classes) /// <para>The Lord of Crowns card is drawn.</para> /// </summary> LordOfCrownsDrawn = 2054, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2055"><strong>Lady of Crowns Drawn</strong></see> ↑ (All Classes) /// <para>The Lady of Crowns card is drawn.</para> /// </summary> LadyOfCrownsDrawn = 2055, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2056 = 2056, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2057 = 2057, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2058 = 2058, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2059 = 2059, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2060 = 2060, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2061"><strong>Nascent Flash</strong></see> ↑ (WAR) /// <para>Absorbing HP with each physical attack delivered. Damage taken is also reduced.</para> /// </summary> NascentFlash_2061 = 2061, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2062"><strong>Nascent Glint</strong></see> ↑ (WAR) /// <para>Damage taken is reduced, and receiving 100% of all HP absorbed by the warrior who granted this status via Nascent Flash.</para> /// </summary> NascentGlint_2062 = 2062, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2063"><strong>Draw Power</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> DrawPower = 2063, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2064"><strong>Draw Fortitude</strong></see> ↑ (GNB) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> DrawFortitude = 2064, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2065"><strong>Aurora</strong></see> ↑ (GNB) /// <para>Regenerating HP over time.</para> /// </summary> Aurora_2065 = 2065, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2066"><strong>Drained Power</strong></see> ↓ (GNB) /// <para>Damage taken is increased.</para> /// </summary> DrainedPower = 2066, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2067"><strong>Drained Fortitude</strong></see> ↓ (GNB) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> DrainedFortitude = 2067, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2068"><strong>Smackdown</strong></see> ↑ (All Classes) /// <para>Accuracy and damage dealt are increased.</para> /// </summary> Smackdown = 2068, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2069"><strong>Dissipation</strong></see> ↑ (SCH) /// <para>Damage dealt and potency of all HP restoration actions are increased.</para> /// </summary> Dissipation_2069 = 2069, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2070"><strong>Diurnal Opposition</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalOpposition = 2070, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2071"><strong>Nocturnal Opposition</strong></see> ↑ (AST) /// <para>An aetherial barrier is preventing damage.</para> /// </summary> NocturnalOpposition_2071 = 2071, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2072"><strong>Focalization</strong></see> ↑ (SCH) /// <para>HP recovery via healing actions is increased.</para> /// </summary> Focalization = 2072, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2073"><strong>Acidic Bite</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> AcidicBite = 2073, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2074"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp_2074 = 2074, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2075"><strong>Thunder II</strong></see> ↓ (BLM) /// <para>Sustaining lightning damage over time.</para> /// </summary> ThunderIi_2075 = 2075, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2076"><strong>Confiteor</strong></see> ↓ (PLD) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> Confiteor = 2076, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2077"><strong>Inner Chaos</strong></see> ↓ (WAR) /// <para>Damage taken is increased.</para> /// </summary> InnerChaos = 2077, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2078"><strong>Chaotic Cyclone</strong></see> ↓ (WAR) /// <para>Damage taken is increased.</para> /// </summary> ChaoticCyclone = 2078, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2079"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_2079 = 2079, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2080"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_2080 = 2080, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2081"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_2081 = 2081, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2082"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2082 = 2082, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2083"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_2083 = 2083, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2084"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_2084 = 2084, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2085"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_2085 = 2085, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2086"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_2086 = 2086, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2087"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_2087 = 2087, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2088"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_2088 = 2088, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2089"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_2089 = 2089, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2090"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_2090 = 2090, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2091"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_2091 = 2091, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2092"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_2092 = 2092, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2093"><strong>Healing Magic Down</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> HealingMagicDown_2093 = 2093, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2094"><strong>Water Resistance Down II</strong></see> ↓ (All Classes) /// <para>Water resistance is significantly reduced.</para> /// </summary> WaterResistanceDownIi_2094 = 2094, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2095"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi_2095 = 2095, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2096"><strong>Wind Resistance Down II</strong></see> ↓ (All Classes) /// <para>Wind resistance is significantly reduced.</para> /// </summary> WindResistanceDownIi_2096 = 2096, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2097"><strong>Earth Resistance Down II</strong></see> ↓ (All Classes) /// <para>Earth resistance is significantly reduced.</para> /// </summary> EarthResistanceDownIi_2097 = 2097, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2098"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) /// <para>Fire resistance is significantly reduced.</para> /// </summary> FireResistanceDownIi_2098 = 2098, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2099"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_2099 = 2099, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2100"><strong>Unstable Gravity</strong></see> ↓ (All Classes) /// <para>The gravity about you is highly unstable and will rupture upon expiration of this effect, dealing unaspected damage to those within range.</para> /// </summary> UnstableGravity_2100 = 2100, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2101"><strong>Reprisal</strong></see> ↓ (PLD WAR DRK GNB) /// <para>Damage dealt is reduced.</para> /// </summary> Reprisal_2101 = 2101, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2102"><strong>Edge of Shadow</strong></see> ↓ (DRK) /// <para>HP recovery is reduced.</para> /// </summary> EdgeOfShadow = 2102, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2103"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_2103 = 2103, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2104"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_2104 = 2104, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2105"><strong>Standard Finish</strong></see> ↑ (DNC) /// <para>Damage dealt is increased.</para> /// </summary> StandardFinish_2105 = 2105, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2107 = 2107, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2108"><strong>Shake It Off (Over Time)</strong></see> ↑ (WAR) /// <para>Regenerating HP over time.</para> /// </summary> ShakeItOffOverTime = 2108, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2109"><strong>Out of the Action</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> OutOfTheAction_2109 = 2109, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2110"><strong>Ancient Circle</strong></see> ↓ (All Classes) /// <para>Fell darkness spreads out from where you stand. The Ancient Circle will activate when this effect expires.</para> /// </summary> AncientCircle = 2110, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2111"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any party members you wander near will become marked in your stead.</para> /// </summary> Prey_2111 = 2111, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2112"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey. Any party members you wander near will become marked in your stead.</para> /// </summary> Prey_2112 = 2112, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2113"><strong>Standard Finish</strong></see> ↑ (DNC) /// <para>Weaponskill and spell cast and recast time are reduced.</para> /// </summary> StandardFinish_2113 = 2113, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2114"><strong>Gobskin</strong></see> ↑ (All Classes) /// <para>Hardened flesh is absorbing damage.</para> /// </summary> Gobskin = 2114, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2115"><strong>Conked</strong></see> ↓ (All Classes) /// <para>Intelligence and mind are reduced.</para> /// </summary> Conked = 2115, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2116"><strong>Meatily Shielded</strong></see> ↑ (All Classes) /// <para>A designated party member is protecting you.</para> /// </summary> MeatilyShielded = 2116, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2117"><strong>Meat Shield</strong></see> ↑ (All Classes) /// <para>You are protecting a party member.</para> /// </summary> MeatShield = 2117, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2118"><strong>Harmonized</strong></see> ↑ (All Classes) /// <para>Potency of next physical damage spell is increased.</para> /// </summary> Harmonized = 2118, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2119"><strong>Cactguard</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Cactguard = 2119, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2120"><strong>HP Boost</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> HpBoost_2120 = 2120, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2121"><strong>Astral Attenuation</strong></see> ↓ (All Classes) /// <para>Fire-, wind-, and lightning-aspected damage taken is increased.</para> /// </summary> AstralAttenuation = 2121, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2122"><strong>Umbral Attenuation</strong></see> ↓ (All Classes) /// <para>Water-, earth-, and ice-aspected damage taken is increased.</para> /// </summary> UmbralAttenuation = 2122, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2123"><strong>Physical Attenuation</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalAttenuation = 2123, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2124"><strong>Aetheric Mimicry: Tank</strong></see> ↑ (All Classes) /// <para>Copying the aetheric properties of a tank.</para> /// </summary> AethericMimicryTank = 2124, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2125"><strong>Aetheric Mimicry: DPS</strong></see> ↑ (All Classes) /// <para>Copying the aetheric properties of a DPS.</para> /// </summary> AethericMimicryDps = 2125, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2126"><strong>Aetheric Mimicry: Healer</strong></see> ↑ (All Classes) /// <para>Copying the aetheric properties of a healer.</para> /// </summary> AethericMimicryHealer = 2126, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2127"><strong>Brush with Death</strong></see> ↓ (All Classes) /// <para>Your resolve has deserted you. You are unable to perform actions that would result in your death.</para> /// </summary> BrushWithDeath = 2127, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2128"><strong>Burning Brand</strong></see> ↓ (All Classes) /// <para>Branded with a mark of flame and unable to deal damage to Lahabrea's shade. Fire damage taken is increased.</para> /// </summary> BurningBrand = 2128, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2129"><strong>Freezing Brand</strong></see> ↓ (All Classes) /// <para>Branded with a mark of ice and unable to deal damage to Igeyorhm's shade. Ice damage taken is increased.</para> /// </summary> FreezingBrand = 2129, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2130"><strong>Surpanakha's Fury</strong></see> ↑ (All Classes) /// <para>Potency of Surpanakha is increased.</para> /// </summary> SurpanakhasFury = 2130, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2131"><strong>Battle High I</strong></see> ↑ (All Classes) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> BattleHighI = 2131, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2132"><strong>Battle High II</strong></see> ↑ (All Classes) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> BattleHighIi = 2132, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2133"><strong>Battle High III</strong></see> ↑ (All Classes) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> BattleHighIii = 2133, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2134"><strong>Battle High IV</strong></see> ↑ (All Classes) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> BattleHighIv = 2134, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2135"><strong>Battle High V</strong></see> ↑ (All Classes) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> BattleHighV = 2135, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2136"><strong>Mortal Flame</strong></see> ↓ (All Classes) /// <para>Enveloped by hungry flames that will not be quenched until they have burnt something to ash.</para> /// </summary> MortalFlame = 2136, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2141"><strong>Final Judgment: Penalty IV</strong></see> ↓ (All Classes) /// <para>Sentenced to receive enfeeblement IV. Disobedience will result in divine retribution.</para> /// </summary> FinalJudgmentPenaltyIv = 2141, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2142"><strong>Compressed Water</strong></see> ↓ (All Classes) /// <para>Highly compressed aetherial energy covers the body. Water-aspected damage dealt when effect ends.</para> /// </summary> CompressedWater_2142 = 2142, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2143"><strong>Compressed Lightning</strong></see> ↓ (All Classes) /// <para>Highly compressed aetherial energy covers the body. Lightning-aspected damage dealt when effect ends.</para> /// </summary> CompressedLightning_2143 = 2143, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2144"><strong>Water Resistance Down II</strong></see> ↓ (All Classes) /// <para>Water resistance is significantly reduced.</para> /// </summary> WaterResistanceDownIi_2144 = 2144, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2145"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi_2145 = 2145, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2146"><strong>Enigma Codex</strong></see> ↑ (All Classes) /// <para>The codex is granting you the power to manipulate time.</para> /// </summary> EnigmaCodex = 2146, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2147"><strong>Enigma Codex</strong></see> ↑ (All Classes) /// <para>The codex is granting you the power to manipulate time.</para> /// </summary> EnigmaCodex_2147 = 2147, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2148"><strong>Contact Prohibition Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order prohibiting contact.</para> /// </summary> ContactProhibitionOrdained = 2148, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2149"><strong>Contact Regulation Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order to regulate contact.</para> /// </summary> ContactRegulationOrdained = 2149, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2150"><strong>Escape Prohibition Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order prohibiting escape.</para> /// </summary> EscapeProhibitionOrdained = 2150, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2151"><strong>Escape Detection Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order to detect escape.</para> /// </summary> EscapeDetectionOrdained = 2151, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2152"><strong>Final Word: Contact Prohibition</strong></see> ↓ (All Classes) /// <para>You have been issued a writ of contact prohibition.</para> /// </summary> FinalWordContactProhibition = 2152, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2153"><strong>Final Word: Contact Regulation</strong></see> ↓ (All Classes) /// <para>You have been issued a writ of contact regulation.</para> /// </summary> FinalWordContactRegulation = 2153, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2154"><strong>Final Word: Escape Prohibition</strong></see> ↓ (All Classes) /// <para>You have been issued a writ of escape prohibition.</para> /// </summary> FinalWordEscapeProhibition = 2154, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2155"><strong>Final Word: Escape Detection</strong></see> ↓ (All Classes) /// <para>You have been issued a writ of escape detection.</para> /// </summary> FinalWordEscapeDetection = 2155, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2156"><strong>Suppuration</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced and damage taken is increased.</para> /// </summary> Suppuration_2156 = 2156, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2157"><strong>Oil</strong></see> ↓ (All Classes) /// <para>Covered in a sticky oil. Both movement speed and fire resistance are reduced.</para> /// </summary> Oil = 2157, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2158"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_2158 = 2158, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2159"><strong>Red Light</strong></see> ↓ (All Classes) /// <para>Movement has been halted.</para> /// </summary> RedLight_2159 = 2159, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2160 = 2160, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2161"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_2161 = 2161, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2162"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_2162 = 2162, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2163"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_2163 = 2163, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2164"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_2164 = 2164, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2165"><strong>Temporal Displacement</strong></see> ↓ (All Classes) /// <para>Time is stopped.</para> /// </summary> TemporalDisplacement_2165 = 2165, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2166"><strong>Magitek Field</strong></see> ↑ (All Classes) /// <para>Magic attacks are being absorbed and reflected.</para> /// </summary> MagitekField_2166 = 2166, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2167 = 2167, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2168"><strong>Divine Veil</strong></see> ↑ (PLD) /// <para>A holy barrier is nullifying damage. When barrier is completely absorbed, creates a barrier around all nearby party members.</para> /// </summary> DivineVeil_2168 = 2168, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2169"><strong>Divine Veil</strong></see> ↑ (PLD) /// <para>A holy barrier is nullifying damage.</para> /// </summary> DivineVeil_2169 = 2169, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2170"><strong>Flood of Shadow</strong></see> ↓ (DRK) /// <para>HP recovery via healing actions is reduced.</para> /// </summary> FloodOfShadow = 2170, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2171"><strong>Dark Missionary</strong></see> ↑ (DRK) /// <para>Damage taken is reduced while HP recovered via healing actions is increased.</para> /// </summary> DarkMissionary_2171 = 2171, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2172"><strong>Arm's Length</strong></see> ↑ (MNK DRG NIN SAM RPR VPR) /// <para>Weakening enemies when attacked. Damage taken is reduced.</para> /// </summary> ArmsLength_2172 = 2172, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2173"><strong>Meditative Brotherhood</strong></see> ↑ (MNK) /// <para>Grants chance to open a chakra to the monk who applied the effect when a weaponskill is used or a spell is cast by any affected party member or self.</para> /// </summary> MeditativeBrotherhood_2173 = 2173, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2174"><strong>Brotherhood</strong></see> ↑ (MNK) /// <para>Damage dealt is increased.</para> /// </summary> Brotherhood_2174 = 2174, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2175"><strong>Life Surge</strong></see> ↑ (DRG) /// <para>Next weaponskill will deal increased damage.</para> /// </summary> LifeSurge_2175 = 2175, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2176"><strong>Meditation</strong></see> ↑ (SAM) /// <para>Deep in contemplation.</para> /// </summary> Meditation_2176 = 2176, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2177"><strong>Tactician</strong></see> ↑ (MCH) /// <para>Damage taken is reduced.</para> /// </summary> Tactician_2177 = 2177, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2178"><strong>Warden's Grace</strong></see> ↑ (BRD) /// <para>Damage taken is reduced while HP recovered via healing actions is increased.</para> /// </summary> WardensGrace = 2178, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2179"><strong>Testudo</strong></see> ↑ (PLD) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> Testudo = 2179, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2180"><strong>Fast Draw</strong></see> ↑ (GNB) /// <para>Weaponskill recast time is reduced.</para> /// </summary> FastDraw = 2180, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2181"><strong>Arm's Length</strong></see> ↓ (MNK DRG NIN SAM RPR VPR) /// <para>Damage dealt is reduced.</para> /// </summary> ArmsLength_2181 = 2181, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2182"><strong>Excogitation</strong></see> ↑ (SCH) /// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> /// </summary> Excogitation_2182 = 2182, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2183"><strong>Nocturnal Field</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NocturnalField_2183 = 2183, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2184"><strong>Retaliation</strong></see> ↑ (PLD WAR DRK GNB) /// <para>Delivering counter damage every time an attack is suffered.</para> /// </summary> Retaliation = 2184, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2185"><strong>Feint</strong></see> ↓ (MNK DRG NIN SAM RPR VPR) /// <para>Sustaining increased damage from target who executed Feint.</para> /// </summary> Feint_2185 = 2185, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2186"><strong>Concentrate</strong></see> ↑ (BRD MCH DNC) /// <para>Next weaponskill will deal increased damage.</para> /// </summary> Concentrate = 2186, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2187"><strong>Aetheric Burst</strong></see> ↓ (BLM SMN RDM BLU PCT) /// <para>Weaponskill and spell cast time and recast time are increased.</para> /// </summary> AethericBurst = 2187, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2188"><strong>Largesse</strong></see> ↑ (WHM SCH AST SGE) /// <para>Potency of all HP restoration actions is increased.</para> /// </summary> Largesse_2188 = 2188, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2189"><strong>Innovation</strong></see> ↑ (Disciple of the Hand) /// <para>Efficiency of Touch actions is increased.</para> /// </summary> Innovation_2189 = 2189, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2190"><strong>Final Appraisal</strong></see> ↑ (Disciple of the Hand) /// <para>Ready to stop short of completing synthesis.</para> /// </summary> FinalAppraisal = 2190, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2191"><strong>Muscle Memory</strong></see> ↑ (Disciple of the Hand) /// <para>Efficiency of the next Synthesis action is significantly increased.</para> /// </summary> MuscleMemory = 2191, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2192"><strong>Blight</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time as lungs are filled with corruption. Damage taken from other attacks is also increased.</para> /// </summary> Blight_2192 = 2192, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2193 = 2193, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2194"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2194 = 2194, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2195 = 2195, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2196"><strong>Light in the Dark</strong></see> ↑ (All Classes) /// <para>Unleashing the Light trapped within you in defiance of the Darkness. Damage dealt and HP recovery are increased.</para> /// </summary> LightInTheDark_2196 = 2196, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2197"><strong>Death Becomes You</strong></see> ↓ (All Classes) /// <para>Shambling the line between dead and undead.</para> /// </summary> DeathBecomesYou = 2197, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2198"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_2198 = 2198, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2199"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2199 = 2199, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2200"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_2200 = 2200, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2201"><strong>Ancient Double</strong></see> ↑ (All Classes) /// <para>Each action executed will be immediately repeated.</para> /// </summary> AncientDouble = 2201, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2202 = 2202, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2203"><strong>Mortal Powder Mark</strong></see> ↓ (All Classes) /// <para>Emblazoned with a smoldering mark that will cause you to explode with a vengeance when the effect expires.</para> /// </summary> MortalPowderMark = 2203, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2204"><strong>Normal</strong></see> ↓ (All Classes) /// <para>Maintaining an average body temperature.</para> /// </summary> Normal = 2204, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2205"><strong>Running Hot: +1</strong></see> ↓ (All Classes) /// <para>Body temperature has risen to 1 level above normal.</para> /// </summary> RunningHot1 = 2205, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2206"><strong>Atlas</strong></see> ↓ (All Classes) /// <para>Resisting the weight of a falling star. When this effect expires, impact will result in KO.</para> /// </summary> Atlas = 2206, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2207"><strong>Unwavering Will</strong></see> ↑ (All Classes) /// <para>Protected by an unseen aegis, rendering all attacks ineffective.</para> /// </summary> UnwaveringWill = 2207, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2208"><strong>Blind to Rage</strong></see> ↑ (All Classes) /// <para>So consumed by inner rage that the feelings of others pale by comparison. Attacks of players under a Pall of Rage are ineffective.</para> /// </summary> BlindToRage = 2208, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2209"><strong>Blind to Grief</strong></see> ↑ (All Classes) /// <para>So consumed by inner grief that the feelings of others pale by comparison. Attacks of players under a Pall of Grief are ineffective.</para> /// </summary> BlindToGrief = 2209, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2210"><strong>Pall of Rage</strong></see> ↓ (All Classes) /// <para>Afflicted with an unaccountable feeling of anger. Attacks are ineffective against targets Blind to Rage.</para> /// </summary> PallOfRage = 2210, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2211"><strong>Pall of Grief</strong></see> ↓ (All Classes) /// <para>Afflicted with an unaccountable feeling of loss. Attacks are ineffective against targets Blind to Grief.</para> /// </summary> PallOfGrief = 2211, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2212"><strong>Running Hot: +2</strong></see> ↓ (All Classes) /// <para>Body temperature has risen to 2 levels above normal.</para> /// </summary> RunningHot2 = 2212, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2213"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_2213 = 2213, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2214"><strong>Army's Paeon</strong></see> ↑ (BRD) /// <para>Weaponskill and spell cast and recast time are reduced.</para> /// </summary> ArmysPaeon_2214 = 2214, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2215"><strong>The Wanderer's Minuet</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> TheWanderersMinuet_2215 = 2215, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2216"><strong>The Wanderer's Minuet</strong></see> ↑ (BRD) /// <para>Critical hit rate is increased.</para> /// </summary> TheWanderersMinuet_2216 = 2216, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2217"><strong>Mage's Ballad</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> MagesBallad_2217 = 2217, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2218"><strong>Army's Paeon</strong></see> ↑ (BRD) /// <para>Direct hit rate is increased.</para> /// </summary> ArmysPaeon_2218 = 2218, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2219"><strong>Shadow of the Dragon</strong></see> ↑ (All Classes) /// <para>Drawing on power inherited from Nidhogg.</para> /// </summary> ShadowOfTheDragon = 2219, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2220"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_2220 = 2220, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2221"><strong>Final Judgment: Penalty III</strong></see> ↓ (All Classes) /// <para>Sentenced to receive enfeeblement III. Disobedience will result in divine retribution.</para> /// </summary> FinalJudgmentPenaltyIii_2221 = 2221, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2226"><strong>Veneration</strong></see> ↑ (Disciple of the Hand) /// <para>Efficiency of Synthesis actions is increased.</para> /// </summary> Veneration = 2226, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2227"><strong>Nascent Flash</strong></see> ↑ (WAR) /// <para>Absorbing HP with each physical attack delivered.</para> /// </summary> NascentFlash_2227 = 2227, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2228"><strong>Surge Protection</strong></see> ↓ (All Classes) /// <para>Your body is covered in conductive matter, reducing the damage of certain attacks.</para> /// </summary> SurgeProtection_2228 = 2228, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2229"><strong>Static Condensation</strong></see> ↓ (All Classes) /// <para>Excess electricity is stored within your body, reducing HP recovery.</para> /// </summary> StaticCondensation_2229 = 2229, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2231"><strong>Fury's Bolt</strong></see> ↑ (All Classes) /// <para>Overcharged with electricity. Next attack will deal increased damage or differ in range.</para> /// </summary> FurysBolt = 2231, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2232"><strong>System Shock</strong></see> ↓ (All Classes) /// <para>Being electrified has weakened your heart. Further electrification will prove fatal, resulting in KO. </para> /// </summary> SystemShock = 2232, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2233"><strong>Electrified</strong></see> ↓ (All Classes) /// <para>Wracked by electricity. Nearby players will also be Electrified when the effect ends and the charge disperses.</para> /// </summary> Electrified = 2233, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2234 = 2234, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2235"><strong>Hated of the Vortex</strong></see> ↓ (All Classes) /// <para>The accursed taunt of the winds spurs you to fight only Garuda. Damage against all other targets is nullified.</para> /// </summary> HatedOfTheVortex = 2235, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2236"><strong>Hated of Embers</strong></see> ↓ (All Classes) /// <para>The accursed spitting of the flames spurs you to fight only Ifrit. Damage against all other targets is nullified.</para> /// </summary> HatedOfEmbers = 2236, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2237"><strong>Irons of Purgatory</strong></see> ↓ (All Classes) /// <para>Manacled to burning chains. Will suffer damage if separated from similarly enchained party members.</para> /// </summary> IronsOfPurgatory = 2237, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2238"><strong>Astral Effect</strong></see> ↓ (All Classes) /// <para>Due to a severe disruption in aetherial balance, damage taken from astrally charged attacks is increased. Damage taken from umbrally charged attacks is decreased, and will result in the Umbral Effect.</para> /// </summary> AstralEffect = 2238, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2239"><strong>Umbral Effect</strong></see> ↓ (All Classes) /// <para>Due to a severe disruption in aetherial balance, damage taken from umbrally charged attacks is increased. Damage taken from astrally charged attacks is decreased, and will result in the Astral Effect.</para> /// </summary> UmbralEffect = 2239, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2240"><strong>Forward with Thee</strong></see> ↓ (All Classes) /// <para>Affected by displacement magicks. When this effect ends, you will be stunned, then forcibly moved forward.</para> /// </summary> ForwardWithThee = 2240, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2241"><strong>Back with Thee</strong></see> ↓ (All Classes) /// <para>Affected by displacement magicks. When this effect ends, you will be stunned, then forcibly moved backward.</para> /// </summary> BackWithThee = 2241, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2242"><strong>Left with Thee</strong></see> ↓ (All Classes) /// <para>Affected by displacement magicks. When this effect ends, you will be stunned, then forcibly moved leftward.</para> /// </summary> LeftWithThee = 2242, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2243"><strong>Right with Thee</strong></see> ↓ (All Classes) /// <para>Affected by displacement magicks. When this effect ends, you will be stunned, then forcibly moved rightward.</para> /// </summary> RightWithThee = 2243, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2244"><strong>Anemomorph</strong></see> ↑ (All Classes) /// <para>The flock of sin eaters have assumed the form of a cyclone.</para> /// </summary> Anemomorph_2244 = 2244, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2245"><strong>Hated of Levin</strong></see> ↓ (All Classes) /// <para>Ramuh has cursed you to discharge a burst of lightning-aspected damage at regular intervals. When this effect expires, you will Panic.</para> /// </summary> HatedOfLevin = 2245, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2246"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_2246 = 2246, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2247"><strong>Waymark</strong></see> ↓ (All Classes) /// <para>A lodestone by which the flock of sin eaters will chart their course. When this effect expires, you will be stunned.</para> /// </summary> Waymark = 2247, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2248"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown_2248 = 2248, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2249"><strong>Unstable</strong></see> ↓ (All Classes) /// <para>Unable to keep your balance. Damage taken is increased.</para> /// </summary> Unstable = 2249, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2250"><strong>Lightheaded</strong></see> ↓ (All Classes) /// <para>Experiencing dizziness. Certain attacks will cause Concussion.</para> /// </summary> Lightheaded = 2250, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2251"><strong>Freezing</strong></see> ↓ (All Classes) /// <para>Your body is slowly turning to ice. When this effect expires, you will experience a Deep Freeze.</para> /// </summary> Freezing = 2251, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2252"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action.</para> /// </summary> DeepFreeze_2252 = 2252, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2253"><strong>Refulgent Chain</strong></see> ↓ (All Classes) /// <para>Bound with chains of light. Your Refulgent Fate will be sealed when this effect expires.</para> /// </summary> RefulgentChain = 2253, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2254"><strong>Refulgent Chain</strong></see> ↓ (All Classes) /// <para>Bound with chains of light. Your Refulgent Fate will be sealed when this effect expires.</para> /// </summary> RefulgentChain_2254 = 2254, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2255"><strong>Refulgent Fate</strong></see> ↓ (All Classes) /// <para>Cursed by binding light. If the distance between you and the player to whom you are bound becomes too great or too small, you will deal unaspected damage to those nearby.</para> /// </summary> RefulgentFate = 2255, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2256"><strong>Refulgent Fate</strong></see> ↓ (All Classes) /// <para>Cursed by binding light. If the distance between you and the player to whom you are bound becomes too great or too small, you will deal unaspected damage to those nearby.</para> /// </summary> RefulgentFate_2256 = 2256, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2257"><strong>Lightsteeped</strong></see> ↓ (All Classes) /// <para>Overflowing with astral energy. Upon accumulating 5 stacks, you will deal unaspected damage to those nearby.</para> /// </summary> Lightsteeped = 2257, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2258"><strong>Wyrmclaw</strong></see> ↓ (All Classes) /// <para>Shredded by draconic talons. KO will occur when countdown reaches 0.</para> /// </summary> Wyrmclaw = 2258, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2259"><strong>Wyrmfang</strong></see> ↓ (All Classes) /// <para>Torn by draconic teeth. KO will occur when countdown reaches 0.</para> /// </summary> Wyrmfang = 2259, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2260"><strong>Hated of Frost</strong></see> ↓ (All Classes) /// <para>Cursed by the lady herself. Damage from Hraesvelgr is increased.</para> /// </summary> HatedOfFrost = 2260, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2261"><strong>Hated of the Wyrm</strong></see> ↓ (All Classes) /// <para>Cursed by the great wyrm himself. Damage from Shiva is increased.</para> /// </summary> HatedOfTheWyrm = 2261, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2262"><strong>Grace of Light</strong></see> ↑ (All Classes) /// <para>Blessed by Light. Damage dealt is increased.</para> /// </summary> GraceOfLight = 2262, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2263"><strong>Shock Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing lightning damage to attackers.</para> /// </summary> ShockSpikes_2263 = 2263, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2264"><strong>Braced</strong></see> ↑ (All Classes) /// <para>Ready and able to Stand Firm.</para> /// </summary> Braced = 2264, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2265"><strong>Standing Firm</strong></see> ↑ (All Classes) /// <para>Unbowed even by relentless onslaught.</para> /// </summary> StandingFirm = 2265, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2266"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_2266 = 2266, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2267"><strong>Meat Shield</strong></see> ↑ (All Classes) /// <para>Subjects are serving as defense. All damage is nullified.</para> /// </summary> MeatShield_2267 = 2267, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2268"><strong>Running Cold: -1</strong></see> ↓ (All Classes) /// <para>Body temperature has dropped to 1 level below normal.</para> /// </summary> RunningCold1 = 2268, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2269"><strong>FATE Participant</strong></see> ↑ (All Classes) /// <para>Actively participating in a FATE. Actions restricted to FATEs are available, though certain standard actions are unavailable. </para> /// </summary> FateParticipant = 2269, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2270 = 2270, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2271"><strong>Panic</strong></see> ↓ (All Classes) /// <para>Excessively afeared. Overcome with the urge to flee from particular foes.</para> /// </summary> Panic = 2271, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2272 = 2272, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2273 = 2273, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2274"><strong>Running Cold: -2</strong></see> ↓ (All Classes) /// <para>Body temperature has dropped to 2 levels below normal.</para> /// </summary> RunningCold2 = 2274, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2275"><strong>Intemperate</strong></see> ↓ (All Classes) /// <para>Easily affected by changes in body temperature. When effect expires, running hot or cold will result in KO.</para> /// </summary> Intemperate = 2275, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2276"><strong>In Costume</strong></see> ↑ (All Classes) /// <para>Unusually attired.</para> /// </summary> InCostume = 2276, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2277"><strong>Hot Brand: +1</strong></see> ↓ (All Classes) /// <para>Bearing a fever-inducing brand. Body temperature will increase by 1 level when this effect expires.</para> /// </summary> HotBrand1 = 2277, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2278"><strong>Light Resistance Down</strong></see> ↓ (All Classes) /// <para>Light resistance is reduced.</para> /// </summary> LightResistanceDown = 2278, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2279 = 2279, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2280"><strong>Enlarged</strong></see> ↑ (All Classes) /// <para>Body has grown to a massive size.</para> /// </summary> Enlarged_2280 = 2280, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2281"><strong>Fully Enlarged</strong></see> ↑ (All Classes) /// <para>Body has grown to maximum size.</para> /// </summary> FullyEnlarged_2281 = 2281, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2282"><strong>Embolden</strong></see> ↑ (RDM) /// <para>Damage dealt is increased while damage taken is reduced.</para> /// </summary> Embolden_2282 = 2282, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2283"><strong>Collective Unconscious</strong></see> ↑ (All Classes) /// <para>An area of mind attunement is created, reducing damage taken for all who enter.</para> /// </summary> CollectiveUnconscious_2283 = 2283, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2284"><strong>Running Wild</strong></see> ↑ (All Classes) /// <para>Unleashing full strength, as commanded.</para> /// </summary> RunningWild = 2284, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2285"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions and sustaining damage over time.</para> /// </summary> Fetters_2285 = 2285, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2286"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_2286 = 2286, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2287"><strong>True Hallowed Ground</strong></see> ↑ (All Classes) /// <para>Impervious to all damage.</para> /// </summary> TrueHallowedGround = 2287, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2288"><strong>Shield Protocol A</strong></see> ↓ (All Classes) /// <para>Shield protocol A is active. Attacks against certain targets are ineffective.</para> /// </summary> ShieldProtocolA = 2288, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2289"><strong>Shield Protocol B</strong></see> ↓ (All Classes) /// <para>Shield protocol B is active. Attacks against certain targets are ineffective.</para> /// </summary> ShieldProtocolB = 2289, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2290"><strong>Shield Protocol C</strong></see> ↓ (All Classes) /// <para>Shield protocol C is active. Attacks against certain targets are ineffective.</para> /// </summary> ShieldProtocolC = 2290, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2291"><strong>Hot Brand: +2</strong></see> ↓ (All Classes) /// <para>Bearing a fever-inducing brand. Body temperature will increase by 2 levels when this effect expires.</para> /// </summary> HotBrand2 = 2291, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2292"><strong>Cold Brand: -1</strong></see> ↓ (All Classes) /// <para>Bearing a chill-inducing brand. Body temperature will decrease by 1 level when this effect expires.</para> /// </summary> ColdBrand1 = 2292, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2293"><strong>Dash</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased.</para> /// </summary> Dash = 2293, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2294"><strong>Pyretic Booster</strong></see> ↑ (All Classes) /// <para>The G-Warrior's capabilities are enhanced, decreasing weaponskill cast and recast time and increasing movement speed. Use of this mode gradually drains HP.</para> /// </summary> PyreticBooster = 2294, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2295"><strong>Aetherial Aegis</strong></see> ↑ (All Classes) /// <para>The G-Warrior is protected by an aetherial barrier, reducing damage taken. Use of this mode gradually drains EP.</para> /// </summary> AetherialAegis = 2295, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2296"><strong>Cold Brand: -2</strong></see> ↓ (All Classes) /// <para>Bearing a chill-inducing brand. Body temperature will decrease by 2 levels when this effect expires.</para> /// </summary> ColdBrand2 = 2296, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2297"><strong>Hot Blade: +1</strong></see> ↑ (All Classes) /// <para>Temperature of the entropic blade has risen 1 level.</para> /// </summary> HotBlade1 = 2297, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2298"><strong>Hot Blade: +2</strong></see> ↑ (All Classes) /// <para>Temperature of the entropic blade has risen 2 levels.</para> /// </summary> HotBlade2 = 2298, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2299"><strong>Cold Blade: -1</strong></see> ↑ (All Classes) /// <para>Temperature of the entropic blade has dropped 1 level.</para> /// </summary> ColdBlade1 = 2299, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2300"><strong>Cold Blade: -2</strong></see> ↑ (All Classes) /// <para>Temperature of the entropic blade has dropped 2 levels.</para> /// </summary> ColdBlade2 = 2300, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2301"><strong>Tender Anaphylaxis</strong></see> ↓ (All Classes) /// <para>Smothered with affection. Damage taken by certain attacks is increased.</para> /// </summary> TenderAnaphylaxis = 2301, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2302"><strong>Jealous Anaphylaxis</strong></see> ↓ (All Classes) /// <para>Smothered with possessive bitterness. Damage taken by certain attacks is increased.</para> /// </summary> JealousAnaphylaxis = 2302, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2303"><strong>True Walking Dead</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero. Effect dissipates upon being healed by an amount that totals your maximum HP.</para> /// </summary> TrueWalkingDead = 2303, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2304"><strong>Floating Fetters</strong></see> ↓ (All Classes) /// <para>Bound in midair and unable to move.</para> /// </summary> FloatingFetters = 2304, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2305"><strong>Zombification</strong></see> ↓ (All Classes) /// <para>Turned into a mindless zombie under enemy control.</para> /// </summary> Zombification_2305 = 2305, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2306"><strong>Boot Camp Mode</strong></see> ↑ (All Classes) /// <para>Boot Camp protocol is loaded.</para> /// </summary> BootCampMode = 2306, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2307"><strong>Safety Lock: Pyretic Booster</strong></see> ↓ (All Classes) /// <para>Safety lock is on, preventing use of the Pyretic Booster.</para> /// </summary> SafetyLockPyreticBooster = 2307, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2308"><strong>Safety Lock: Aetherial Aegis</strong></see> ↓ (All Classes) /// <para>Safety lock is on, preventing use of the Aetherial Aegis.</para> /// </summary> SafetyLockAetherialAegis = 2308, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2309"><strong>A Bit Berserk</strong></see> ↓ (All Classes) /// <para>Getting a taste for violence. Will go Truly Berserk upon reaching maximum stacks.</para> /// </summary> ABitBerserk = 2309, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2310"><strong>Truly Berserk</strong></see> ↓ (All Classes) /// <para>Thoughtlessly raining auto-attacks upon main target while inflicting great damage to self with each one.</para> /// </summary> TrulyBerserk = 2310, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2311"><strong>Spirit of the Aetherweaver</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> SpiritOfTheAetherweaver = 2311, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2312"><strong>Spirit of the Martialist</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> SpiritOfTheMartialist = 2312, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2313"><strong>Spirit of the Savior</strong></see> ↑ (All Classes) /// <para>Potency of all HP restoration actions is increased.</para> /// </summary> SpiritOfTheSavior = 2313, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2314"><strong>Spirit of the Veteran</strong></see> ↑ (All Classes) /// <para>Maximum HP and defense are increased.</para> /// </summary> SpiritOfTheVeteran = 2314, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2315"><strong>Spirit of the Platebearer</strong></see> ↑ (All Classes) /// <para>Maximum HP and defense are increased.</para> /// </summary> SpiritOfThePlatebearer = 2315, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2316"><strong>Spirit of the Guardian</strong></see> ↑ (All Classes) /// <para>Maximum HP and defense are increased.</para> /// </summary> SpiritOfTheGuardian = 2316, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2317"><strong>Spirit of the Ordained</strong></see> ↑ (All Classes) /// <para>Maximum MP, damage dealt, and potency of all HP restoration actions are increased.</para> /// </summary> SpiritOfTheOrdained = 2317, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2318"><strong>Spirit of the Skirmisher</strong></see> ↑ (All Classes) /// <para>Damage dealt and critical hit rate are increased.</para> /// </summary> SpiritOfTheSkirmisher = 2318, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2319"><strong>Spirit of the Watcher</strong></see> ↑ (All Classes) /// <para>Evasion is increased while maximum HP is reduced.</para> /// </summary> SpiritOfTheWatcher = 2319, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2320"><strong>Spirit of the Profane</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased while potency of all HP restoration actions is reduced.</para> /// </summary> SpiritOfTheProfane = 2320, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2321"><strong>Spirit of the Irregular</strong></see> ↑ (All Classes) /// <para>Damage dealt and taken is increased while maximum HP is reduced.</para> /// </summary> SpiritOfTheIrregular = 2321, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2322"><strong>Spirit of the Breathtaker</strong></see> ↑ (All Classes) /// <para>Evasion, movement speed, and poison resistance are increased.</para> /// </summary> SpiritOfTheBreathtaker = 2322, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2323"><strong>Spirit of the Bloodsucker</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, and attacks generate HP equal to a portion of damage dealt.</para> /// </summary> SpiritOfTheBloodsucker = 2323, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2324"><strong>Spirit of the Beast</strong></see> ↑ (All Classes) /// <para>Maximum HP and defense are increased, and attacks generate HP equal to a portion of damage dealt.</para> /// </summary> SpiritOfTheBeast = 2324, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2325"><strong>Spirit of the Templar</strong></see> ↑ (All Classes) /// <para>Maximum HP, defense, and damage dealt are increased.</para> /// </summary> SpiritOfTheTemplar = 2325, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2326"><strong>Banner of Noble Ends</strong></see> ↑ (All Classes) /// <para>HP recovered via most healing actions is nullified, but damage dealt is increased.</para> /// </summary> BannerOfNobleEnds = 2326, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2327"><strong>Banner of Honored Sacrifice</strong></see> ↑ (All Classes) /// <para>Sustaining damage over time in exchange for dealing increased damage.</para> /// </summary> BannerOfHonoredSacrifice = 2327, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2328"><strong>Banner of Tireless Conviction</strong></see> ↑ (All Classes) /// <para>Damage taken is increased, but your conviction is strengthened with each attack received. At maximum stacks, take up the Banner of Unyielding Defense.</para> /// <para>Banner of Unyielding Defense Effect: Damage taken is reduced.</para> /// </summary> BannerOfTirelessConviction = 2328, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2329"><strong>Banner of Firm Resolve</strong></see> ↑ (All Classes) /// <para>Damage dealt is reduced, but your resolve is strengthened with each attack received. At maximum stacks, take up the Banner of Unyielding Defense.</para> /// <para>Banner of Unyielding Defense Effect: Damage taken is reduced.</para> /// </summary> BannerOfFirmResolve = 2329, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2330"><strong>Banner of Solemn Clarity</strong></see> ↑ (All Classes) /// <para>You take a moment to still your mind, gaining clarity as time passes. At maximum stacks, take up the Banner of Limitless Grace.</para> /// <para>Banner of Limitless Grace Effect: Potency of HP restoration actions is increased while MP cost is reduced.</para> /// </summary> BannerOfSolemnClarity = 2330, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2331"><strong>Banner of Honed Acuity</strong></see> ↑ (All Classes) /// <para>Damage taken is increased, but your senses sharpen with each attack evaded. At maximum stacks, take up the Banner of Transcendent Finesse.</para> /// <para>Banner of Transcendent Finesse Effect: Critical hit rate is increased while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> BannerOfHonedAcuity = 2331, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2332"><strong>Lost Font of Magic</strong></see> ↑ (All Classes) /// <para>Increasing damage dealt while draining own MP.</para> /// </summary> LostFontOfMagic = 2332, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2333"><strong>Lost Protect</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> LostProtect = 2333, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2334"><strong>Lost Shell</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> LostShell = 2334, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2335"><strong>Lost Swift</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> LostSwift = 2335, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2336"><strong>Lost Stealth</strong></see> ↑ (All Classes) /// <para>Unable to be detected. Movement speed is severely reduced.</para> /// </summary> LostStealth = 2336, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2337"><strong>Lost Reflect</strong></see> ↑ (All Classes) /// <para>Reflecting magic back on its caster.</para> /// </summary> LostReflect = 2337, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2338"><strong>Lost Spellforge</strong></see> ↑ (All Classes) /// <para>All attacks deal magic damage.</para> /// </summary> LostSpellforge = 2338, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2339"><strong>Lost Steelsting</strong></see> ↑ (All Classes) /// <para>All attacks deal physical damage.</para> /// </summary> LostSteelsting = 2339, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2340"><strong>Lost Banish</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> LostBanish = 2340, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2341"><strong>Lost Bravery</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> LostBravery = 2341, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2342"><strong>Auto-potion</strong></see> ↑ (All Classes) /// <para>Recover HP automatically when HP falls below 50%. When triggered, there is a 50% chance the effect will end. While enlivened by the Spirit of the Breathtaker, this chance is reduced to 10%.</para> /// </summary> Autopotion = 2342, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2343"><strong>Auto-ether</strong></see> ↑ (All Classes) /// <para>Recover MP automatically when MP falls below 20%. When triggered, there is a 50% chance the effect will end. While enlivened by the Spirit of the Breathtaker, this chance is reduced to 10%.</para> /// </summary> Autoether = 2343, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2344"><strong>Auto-remedy</strong></see> ↑ (All Classes) /// <para>The next status ailment suffered will be cured automatically.</para> /// </summary> Autoremedy = 2344, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2345"><strong>Lost Manawall</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced and immune to most knockback and draw-in effects.</para> /// </summary> LostManawall = 2345, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2346"><strong>Lost Font of Power</strong></see> ↑ (All Classes) /// <para>Damage dealt and critical hit rate are increased.</para> /// </summary> LostFontOfPower = 2346, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2347"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_2347 = 2347, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2348"><strong>Reminiscence</strong></see> ↑ (All Classes) /// <para>Ruminating on the memories of the fallen. Ready to use select lost actions.</para> /// </summary> Reminiscence = 2348, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2349"><strong>Deep Essence of the Victor</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> DeepEssenceOfTheVictor = 2349, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2350"><strong>Hastilude</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> Hastilude_2350 = 2350, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2351"><strong>Hastilude Heartened</strong></see> ↑ (All Classes) /// <para>Damage taken is significantly reduced.</para> /// </summary> HastiludeHeartened = 2351, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2352"><strong>Banner of Unyielding Defense</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> BannerOfUnyieldingDefense = 2352, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2353"><strong>Banner of Limitless Grace</strong></see> ↑ (All Classes) /// <para>Potency of all HP restoration actions is increased while MP cost is reduced.</para> /// </summary> BannerOfLimitlessGrace = 2353, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2354"><strong>Banner of Transcendent Finesse</strong></see> ↑ (All Classes) /// <para>Critical hit rate is increased while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> BannerOfTranscendentFinesse = 2354, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2355"><strong>Reraise</strong></see> ↑ (All Classes) /// <para>Chance of automatic revival upon KO.</para> /// </summary> Reraise = 2355, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2356"><strong>Lost Incense</strong></see> ↑ (All Classes) /// <para>Enmity is increased and damage taken is reduced.</para> /// </summary> LostIncense = 2356, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2357"><strong>Fully Analyzed</strong></see> ↓ (All Classes) /// <para>All vulnerabilities have been detected. Any damage taken will be severe.</para> /// </summary> FullyAnalyzed = 2357, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2358"><strong>Marching Orders</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in critical engagements per Resistance leadership.</para> /// </summary> MarchingOrders = 2358, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2359"><strong>Marching Orders: Vigil for the Lost</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Vigil for the Lost engagement per Resistance leadership.</para> /// </summary> MarchingOrdersVigilForTheLost = 2359, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2360"><strong>Marching Orders: Kill It with Fire</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Kill It with Fire engagement per Resistance leadership.</para> /// </summary> MarchingOrdersKillItWithFire = 2360, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2361"><strong>Marching Orders: The Hunt for Red Choctober</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Hunt for Red Choctober engagement per Resistance leadership.</para> /// </summary> MarchingOrdersTheHuntForRedChoctober = 2361, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2362"><strong>Marching Orders: The Final Furlong</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Final Furlong engagement per Resistance leadership.</para> /// </summary> MarchingOrdersTheFinalFurlong = 2362, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2363"><strong>Marching Orders: Rise of the Robots</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Rise of the Robots engagement per Resistance leadership.</para> /// </summary> MarchingOrdersRiseOfTheRobots = 2363, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2364"><strong>Marching Orders: Metal Fox Chaos</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Metal Fox Chaos engagement per Resistance leadership.</para> /// </summary> MarchingOrdersMetalFoxChaos = 2364, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2365"><strong>High Morale</strong></see> ↑ (All Classes) /// <para>A dauntless spirit guides you to victory. Mettle earned is increased.</para> /// </summary> HighMorale = 2365, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2366 = 2366, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2367"><strong>Pall of Darkness</strong></see> ↓ (All Classes) /// <para>Encroaching gloom is impairing your accuracy while rendering you immune to Demon Eye.</para> /// </summary> PallOfDarkness = 2367, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2368"><strong>Warmonger</strong></see> ↑ (All Classes) /// <para>The thrill of battle leads you to crave only more. Damage dealt is increased while damage taken is reduced.</para> /// </summary> Warmonger = 2368, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2369"><strong>Physical Aversion</strong></see> ↓ (All Classes) /// <para>Vulnerable to physical attacks.</para> /// </summary> PhysicalAversion = 2369, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2370"><strong>Magical Aversion</strong></see> ↓ (All Classes) /// <para>Vulnerable to magic attacks.</para> /// </summary> MagicalAversion = 2370, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2371"><strong>Lightning Resistance Down</strong></see> ↓ (All Classes) /// <para>Lightning resistance is reduced.</para> /// </summary> LightningResistanceDown_2371 = 2371, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2372"><strong>Absolute Protect</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> AbsoluteProtect = 2372, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2373"><strong>Mark of Mortality</strong></see> ↓ (All Classes) /// <para>Branded with a mark of mortality. Damage dealt is reduced. Too many stacks will result in KO.</para> /// </summary> MarkOfMortality_2373 = 2373, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2374"><strong>EP Penalty</strong></see> ↓ (All Classes) /// <para>EP regeneration has stopped.</para> /// </summary> EpPenalty = 2374, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2375"><strong>Feelin' Hot</strong></see> ↑ (All Classes) /// <para>Flammability is increased due to the effects of the flame dance.</para> /// </summary> FeelinHot = 2375, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2376"><strong>Quintuplecast</strong></see> ↑ (All Classes) /// <para>Able to cast up to 5 consecutive spells with no recast time.</para> /// </summary> Quintuplecast = 2376, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2377"><strong>Imbued Saber</strong></see> ↑ (All Classes) /// <para>Saber is imbued with magicks.</para> /// </summary> ImbuedSaber = 2377, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2378"><strong>Haste+</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_2378 = 2378, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2379"><strong>Fresh Perspective</strong></see> ↑ (All Classes) /// <para>Operating outside the usual conditions of combat.</para> /// </summary> FreshPerspective = 2379, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2380"><strong>Warmonger</strong></see> ↑ (All Classes) /// <para>The thrill of battle leads you to crave only more. Damage dealt is increased while damage taken is reduced.</para> /// </summary> Warmonger_2380 = 2380, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2381"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_2381 = 2381, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2382"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_2382 = 2382, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2383"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_2383 = 2383, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2384"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_2384 = 2384, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2385"><strong>Hypercharged Condensation</strong></see> ↑ (All Classes) /// <para>Inexorably drawing in the hypercharged clouds.</para> /// </summary> HyperchargedCondensation = 2385, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2386"><strong>Stygian Tendrils</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time from grasping tendrils.</para> /// </summary> StygianTendrils = 2386, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2387"><strong>Curse of Darkness</strong></see> ↓ (All Classes) /// <para>Cursed to become a fell minion, unleashing Particle Beam when this effect expires.</para> /// </summary> CurseOfDarkness = 2387, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2388"><strong>Nausea</strong></see> ↓ (All Classes) /// <para>Feeling as if you might vomit at any moment. Damage dealt and maximum HP are decreased.</para> /// </summary> Nausea = 2388, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2389"><strong>Pain</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Pain = 2389, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2390"><strong>Hover</strong></see> ↑ (All Classes) /// <para>Floating above ground.</para> /// </summary> Hover_2390 = 2390, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2391"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_2391 = 2391, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2392"><strong>Lightning Shot</strong></see> ↑ (GNB) /// <para>Next weaponskill will deal increased damage.</para> /// </summary> LightningShot = 2392, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2393 = 2393, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2394"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_2394 = 2394, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2395"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_2395 = 2395, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2396"><strong>At the Limit</strong></see> ↓ (All Classes) /// <para>Unable to execute limit breaks.</para> /// </summary> AtTheLimit = 2396, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2397 = 2397, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2398"><strong>Incurable</strong></see> ↓ (All Classes) /// <para>All HP restoration is nullified.</para> /// </summary> Incurable_2398 = 2398, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2399"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_2399 = 2399, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2401"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2401 = 2401, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2402"><strong>Evasion Up</strong></see> ↑ (All Classes) /// <para>Evasion is enhanced.</para> /// </summary> EvasionUp_2402 = 2402, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2403"><strong>Evasion Down</strong></see> ↓ (All Classes) /// <para>Evasion is reduced.</para> /// </summary> EvasionDown_2403 = 2403, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2404"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_2404 = 2404, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2405"><strong>Out of Control</strong></see> ↑ (All Classes) /// <para>Separated from master and becoming increasingly agitated. The higher the stack, the more damage dealt is increased.</para> /// </summary> OutOfControl = 2405, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2406"><strong>Shock Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing lightning damage to and sometimes stunning attackers.</para> /// </summary> ShockSpikes_2406 = 2406, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2407"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_2407 = 2407, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2408"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_2408 = 2408, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2409"><strong>Process of Elimination A</strong></see> ↑ (All Classes) /// <para>Optimized for engaging with alliance A. Attacks by members of other alliances are nullified.</para> /// </summary> ProcessOfEliminationA = 2409, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2410"><strong>Process of Elimination B</strong></see> ↑ (All Classes) /// <para>Optimized for engaging with alliance B. Attacks by members of other alliances are nullified.</para> /// </summary> ProcessOfEliminationB = 2410, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2411"><strong>Process of Elimination C</strong></see> ↑ (All Classes) /// <para>Optimized for engaging with alliance C. Attacks by members of other alliances are nullified.</para> /// </summary> ProcessOfEliminationC = 2411, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2412"><strong>Cover</strong></see> ↑ (All Classes) /// <para>Protecting an ally.</para> /// </summary> Cover_2412 = 2412, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2413"><strong>Covered</strong></see> ↑ (PLD) /// <para>Under the protection of an ally.</para> /// </summary> Covered_2413 = 2413, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2414 = 2414, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2415"><strong>Duties as Assigned</strong></see> ↓ (All Classes) /// <para>Unable to change to another class or job.</para> /// </summary> DutiesAsAssigned = 2415, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2416"><strong>Light Beyond Darkness</strong></see> ↑ (All Classes) /// <para>Unleashing the Light trapped within you in defiance of the Darkness.</para> /// </summary> LightBeyondDarkness_2416 = 2416, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2417 = 2417, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2418"><strong>Collector's Standard</strong></see> ↑ (All Classes) /// <para>Effectiveness of brazen and meticulous actions is increased.</para> /// </summary> CollectorsStandard = 2418, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2419"><strong>Servant of Shadow</strong></see> ↓ (All Classes) /// <para>Indentured to the Shadowkeeper and soon to spawn a Shadow Servant at your feet.</para> /// </summary> ServantOfShadow = 2419, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2420"><strong>Servant of Shadow</strong></see> ↓ (All Classes) /// <para>Indentured to the Shadowkeeper and soon to spawn a Shadow Servant at your feet.</para> /// </summary> ServantOfShadow_2420 = 2420, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2421"><strong>Servant of Shadow</strong></see> ↓ (All Classes) /// <para>Indentured to the Shadowkeeper and soon to spawn a Shadow Servant at your feet.</para> /// </summary> ServantOfShadow_2421 = 2421, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2422"><strong>Servant of Shadow</strong></see> ↓ (All Classes) /// <para>Indentured to the Shadowkeeper and soon to spawn a Shadow Servant at your feet.</para> /// </summary> ServantOfShadow_2422 = 2422, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2423"><strong>Shadowed</strong></see> ↓ (All Classes) /// <para>Your shadow has been claimed by the Shadowkeeper. Damage taken by your shadow will also be taken by you.</para> /// </summary> Shadowed = 2423, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2424"><strong>Shackled Apart</strong></see> ↓ (All Classes) /// <para>Drawing too near the ally to whom you are chained will result in increased damage taken.</para> /// </summary> ShackledApart = 2424, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2425"><strong>Shackled Together</strong></see> ↓ (All Classes) /// <para>Drawing too far away from the ally to whom you are chained will result in increased damage taken.</para> /// </summary> ShackledTogether = 2425, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/2430"><strong>Wanderer's Fate</strong></see> ↓ (All Classes) -/// <para>Victim of a labyrinthine fate, resulting in knockback when the Fateful Words are spoken.</para> +/// <para></para> /// </summary> -WanderersFate = 2430, +UnnamedStatus_2426 = 2426, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/2431"><strong>Sacrifice's Fate</strong></see> ↓ (All Classes) -/// <para>Victim of a labyrinthine fate, to be drawn in by Fateful Words.</para> +/// <para></para> /// </summary> -SacrificesFate = 2431, +UnnamedStatus_2427 = 2427, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/2432"><strong>Bleeding</strong></see> ↓ (All Classes) -/// <para>Sustaining damage over time.</para> +/// <para></para> /// </summary> -Bleeding_2432 = 2432, +UnnamedStatus_2428 = 2428, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2429 = 2429, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/2430"><strong>Wanderer's Fate</strong></see> ↓ (All Classes) +/// <para>Victim of a labyrinthine fate, resulting in knockback when the Fateful Words are spoken.</para> +/// </summary> +WanderersFate = 2430, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/2431"><strong>Sacrifice's Fate</strong></see> ↓ (All Classes) +/// <para>Victim of a labyrinthine fate, to be drawn in by Fateful Words.</para> +/// </summary> +SacrificesFate = 2431, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/2432"><strong>Bleeding</strong></see> ↓ (All Classes) +/// <para>Sustaining damage over time.</para> +/// </summary> +Bleeding_2432 = 2432, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2433"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_2433 = 2433, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2434"><strong>Spirit of the Gambler</strong></see> ↑ (All Classes) /// <para>Evasion, critical hit rate, and direct hit rate are increased.</para> /// </summary> SpiritOfTheGambler = 2434, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2435"><strong>Spirit of the Elder</strong></see> ↑ (All Classes) /// <para>Defense, damage dealt, and maximum HP are increased.</para> /// </summary> SpiritOfTheElder = 2435, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2436"><strong>Spirit of the Duelist</strong></see> ↑ (All Classes) /// <para>Defense, damage dealt, and maximum HP are increased.</para> /// </summary> SpiritOfTheDuelist = 2436, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2437"><strong>Spirit of the Fiendhunter</strong></see> ↑ (All Classes) /// <para>Defense, damage dealt, and maximum HP are increased.</para> /// </summary> SpiritOfTheFiendhunter = 2437, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2438"><strong>Spirit of the Indomitable</strong></see> ↑ (All Classes) /// <para>Defense, damage dealt, and maximum HP are increased.</para> /// </summary> SpiritOfTheIndomitable = 2438, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2439"><strong>Spirit of the Divine</strong></see> ↑ (All Classes) /// <para>Defense, damage dealt, and maximum HP are increased.</para> /// </summary> SpiritOfTheDivine = 2439, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2440"><strong>Lost Flare Star</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> LostFlareStar = 2440, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2441"><strong>Lost Rend Armor</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> LostRendArmor = 2441, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2443"><strong>Lost Aethershield</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> LostAethershield = 2443, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2444"><strong>Lost Dervish</strong></see> ↑ (All Classes) /// <para>Critical hit rate and damage dealt are increased, while weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> LostDervish = 2444, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2445"><strong>Sword-bearer</strong></see> ↑ (All Classes) /// <para>Wielding a sword.</para> /// </summary> Swordbearer_2445 = 2445, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2446"><strong>Shield-bearer</strong></see> ↑ (All Classes) /// <para>Wielding a shield.</para> /// </summary> Shieldbearer_2446 = 2446, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2447"><strong>Reversal of Forces</strong></see> ↓ (All Classes) /// <para>Gravitational principles are inverted. The heavy has become light, and the light, heavy.</para> /// </summary> ReversalOfForces = 2447, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2448"><strong>Boosted</strong></see> ↑ (All Classes) /// <para>Storing power. Potency of next action is increased.</para> /// </summary> Boosted = 2448, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2449"><strong>Resurrection Restricted</strong></see> ↓ (All Classes) /// <para>Resurrection by certain means is impossible.</para> /// </summary> ResurrectionRestricted_2449 = 2449, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2450"><strong>Mimicry</strong></see> ↑ (All Classes) /// <para>Mimicking the actions of opponents. Physical attacks are answered with physical attacks, magical attacks with magical attacks.</para> /// </summary> Mimicry = 2450, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2451"><strong>Powder Mark</strong></see> ↓ (All Classes) /// <para>Emblazoned with a mark that will cause you to explode when the effect expires.</para> /// </summary> PowderMark = 2451, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2457 = 2457, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2458 = 2458, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2459 = 2459, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2465"><strong>Ice Resistance Down II</strong></see> ↓ (All Classes) /// <para>Ice resistance is significantly reduced.</para> /// </summary> IceResistanceDownIi = 2465, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2467"><strong>Pride of the Lioness</strong></see> ↑ (All Classes) /// <para>Blessed by the spirit of the lioness. Physical ability is enhanced.</para> /// </summary> PrideOfTheLioness = 2467, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2471"><strong>Head in the Clouds</strong></see> ↑ (All Classes) /// <para>Perched atop a cloud and unable to be hit by attacks from below.</para> /// </summary> HeadInTheClouds = 2471, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2472"><strong>Head in the Clouds</strong></see> ↑ (All Classes) /// <para>Perched on a cloud and able to attack cloudtop enemies.</para> /// </summary> HeadInTheClouds_2472 = 2472, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2473"><strong>Aetherial Depletion</strong></see> ↓ (All Classes) /// <para>Aether is waning, decreasing physical ability.</para> /// </summary> AetherialDepletion = 2473, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2474"><strong>Movement Edict: 2 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 2 Squares will activate when this effect expires.</para> /// </summary> MovementEdict2Squares = 2474, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2475"><strong>Movement Edict: 3 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 3 Squares will activate when this effect expires.</para> /// </summary> MovementEdict3Squares = 2475, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2476"><strong>Movement Edict: 4 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 4 Squares will activate when this effect expires.</para> /// </summary> MovementEdict4Squares = 2476, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2477"><strong>Movement Edict: 2 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 2 Squares will activate when this effect expires.</para> /// </summary> MovementEdict2Squares_2477 = 2477, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2478"><strong>Movement Edict: 3 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 3 Squares will activate when this effect expires.</para> /// </summary> MovementEdict3Squares_2478 = 2478, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2479"><strong>Movement Edict: 4 Squares</strong></see> ↓ (All Classes) /// <para>Temporarily in service to the Queen. Your Move: 4 Squares will activate when this effect expires.</para> /// </summary> MovementEdict4Squares_2479 = 2479, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2480"><strong>Your Move: 2 Squares</strong></see> ↓ (All Classes) /// <para>Ordered to move a total of 2 squares from the point where this effect activated. Disobedience will result in heavy damage.</para> /// </summary> YourMove2Squares = 2480, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2481"><strong>Your Move: 3 Squares</strong></see> ↓ (All Classes) /// <para>Bound to execute the Queen's edict by moving a total of 3 squares from the point where this effect activated. Disobedience will result in heavy damage.</para> /// </summary> YourMove3Squares = 2481, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2482"><strong>Your Move: 4 Squares</strong></see> ↓ (All Classes) /// <para>Bound to execute the Queen's edict by moving a total of 4 squares from the point where this effect activated. Disobedience will result in heavy damage.</para> /// </summary> YourMove4Squares = 2482, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2483"><strong>Twice-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh, decreasing damage dealt. Too many stacks will result in Doom.</para> /// </summary> TwicecomeRuin = 2483, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2484"><strong>Cleric Stance</strong></see> ↑ (All Classes) /// <para>Healing potency is reduced while damage dealt is increased.</para> /// </summary> ClericStance_2484 = 2484, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2485"><strong>Twice-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh, decreasing damage dealt. Too many stacks will result in Doom.</para> /// </summary> TwicecomeRuin_2485 = 2485, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2486"><strong>Sucked In</strong></see> ↓ (All Classes) /// <para>Inexorably pulled in one direction. Unable to jump or execute actions.</para> /// </summary> SuckedIn = 2486, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2487"><strong>Mortal Powder Mark</strong></see> ↓ (All Classes) /// <para>Emblazoned with a smoldering mark that will cause you to explode with a vengeance when the effect expires.</para> /// </summary> MortalPowderMark_2487 = 2487, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2492"><strong>Tingling</strong></see> ↑ (All Classes) /// <para>Potency of next physical damage spell is increased.</para> /// </summary> Tingling = 2492, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2493"><strong>Cold Fog</strong></see> ↑ (All Classes) /// <para>Enveloped in a cold fog. Any damage taken will grant the effect of Touch of Frost.</para> /// </summary> ColdFog = 2493, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2494"><strong>Touch of Frost</strong></see> ↑ (All Classes) /// <para>Enveloped in an icy fog. Able to execute the blue magic spell White Death.</para> /// </summary> TouchOfFrost = 2494, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2495"><strong>Angel's Snack</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> AngelsSnack = 2495, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2496"><strong>Chelonian Gate</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced. Taking a certain amount of damage grants the effect of Auspicious Trance.</para> /// </summary> ChelonianGate = 2496, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2497"><strong>Auspicious Trance</strong></see> ↑ (All Classes) /// <para>Able to execute the blue magic spell Divine Cataract.</para> /// </summary> AuspiciousTrance = 2497, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2498"><strong>Basic Instinct</strong></see> ↑ (All Classes) /// <para>Movement speed, damage dealt, and healing potency are increased. Mighty Guard will not reduce damage dealt while Basic Instinct is in effect.</para> /// </summary> BasicInstinct = 2498, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2499"><strong>Incendiary Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> IncendiaryBurns = 2499, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2500"><strong>Dragon Force</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> DragonForce = 2500, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2501"><strong>Lightheaded</strong></see> ↓ (All Classes) /// <para>Experiencing dizziness. Certain attacks will cause additional effects.</para> /// </summary> Lightheaded_2501 = 2501, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2502"><strong>Phantom Flurry</strong></see> ↑ (All Classes) /// <para>Executing Phantom Flurry.</para> /// </summary> PhantomFlurry = 2502, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2503"><strong>Aetherial Ward</strong></see> ↑ (All Classes) /// <para>Protected by a magicked barrier. Damage taken is reduced.</para> /// </summary> AetherialWard = 2503, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2504"><strong>Minimum</strong></see> ↓ (All Classes) /// <para>Shrunk to a fraction of your normal size. Movement speed and damage dealt is reduced while damage taken is increased.</para> /// </summary> Minimum_2504 = 2504, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2505"><strong>Herbsona</strong></see> ↓ (All Classes) /// <para>Transformed into a leafman. Unable to move or execute actions.</para> /// </summary> Herbsona = 2505, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2506"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_2506 = 2506, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2507"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_2507 = 2507, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2508"><strong>Slashing Resistance Down</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> SlashingResistanceDown_2508 = 2508, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2509"><strong>Bloody Ruin</strong></see> ↓ (All Classes) /// <para>Carapace has taken on a red cast, indicating an increase in strength at the cost of speed.</para> /// </summary> BloodyRuin = 2509, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2510"><strong>Torrential Ruin</strong></see> ↓ (All Classes) /// <para>Carapace has taken on a blue cast, indicating a tendency toward indiscriminate violence.</para> /// </summary> TorrentialRuin = 2510, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2511"><strong>Avaricious Ruin</strong></see> ↓ (All Classes) /// <para>Carapace has taken on a green cast, indicating an inclination to consume other golems.</para> /// </summary> AvariciousRuin = 2511, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2512"><strong>Subtle Ruin</strong></see> ↓ (All Classes) /// <para>Carapace has taken on a white cast, indicating the activation of regenerative capabilities.</para> /// </summary> SubtleRuin = 2512, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2513"><strong>Formless Fist</strong></see> ↑ (MNK) /// <para>Employing all three pugilistic fighting stances─opo-opo, raptor, and coeurl. Additional effects of actions used in these forms will also be triggered.</para> /// </summary> FormlessFist = 2513, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2514"><strong>Six-sided Star</strong></see> ↑ (MNK) /// <para>Movement speed is increased.</para> /// </summary> SixsidedStar = 2514, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2515 = 2515, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2516"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_2516 = 2516, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2517"><strong>Back from the Brink</strong></see> ↑ (All Classes) /// <para>Nullifies the damage dealt by certain areas of ground. Effect lasts until Transcendent expires or you move to a safe area.</para> /// </summary> BackFromTheBrink = 2517, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2518"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_2518 = 2518, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2519"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_2519 = 2519, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2520"><strong>Infirmity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Infirmity_2520 = 2520, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2521"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced.</para> /// </summary> HpPenalty_2521 = 2521, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2522"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_2522 = 2522, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2523"><strong>Restricted Access</strong></see> ↑ (All Classes) /// <para>Unable to move or execute certain actions due to duty restrictions.</para> /// </summary> RestrictedAccess = 2523, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2524"><strong>Royal Favor</strong></see> ↑ (All Classes) /// <para>Battle prowess is maximized.</para> /// </summary> RoyalFavor = 2524, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2525 = 2525, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2526 = 2526, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2527"><strong>Mortal Powder Mark</strong></see> ↓ (All Classes) /// <para>Emblazoned with a smoldering mark that will cause you to explode with a vengeance when the effect expires.</para> /// </summary> MortalPowderMark_2527 = 2527, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2528"><strong>Ice Spikes</strong></see> ↑ (All Classes) /// <para>Elemental spikes are dealing ice damage to and slowing down attackers.</para> /// </summary> IceSpikes_2528 = 2528, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2529"><strong>Sucked In</strong></see> ↓ (All Classes) /// <para>Inexorably pulled in one direction. Unable to jump or execute actions.</para> /// </summary> SuckedIn_2529 = 2529, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2530"><strong>Thrice-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh. Too many stacks will result in Doom.</para> /// </summary> ThricecomeRuin = 2530, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2533"><strong>Thrice-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh, reducing damage dealt. Too many stacks will result in Doom.</para> /// </summary> ThricecomeRuin_2533 = 2533, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2534"><strong>Twice-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh. Too many stacks will result in Doom.</para> /// </summary> TwicecomeRuin_2534 = 2534, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2535"><strong>Distorted</strong></see> ↓ (All Classes) /// <para>Black wavelengths pulse in front of you, and white wavelengths behind, causing massive damage if hit by attacks of the opposite color.</para> /// </summary> Distorted = 2535, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2536 = 2536, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2537"><strong>Strong of Spear</strong></see> ↑ (All Classes) /// <para>Weapon is enhanced.</para> @@ -12052,6 +14787,7 @@ Distorted = 2535, /// <para>Will grant the effect of Stronger Together if Hansel and Gretel move close together.</para> /// </summary> StrongOfSpear = 2537, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2538"><strong>Strong of Shield</strong></see> ↑ (All Classes) /// <para>Shield is enhanced, decreasing damage taken. Attacks from the sides and rear are turned back on the attacker.</para> @@ -12059,7701 +14795,10971 @@ StrongOfSpear = 2537, /// <para>Will grant the effect of Stronger Together if Hansel and Gretel move close together.</para> /// </summary> StrongOfShield = 2538, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2539"><strong>Stronger Together</strong></see> ↑ (All Classes) /// <para>Hansel and Gretel's proximity enhances their weapons and shields, decreasing damage taken. Attacks from the sides and rear are turned back on the attacker.</para> /// </summary> StrongerTogether = 2539, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2540"><strong>Freezing Up</strong></see> ↓ (All Classes) /// <para>Growing colder by the moment. Failure to continue moving until this effect expires will result in Deep Freeze.</para> /// </summary> FreezingUp = 2540, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2543"><strong>Gelatinous</strong></see> ↑ (All Classes) /// <para>Rendered a boneless ooze unable to jump or execute actions. Movement speed is reduced.</para> /// </summary> Gelatinous = 2543, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2544 = 2544, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2545"><strong>Duel or Die</strong></see> ↓ (All Classes) /// <para>Singled out for combat. Damage from opponent's first blow will be reduced; however, failing to receive a blow from said opponent before this effect expires will result in KO.</para> /// </summary> DuelOrDie = 2545, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2546 = 2546, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2547"><strong>On Fire</strong></see> ↑ (All Classes) /// <para>Armed with a flaming axe. Additional effects are applied to auto-attacks.</para> /// </summary> OnFire = 2547, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2548"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form has been altered.</para> /// </summary> Transfiguration_2548 = 2548, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2549"><strong>Nasty Surprise</strong></see> ↑ (All Classes) /// <para>Gunberd is loaded with special ammo.</para> /// </summary> NastySurprise = 2549, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2550"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_2550 = 2550, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2551"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_2551 = 2551, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2552 = 2552, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2553"><strong>One Mind</strong></see> ↑ (All Classes) /// <para>Giving and receiving support. Damage dealt is increased, while damage taken is decreased.</para> /// </summary> OneMind = 2553, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2554"><strong>Lunar Defensive</strong></see> ↑ (All Classes) /// <para>Battle tactics optimized for defense.</para> /// </summary> LunarDefensive = 2554, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2555"><strong>Physical Damage Up</strong></see> ↑ (All Classes) /// <para>Physical damage dealt is increased.</para> /// </summary> PhysicalDamageUp_2555 = 2555, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2556"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp_2556 = 2556, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2557"><strong>Enthunder</strong></see> ↑ (All Classes) /// <para>Lightning damage added to auto-attacks.</para> /// </summary> Enthunder_2557 = 2557, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2558"><strong>Lost Burst</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> LostBurst = 2558, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2559"><strong>Lost Rampage</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> LostRampage = 2559, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2560"><strong>Lost Chainspell</strong></see> ↑ (All Classes) /// <para>Spells require no time to cast.</para> /// </summary> LostChainspell = 2560, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2561"><strong>Lost Protect II</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> LostProtectIi = 2561, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2562"><strong>Lost Shell II</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> LostShellIi = 2562, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2563"><strong>Lost Bubble</strong></see> ↑ (All Classes) /// <para>Maximum HP is increased.</para> /// </summary> LostBubble = 2563, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2564"><strong>Lost Excellence</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks. Damage dealt is increased.</para> /// </summary> LostExcellence = 2564, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2565"><strong>Memorable</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while damage taken is decreased.</para> /// </summary> Memorable = 2565, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2566"><strong>Lost Blood Rage</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased, while damage taken is decreased.</para> /// </summary> LostBloodRage = 2566, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2567"><strong>Blood Rush</strong></see> ↑ (All Classes) /// <para>Gradually recovering HP and MP. Damage dealt is increased and ability recast time is reduced.</para> /// </summary> BloodRush = 2567, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2568"><strong>Gullstorm</strong></see> ↑ (All Classes) /// <para>Chance of landing a large-sized fish while fishing is increased.</para> /// </summary> Gullstorm = 2568, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2569"><strong>Cetaceous Speed</strong></see> ↑ (All Classes) /// <para>GP regeneration rate is increased.</para> /// </summary> CetaceousSpeed = 2569, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2570"><strong>Auroral Flipper</strong></see> ↑ (All Classes) /// <para>Chance of triggering a spectral current is increased.</para> /// </summary> AuroralFlipper = 2570, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2571"><strong>Destiny Drawn</strong></see> ↑ (All Classes) /// <para>An arcanum is drawn from the deck per the vicissitudes of fortune.</para> /// </summary> DestinyDrawn = 2571, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2572"><strong>The Scroll</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased. Auto-attack delay, as well as weaponskill and spell cast time and recast time are reduced.</para> /// </summary> TheScroll = 2572, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2573"><strong>Break</strong></see> ↓ (All Classes) /// <para>Activity is severely impeded.</para> /// </summary> Break = 2573, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2574"><strong>Lightning Rod</strong></see> ↓ (All Classes) /// <para>Highly conductive and likely to be targeted by lightning.</para> /// </summary> LightningRod = 2574, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2575"><strong>Right Arm Primed</strong></see> ↑ (All Classes) /// <para>Right arm is enhanced.</para> /// </summary> RightArmPrimed = 2575, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2576"><strong>Left Arm Primed</strong></see> ↑ (All Classes) /// <para>Left arm is enhanced.</para> /// </summary> LeftArmPrimed = 2576, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2577"><strong>FATE Participant</strong></see> ↑ (All Classes) /// <para>Actively participating in a FATE. </para> /// </summary> FateParticipant_2577 = 2577, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2578"><strong>Immobile Suit</strong></see> ↓ (All Classes) /// <para>Unable to teleport due to system overload.</para> /// </summary> ImmobileSuit = 2578, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2579"><strong>Guise</strong></see> ↑ (All Classes) /// <para>Dressed for the occasion.</para> /// </summary> Guise = 2579, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2580"><strong>Marching Orders: Feeling the Burn</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Feeling the Burn engagement per Resistance leadership.</para> /// </summary> MarchingOrdersFeelingTheBurn = 2580, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2581"><strong>Marching Orders: On Serpents' Wings</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the On Serpents' Wings engagement per Resistance leadership.</para> /// </summary> MarchingOrdersOnSerpentsWings = 2581, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2582"><strong>Marching Orders: Never Cry Wolf</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Never Cry Wolf engagement per Resistance leadership.</para> /// </summary> MarchingOrdersNeverCryWolf = 2582, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2583"><strong>Marching Orders: Here Comes the Cavalry</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Here Comes the Cavalry engagement per Resistance leadership.</para> /// </summary> MarchingOrdersHereComesTheCavalry = 2583, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2584"><strong>Marching Orders: Worn to a Shadow</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the Worn to a Shadow engagement per Resistance leadership.</para> /// </summary> MarchingOrdersWornToAShadow = 2584, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2585"><strong>Marching Orders: A Familiar Face</strong></see> ↑ (All Classes) /// <para>Officially selected for priority deployment in the A Familiar Face engagement per Resistance leadership.</para> /// </summary> MarchingOrdersAFamiliarFace = 2585, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2586"><strong>Death's Design</strong></see> ↓ (RPR) /// <para>Damage taken from the reaper who applied this effect is increased. Increases said reaper's Soul Gauge if defeated before effect expires.</para> /// </summary> DeathsDesign = 2586, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2587"><strong>Soul Reaver</strong></see> ↑ (RPR) /// <para>Able to execute Gibbet, Gallows, and Guillotine.</para> /// </summary> SoulReaver = 2587, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2588"><strong>Enhanced Gibbet</strong></see> ↑ (RPR) /// <para>Next Gibbet will deal increased damage.</para> /// </summary> EnhancedGibbet = 2588, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2589"><strong>Enhanced Gallows</strong></see> ↑ (RPR) /// <para>Next Gallows will deal increased damage.</para> /// </summary> EnhancedGallows = 2589, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2590"><strong>Enhanced Void Reaping</strong></see> ↑ (RPR) /// <para>Next Void Reaping will deal increased damage.</para> /// </summary> EnhancedVoidReaping = 2590, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2591"><strong>Enhanced Cross Reaping</strong></see> ↑ (RPR) /// <para>Next Cross Reaping will deal increased damage.</para> /// </summary> EnhancedCrossReaping = 2591, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2592"><strong>Immortal Sacrifice</strong></see> ↑ (RPR) /// <para>Able to execute Plentiful Harvest.</para> /// </summary> ImmortalSacrifice = 2592, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2593"><strong>Enshrouded</strong></see> ↑ (RPR) /// <para>Playing host to an avatar.</para> /// </summary> Enshrouded = 2593, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2594"><strong>Soulsow</strong></see> ↑ (RPR) /// <para>Able to execute Harvest Moon.</para> /// </summary> Soulsow = 2594, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2595"><strong>Threshold</strong></see> ↑ (RPR) /// <para>Able to execute Regress.</para> /// </summary> Threshold = 2595, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2596"><strong>Crest of Time Borrowed</strong></see> ↑ (RPR) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> CrestOfTimeBorrowed = 2596, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2597"><strong>Crest of Time Borrowed</strong></see> ↑ (RPR) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> CrestOfTimeBorrowed_2597 = 2597, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2598"><strong>Crest of Time Returned</strong></see> ↑ (RPR) /// <para>Regenerating HP over time.</para> /// </summary> CrestOfTimeReturned = 2598, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2599"><strong>Arcane Circle</strong></see> ↑ (RPR) /// <para>Damage dealt is increased.</para> /// </summary> ArcaneCircle = 2599, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2600"><strong>Circle of Sacrifice</strong></see> ↑ (RPR) /// <para>Grants Immortal Sacrifice to the reaper who applied this effect after successfully landing a weaponskill or ability, or casting a spell.</para> /// </summary> CircleOfSacrifice = 2600, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2601"><strong>Bloodsown Circle</strong></see> ↑ (RPR) /// <para>Grants Immortal Sacrifice to the reaper who applied this effect when duration expires.</para> /// </summary> BloodsownCircle = 2601, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2602"><strong>Just Chilling</strong></see> ↑ (All Classes) /// <para>Lowering temperature in a show of righteous fury.</para> /// </summary> JustChilling = 2602, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2603"><strong>Hubris</strong></see> ↓ (All Classes) /// <para>Overconfident and careless in the face of a small opposing force. Damage taken is increased.</para> /// </summary> Hubris = 2603, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2604"><strong>Kardia</strong></see> ↑ (SGE) /// <para>Triggers a healing effect on a player under the effect of Kardion granted by you upon landing attack magic.</para> /// </summary> Kardia = 2604, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2605"><strong>Kardion</strong></see> ↑ (SGE) /// <para>Triggers a healing effect when the sage who applied this status lands attack magic.</para> /// </summary> Kardion = 2605, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2606"><strong>Eukrasia</strong></see> ↑ (SGE) /// <para>Certain actions are being augmented.</para> /// </summary> Eukrasia = 2606, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2607"><strong>Eukrasian Diagnosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EukrasianDiagnosis = 2607, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2608"><strong>Differential Diagnosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> DifferentialDiagnosis = 2608, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2609"><strong>Eukrasian Prognosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EukrasianPrognosis = 2609, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2610"><strong>Soteria</strong></see> ↑ (SGE) /// <para>The healing potency of Kardia is increased.</para> /// </summary> Soteria = 2610, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2611"><strong>Zoe</strong></see> ↑ (SGE) /// <para>Healing magic potency of next spell cast is increased.</para> /// </summary> Zoe = 2611, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2612"><strong>Haima</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Haima = 2612, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2613"><strong>Panhaima</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Panhaima = 2613, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2614"><strong>Eukrasian Dosis</strong></see> ↓ (SGE) /// <para>Sustaining unaspected damage over time.</para> /// </summary> EukrasianDosis = 2614, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2615"><strong>Eukrasian Dosis II</strong></see> ↓ (SGE) /// <para>Sustaining unaspected damage over time.</para> /// </summary> EukrasianDosisIi = 2615, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2616"><strong>Eukrasian Dosis III</strong></see> ↓ (SGE) /// <para>Sustaining unaspected damage over time.</para> /// </summary> EukrasianDosisIii = 2616, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2617"><strong>Physis</strong></see> ↑ (SGE) /// <para>Regenerating HP over time.</para> /// </summary> Physis = 2617, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2618"><strong>Kerachole</strong></see> ↑ (SGE) /// <para>Damage taken is reduced.</para> /// </summary> Kerachole = 2618, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2619"><strong>Taurochole</strong></see> ↑ (SGE) /// <para>Damage taken is reduced.</para> /// </summary> Taurochole = 2619, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2620"><strong>Physis II</strong></see> ↑ (SGE) /// <para>Regenerating HP over time.</para> /// </summary> PhysisIi = 2620, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2621"><strong>Autophysis</strong></see> ↑ (SGE) /// <para>HP recovery via healing actions is increased.</para> /// </summary> Autophysis = 2621, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2622"><strong>Krasis</strong></see> ↑ (SGE) /// <para>HP recovery via healing actions is increased.</para> /// </summary> Krasis = 2622, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2623"><strong>Pneuma</strong></see> ↑ (SGE) /// <para>Damage taken is reduced.</para> /// </summary> Pneuma = 2623, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2624"><strong>Primal Rend Ready</strong></see> ↑ (WAR) /// <para>Able to execute Primal Rend.</para> /// </summary> PrimalRendReady = 2624, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2625"><strong>Ray of Fortitude</strong></see> ↑ (All Classes) /// <para>Resistance honors are granting an increase to maximum HP.</para> /// </summary> RayOfFortitude = 2625, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2626"><strong>Ray of Valor</strong></see> ↑ (All Classes) /// <para>Resistance honors are granting increased damage dealt.</para> /// </summary> RayOfValor = 2626, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2627"><strong>Ray of Succor</strong></see> ↑ (All Classes) /// <para>Resistance honors are granting increased healing potency.</para> /// </summary> RayOfSuccor = 2627, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2628"><strong>Adamant Purged</strong></see> ↑ (All Classes) /// <para>Armor is removed.</para> /// </summary> AdamantPurged = 2628, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2629 = 2629, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2630 = 2630, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2631"><strong>Down and Out</strong></see> ↓ (All Classes) /// <para>Quite dead, and prevented from reviving by all usual means.</para> /// </summary> DownAndOut = 2631, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2632"><strong>Program: #FFFFFFF</strong></see> ↑ (All Classes) /// <para>Operating as a “white” program in the ego collective.</para> /// </summary> ProgramFffffff = 2632, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2633"><strong>Program: #000000</strong></see> ↑ (All Classes) /// <para>Operating as a “black” program in the ego collective.</para> /// </summary> Program000000 = 2633, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2634"><strong>Null White</strong></see> ↑ (All Classes) /// <para>Invulnerable to attacks from Program: #FFFFFF.</para> /// </summary> NullWhite = 2634, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2635"><strong>Null Black</strong></see> ↑ (All Classes) /// <para>Invulnerable to attacks from Program: #000000.</para> /// </summary> NullBlack = 2635, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2636"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_2636 = 2636, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2637"><strong>Sacred Soil</strong></see> ↑ (SCH) /// <para>A circle of sanctified earth is healing party members and reducing damage taken within its bounds.</para> /// </summary> SacredSoil_2637 = 2637, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2638"><strong>Sacred Soil</strong></see> ↑ (SCH) /// <para>Damage taken is reduced.</para> /// </summary> SacredSoil_2638 = 2638, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2639"><strong>Fixed Sign</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> FixedSign = 2639, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2640"><strong>Fixed Sign</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> FixedSign_2640 = 2640, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2641"><strong>Fixed Sign</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> FixedSign_2641 = 2641, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2642"><strong>Haimatinon</strong></see> ↑ (SGE) /// <para>Stacks are consumed to restore the Haima barrier each time it is absorbed. Grants a healing effect when duration expires, its potency based on the number of remaining stacks.</para> /// </summary> Haimatinon = 2642, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2643"><strong>Panhaimatinon</strong></see> ↑ (SGE) /// <para>Stacks are consumed to restore the Panhaima barrier each time it is absorbed. Grants a healing effect when duration expires, its potency based on the number of remaining stacks.</para> /// </summary> Panhaimatinon = 2643, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2644"><strong>Front Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the front of the body remain undetected. Hits to the back, right, and left sides of the body will result in severe damage.</para> /// </summary> FrontUnseen = 2644, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2645"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_2645 = 2645, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2646"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_2646 = 2646, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2647"><strong>Shadow of the Dragon</strong></see> ↑ (All Classes) /// <para>Drawing on power inherited from Nidhogg.</para> /// </summary> ShadowOfTheDragon_2647 = 2647, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2648"><strong>Transcendent</strong></see> ↑ (All Classes) /// <para>Recently resurrected.</para> /// </summary> Transcendent_2648 = 2648, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2649"><strong>Empowered Beast</strong></see> ↑ (All Classes) /// <para>Permitted by master to fight to the fullest extent of capabilities.</para> /// </summary> EmpoweredBeast = 2649, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2650"><strong>Leveilleur Dosis III</strong></see> ↓ (SGE) /// <para>Sustaining damage over time.</para> /// </summary> LeveilleurDosisIii = 2650, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2651"><strong>Manusya Berserk</strong></see> ↓ (All Classes) /// <para>Unable to think clearly and continuously auto-attacking target.</para> /// </summary> ManusyaBerserk = 2651, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2652"><strong>Manusya Confuse</strong></see> ↓ (All Classes) /// <para>Confused and unable to accurately perceive surroundings.</para> /// </summary> ManusyaConfuse = 2652, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2653"><strong>Manusya Stop</strong></see> ↓ (All Classes) /// <para>Will be frozen in time when count reaches 0.</para> /// </summary> ManusyaStop = 2653, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2654"><strong>Who Is She</strong></see> ↑ (All Classes) /// <para>Outwardly appears to be Sanduruva.</para> /// </summary> WhoIsShe = 2654, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2655"><strong>Who Is She</strong></see> ↑ (All Classes) /// <para>Outwardly appears to be Sanduruva.</para> /// </summary> WhoIsShe_2655 = 2655, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2656"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_2656 = 2656, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2657"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb_2657 = 2657, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2658"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Frozen solid and unable to execute actions.</para> /// </summary> DeepFreeze_2658 = 2658, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2659 = 2659, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2660"><strong>Brightwinged Fortitude</strong></see> ↑ (All Classes) /// <para>Brightwings are reducing damage taken.</para> /// </summary> BrightwingedFortitude = 2660, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2661"><strong>Skyblind</strong></see> ↓ (All Classes) /// <para>Emblazoned with a mark that will cause you to explode when the effect expires.</para> /// </summary> Skyblind = 2661, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2662"><strong>Planar Imprisonment</strong></see> ↓ (All Classes) /// <para>Shackled, reducing movement speed. Leaving the planar prison will result in instant KO.</para> /// </summary> PlanarImprisonment = 2662, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2663"><strong>Inner Strength</strong></see> ↑ (All Classes) /// <para>All Stun, Sleep, Bind, Heavy, and most knockback and draw-in effects are nullified.</para> /// </summary> InnerStrength = 2663, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2664"><strong>Brightwinged Fury</strong></see> ↑ (All Classes) /// <para>Brightwings are spurring automatic attacks against nearby enemies.</para> /// </summary> BrightwingedFury = 2664, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2665"><strong>Heart and Soul</strong></see> ↑ (Disciple of the Hand) /// <para>Able to execute Precise Touch, Intensive Synthesis, and Tricks of the Trade.</para> /// </summary> HeartAndSoul = 2665, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2666"><strong>Gift of the Land</strong></see> ↑ (All Classes) /// <para>Increased chance of triggering Gatherer's Boon.</para> /// </summary> GiftOfTheLand = 2666, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2667"><strong>Gatherer's Bounty</strong></see> ↑ (All Classes) /// <para>Increasing the item yield of Gatherer's Boon.</para> /// </summary> GatherersBounty = 2667, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2668"><strong>Collector's Focus</strong></see> ↑ (All Classes) /// <para>Increased chance of triggering Collector's Intuition.</para> /// </summary> CollectorsFocus = 2668, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2669"><strong>Klymenos</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> Klymenos = 2669, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2670"><strong>Katabasis</strong></see> ↓ (All Classes) /// <para>Most attacks cannot reduce own HP to less than 1.</para> /// </summary> Katabasis = 2670, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2671"><strong>Toad</strong></see> ↓ (All Classes) /// <para>Transformed into a toad and unable to execute actions.</para> /// </summary> Toad_2671 = 2671, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2672"><strong>Breathless</strong></see> ↓ (All Classes) /// <para>Toxins in the water are causing difficulty breathing. A stack of 8 will result in KO.</para> /// </summary> Breathless_2672 = 2672, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2673"><strong>Divine Might</strong></see> ↑ (PLD) /// <para>Next Holy Spirit or Holy Circle will deal increased damage and require no cast time.</para> /// </summary> DivineMight = 2673, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2674"><strong>Holy Sheltron</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> HolySheltron = 2674, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2675"><strong>Knight's Resolve</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> KnightsResolve = 2675, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2676"><strong>Knight's Benediction</strong></see> ↑ (PLD) /// <para>Regenerating HP over time.</para> /// </summary> KnightsBenediction = 2676, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2677"><strong>Surging Tempest</strong></see> ↑ (WAR) /// <para>Damage dealt is increased.</para> /// </summary> SurgingTempest = 2677, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2678"><strong>Bloodwhetting</strong></see> ↑ (WAR) /// <para>Damage taken is reduced and HP is restored with each weaponskill successfully delivered.</para> /// </summary> Bloodwhetting = 2678, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2679"><strong>Stem the Flow</strong></see> ↑ (WAR) /// <para>Damage taken is reduced.</para> /// </summary> StemTheFlow = 2679, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2680"><strong>Stem the Tide</strong></see> ↑ (WAR) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> StemTheTide = 2680, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2681"><strong>Equilibrium</strong></see> ↑ (WAR) /// <para>Regenerating HP over time.</para> /// </summary> Equilibrium = 2681, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2682"><strong>Oblation</strong></see> ↑ (DRK) /// <para>Damage taken is reduced.</para> /// </summary> Oblation = 2682, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2683"><strong>Heart of Corundum</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> HeartOfCorundum = 2683, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2684"><strong>Clarity of Corundum</strong></see> ↑ (GNB) /// <para>Damage taken is reduced.</para> /// </summary> ClarityOfCorundum = 2684, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2685"><strong>Catharsis of Corundum</strong></see> ↑ (GNB) /// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> /// </summary> CatharsisOfCorundum = 2685, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2686"><strong>Ready to Blast</strong></see> ↑ (GNB) /// <para>Able to execute Hypervelocity.</para> /// </summary> ReadyToBlast = 2686, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2687"><strong>Riddle of Wind</strong></see> ↑ (MNK) /// <para>Auto-attack delay is reduced.</para> /// </summary> RiddleOfWind_2687 = 2687, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2688"><strong>Overheated</strong></see> ↑ (MCH) /// <para>Potency of single-target weaponskills is increased. Able to execute Blazing ShotHeat BlastHeat Blast and Auto CrossbowPotency of single-target weaponskills is increasedPotency of single-target weaponskills is increased.</para> /// </summary> Overheated = 2688, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2689"><strong>Meisui</strong></see> ↑ (NIN) /// <para>Next Zesho Meppo or Bhavacakra will deal increased damage.</para> /// </summary> Meisui = 2689, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2690"><strong>Raiju Ready</strong></see> ↑ (NIN) /// <para>Able to execute Forked Raiju and Fleeting Raiju.</para> /// </summary> RaijuReady = 2690, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2691"><strong>Fleeting Raiju Ready</strong></see> ↑ (NIN) /// <para>Able to execute Fleeting Raiju.</para> /// </summary> FleetingRaijuReady = 2691, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2692"><strong>Blast Arrow Ready</strong></see> ↑ (BRD) /// <para>Able to execute Blast Arrow.</para> /// </summary> BlastArrowReady = 2692, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2693"><strong>Silken Symmetry</strong></see> ↑ (DNC) /// <para>Able to execute Reverse Cascade or Rising Windmill.</para> /// </summary> SilkenSymmetry = 2693, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2694"><strong>Silken Flow</strong></see> ↑ (DNC) /// <para>Able to execute Fountainfall or Bloodshower.</para> /// </summary> SilkenFlow = 2694, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2695"><strong>Improvisation</strong></see> ↑ (DNC) /// <para>Regenerating HP over time.</para> /// </summary> Improvisation_2695 = 2695, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2696"><strong>Rising Rhythm</strong></see> ↑ (DNC) /// <para>Potency of Improvised Finish is increased.</para> /// </summary> RisingRhythm = 2696, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2697"><strong>Improvised Finish</strong></see> ↑ (DNC) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> ImprovisedFinish = 2697, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2698"><strong>Flourishing Finish</strong></see> ↑ (DNC) /// <para>Able to execute Tillana.</para> /// </summary> FlourishingFinish = 2698, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2699"><strong>Fourfold Fan Dance</strong></see> ↑ (DNC) /// <para>Able to execute Fan Dance IV.</para> /// </summary> FourfoldFanDance = 2699, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2700"><strong>Flourishing Starfall</strong></see> ↑ (DNC) /// <para>Able to execute Starfall Dance.</para> /// </summary> FlourishingStarfall = 2700, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2701"><strong>Further Ruin</strong></see> ↑ (SMN) /// <para>Able to execute Ruin IV.</para> /// </summary> FurtherRuin_2701 = 2701, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2702"><strong>Radiant Aegis</strong></see> ↑ (SMN) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> RadiantAegis = 2702, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2703"><strong>Searing Light</strong></see> ↑ (SMN) /// <para>Damage dealt is increased.</para> /// </summary> SearingLight = 2703, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2704"><strong>Rekindle</strong></see> ↑ (SMN) /// <para>Undying Flame will be triggered upon HP falling below a certain level or expiration of effect duration.</para> /// </summary> Rekindle = 2704, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2705"><strong>Undying Flame</strong></see> ↑ (SMN) /// <para>Regenerating HP over time.</para> /// </summary> UndyingFlame = 2705, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2706"><strong>Slipstream</strong></see> ↑ (SMN) /// <para>Maintaining a localized windstorm.</para> /// </summary> Slipstream = 2706, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2707"><strong>Magick Barrier</strong></see> ↑ (RDM) /// <para>Magic damage taken is reduced and HP recovery via healing actions is increased.</para> /// </summary> MagickBarrier = 2707, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2708"><strong>Aquaveil</strong></see> ↑ (WHM) /// <para>Damage taken is reduced.</para> /// </summary> Aquaveil = 2708, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2709"><strong>Liturgy of the Bell</strong></see> ↑ (WHM) /// <para>Triggers a healing effect upon taking damage, when duration expires, or upon executing Liturgy of the Bell a second time.</para> /// </summary> LiturgyOfTheBell = 2709, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2710"><strong>Protraction</strong></see> ↑ (SCH) /// <para>Maximum HP is increased and HP recovery via healing actions is increased.</para> /// </summary> Protraction = 2710, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2711"><strong>Desperate Measures</strong></see> ↑ (SCH) /// <para>Damage taken is reduced.</para> /// </summary> DesperateMeasures = 2711, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2712"><strong>Expedience</strong></see> ↑ (SCH) /// <para>Movement speed is increased.</para> /// </summary> Expedience = 2712, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2713"><strong>Clarifying Draw</strong></see> ↑ (AST) /// <para>Able to execute Redraw.</para> /// </summary> ClarifyingDraw = 2713, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2714"><strong>Harmony of Spirit</strong></see> ↑ (AST) /// <para>Restoring MP over time.</para> /// </summary> HarmonyOfSpirit = 2714, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2715"><strong>Harmony of Body</strong></see> ↑ (AST) /// <para>Spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> HarmonyOfBody = 2715, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2716"><strong>Harmony of Mind</strong></see> ↑ (AST) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> HarmonyOfMind = 2716, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2717"><strong>Exaltation</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> Exaltation = 2717, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2718"><strong>Macrocosmos</strong></see> ↑ (AST) /// <para>Restores HP when effect duration expires or the astrologian who granted this effect executes Microcosmos. Healing potency is based on damage taken and compiled over the duration of the effect.</para> /// </summary> Macrocosmos = 2718, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2719"><strong>Chaotic Spring</strong></see> ↓ (DRG) /// <para>Sustaining damage over time.</para> /// </summary> ChaoticSpring = 2719, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2720"><strong>Power Surge</strong></see> ↑ (DRG) /// <para>Damage dealt is increased.</para> /// </summary> PowerSurge_2720 = 2720, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2721"><strong>Blade of Valor</strong></see> ↓ (PLD) /// <para>Sustaining damage over time.</para> /// </summary> BladeOfValor = 2721, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2722"><strong>Radiant Finale</strong></see> ↑ (BRD) /// <para>Playing a most radiant finale.</para> /// </summary> RadiantFinale = 2722, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2723"><strong>Phantom Kamaitachi Ready</strong></see> ↑ (NIN) /// <para>Able to execute Phantom Kamaitachi.</para> /// </summary> PhantomKamaitachiReady = 2723, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2724"><strong>Ifrit's Favor</strong></see> ↑ (SMN) /// <para>Able to execute Crimson Cyclone.</para> /// </summary> IfritsFavor = 2724, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2725"><strong>Garuda's Favor</strong></see> ↑ (SMN) /// <para>Able to execute Slipstream.</para> /// </summary> GarudasFavor = 2725, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2726"><strong>Anguish</strong></see> ↓ (All Classes) /// <para>Pure suffering is causing damage over time.</para> /// </summary> Anguish = 2726, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2727"><strong>Transfiguration</strong></see> ↑ (All Classes) /// <para>Corporeal form has been altered, inhibiting use of actions while allowing you to go undetected by certain enemies.</para> /// </summary> Transfiguration_2727 = 2727, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2728 = 2728, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2729"><strong>Incorporeal</strong></see> ↑ (All Classes) /// <para>Transcending the boundary between existence and nihility.</para> /// </summary> Incorporeal = 2729, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2730"><strong>Endwalker</strong></see> ↑ (All Classes) /// <para>Walking alone unto journey's end, the burden weighing heavy.</para> /// </summary> Endwalker = 2730, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2731"><strong>Aether Sickness</strong></see> ↓ (All Classes) /// <para>Severe nausea is reducing movement speed.</para> /// </summary> AetherSickness_2731 = 2731, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2732"><strong>Quadruple</strong></see> ↑ (All Classes) /// <para>The next action initiated will be executed four times.</para> /// </summary> Quadruple = 2732, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2733"><strong>Discomposed</strong></see> ↓ (All Classes) /// <para>Unable to maintain composure. Damage taken is increased.</para> /// </summary> Discomposed = 2733, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2734"><strong>Epic Echo</strong></see> ↑ (All Classes) /// <para>Maximum HP, damage dealt, and potency of HP restoration actions are increased beyond what even you thought possible.</para> /// </summary> EpicEcho = 2734, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2735"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis = 2735, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2736"><strong>Requisitioned Magitek</strong></see> ↑ (All Classes) /// <para>Mounted in warmachina. Thick armor reduces damage taken, but the inoperable leg renders you immobile.</para> /// </summary> RequisitionedMagitek = 2736, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2737"><strong>Fading Consciousness</strong></see> ↓ (All Classes) /// <para>Struggling to maintain consciousness after being gravely wounded.</para> /// </summary> FadingConsciousness = 2737, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2738"><strong>At Death's Door</strong></see> ↓ (All Classes) /// <para>Gravely wounded and unable to stand, but still clinging to consciousness.</para> /// </summary> AtDeathsDoor = 2738, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2739"><strong>Cold Spell</strong></see> ↓ (All Classes) /// <para>Overwhelmed by the power of ice.</para> /// </summary> ColdSpell = 2739, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2740"><strong>Hot Spell</strong></see> ↓ (All Classes) /// <para>Overwhelmed by the power of fire.</para> /// </summary> HotSpell = 2740, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2741"><strong>Shackles of Time</strong></see> ↓ (All Classes) /// <para>Bound by chains containing light- and fire-aspected aether.</para> /// </summary> ShacklesOfTime = 2741, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2742"><strong>Shackles of Companionship</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to nearby allies.</para> /// </summary> ShacklesOfCompanionship = 2742, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2743"><strong>Shackles of Loneliness</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to faraway allies.</para> /// </summary> ShacklesOfLoneliness = 2743, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2744"><strong>Inescapable Companionship</strong></see> ↓ (All Classes) /// <para>Fully bound to nearby allies.</para> /// </summary> InescapableCompanionship = 2744, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2745"><strong>Inescapable Loneliness</strong></see> ↓ (All Classes) /// <para>Fully bound to faraway allies.</para> /// </summary> InescapableLoneliness = 2745, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2746"><strong>Heart of Man</strong></see> ↑ (All Classes) /// <para>Nidhogg has taken the form of a man.</para> /// </summary> HeartOfMan_2746 = 2746, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2747 = 2747, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2748"><strong>Soul of Friendship</strong></see> ↑ (All Classes) /// <para>A beloved friend is making it possible to attack Nidhogg's right eye.</para> /// </summary> SoulOfFriendship = 2748, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2749"><strong>Soul of Devotion</strong></see> ↑ (All Classes) /// <para>A faithful ally is making it possible to attack Nidhogg's left eye.</para> /// </summary> SoulOfDevotion = 2749, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2750"><strong>Soulsow</strong></see> ↑ (RPR) /// <para>Able to execute Harvest Moon.</para> /// </summary> Soulsow_2750 = 2750, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2751"><strong>Fire Alchemy</strong></see> ↑ (All Classes) /// <para>Producing and manipulating an orb of fire aether.</para> /// </summary> FireAlchemy = 2751, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2752"><strong>Ice Alchemy</strong></see> ↑ (All Classes) /// <para>Producing and manipulating an orb of ice aether.</para> /// </summary> IceAlchemy = 2752, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2753"><strong>Thunder Alchemy</strong></see> ↑ (All Classes) /// <para>Producing and manipulating an orb of lightning aether.</para> /// </summary> ThunderAlchemy = 2753, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2754"><strong>Toxic Alchemy</strong></see> ↑ (All Classes) /// <para>Producing and manipulating an orb of toxic aether.</para> /// </summary> ToxicAlchemy = 2754, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2755"><strong>High Jump Target</strong></see> ↓ (All Classes) /// <para>Soon to be on the receiving end of a Dark High Jump.</para> /// </summary> HighJumpTarget = 2755, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2756"><strong>Spineshatter Dive Target</strong></see> ↓ (All Classes) /// <para>Soon to be on the receiving end of a Dark Spineshatter Dive.</para> /// </summary> SpineshatterDiveTarget = 2756, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2757"><strong>Elusive Jump Target</strong></see> ↓ (All Classes) /// <para>Soon to be on the receiving end of a Dark Elusive Jump.</para> /// </summary> ElusiveJumpTarget = 2757, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2758"><strong>Spreading Flames</strong></see> ↓ (All Classes) /// <para>Powerless against Nidhogg's desire for vengeance.</para> /// </summary> SpreadingFlames = 2758, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2759"><strong>Entangled Flames</strong></see> ↓ (All Classes) /// <para>Powerless against Nidhogg's desire that another share his suffering.</para> /// </summary> EntangledFlames = 2759, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2760"><strong>Borrowed Flesh</strong></see> ↑ (All Classes) /// <para>Forced to inhabit the body of another.</para> /// </summary> BorrowedFlesh = 2760, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2761"><strong>Darkened Fire</strong></see> ↑ (All Classes) /// <para>Burning with a dark flame that nullifies damage taken. Stacks of this effect are reduced by contact with flames of an opposing nature.</para> /// </summary> DarkenedFire = 2761, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2762"><strong>Death's Toll</strong></see> ↓ (All Classes) /// <para>Cursed to die. Know the pain of death or face it in sooth.</para> /// </summary> DeathsToll = 2762, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2763"><strong>Smiley Face</strong></see> ↓ (All Classes) /// <para>Face hurts from smiling. Will take increased damage if hit by Smiley Face again.</para> /// </summary> SmileyFace = 2763, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2764"><strong>Frowny Face</strong></see> ↓ (All Classes) /// <para>Face hurts from frowning. Will take increased damage if hit by Frowny Face again.</para> /// </summary> FrownyFace = 2764, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2765"><strong>Eureka Moment</strong></see> ↑ (All Classes) /// <para>Able to execute Wise to the World.</para> /// </summary> EurekaMoment = 2765, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2766 = 2766, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2767"><strong>Mark of Easy Prey</strong></see> ↓ (All Classes) /// <para>Damage taken is greatly increased when separated from similarly marked allies.</para> /// </summary> MarkOfEasyPrey = 2767, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2768"><strong>Mark of the Tides</strong></see> ↓ (All Classes) /// <para>Servant to the tides. Damage to those in proximity will occur when this effect expires.</para> /// </summary> MarkOfTheTides = 2768, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2769"><strong>Mark of the Depths</strong></see> ↓ (All Classes) /// <para>Servant to the deep. Damage to those in proximity will occur when this effect expires.</para> /// </summary> MarkOfTheDepths = 2769, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2770"><strong>Fore Mark of the Tides</strong></see> ↓ (All Classes) /// <para>Servant to the tides. Will be swept forward when this effect expires.</para> /// </summary> ForeMarkOfTheTides = 2770, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2771"><strong>Rear Mark of the Tides</strong></see> ↓ (All Classes) /// <para>Servant to the tides. Will be swept backward when this effect expires.</para> /// </summary> RearMarkOfTheTides = 2771, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2772"><strong>Left Mark of the Tides</strong></see> ↓ (All Classes) /// <para>Servant to the tides. Will be swept leftward when this effect expires.</para> /// </summary> LeftMarkOfTheTides = 2772, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2773"><strong>Right Mark of the Tides</strong></see> ↓ (All Classes) /// <para>Servant to the tides. Will be swept rightward when this effect expires.</para> /// </summary> RightMarkOfTheTides = 2773, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2774"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_2774 = 2774, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2775"><strong>Clawbound</strong></see> ↓ (All Classes) /// <para>Bound in suffering to Nidhogg's left eye. Damage taken will result in damage to the left eye.</para> /// </summary> Clawbound_2775 = 2775, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2776"><strong>Fangbound</strong></see> ↓ (All Classes) /// <para>Slaking the suffering of Nidhogg's right eye. Damage taken will result in healing to the right eye.</para> /// </summary> Fangbound_2776 = 2776, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2777"><strong>Bound and Determined</strong></see> ↓ (All Classes) /// <para>Unable to transition between Clawbound and Fangbound states.</para> /// </summary> BoundAndDetermined = 2777, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2778"><strong>Angler's Art</strong></see> ↑ (All Classes) /// <para>Able to execute certain actions.</para> /// </summary> AnglersArt = 2778, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2779"><strong>Makeshift Bait</strong></see> ↑ (All Classes) /// <para>Able to execute Mooch using average-sized fish.</para> /// </summary> MakeshiftBait = 2779, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2780"><strong>Prize Catch</strong></see> ↑ (All Classes) /// <para>Next catch is guaranteed to be a large-sized fish.</para> /// </summary> PrizeCatch = 2780, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2781"><strong>Unlimited</strong></see> ↑ (All Classes) /// <para>Confronting physical limits and choosing to defy them.</para> /// </summary> Unlimited = 2781, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2782 = 2782, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2783"><strong>Vital Sight</strong></see> ↑ (All Classes) /// <para>Fish are easier to target while spearfishing.</para> /// </summary> VitalSight = 2783, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2785 = 2785, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2786"><strong>Spark of Hope</strong></see> ↑ (All Classes) /// <para>Burning with dynamis shaped by the memory of your journey, and exceeding your own limits.</para> /// </summary> SparkOfHope = 2786, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2787"><strong>Ploutonos</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Ploutonos = 2787, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2788"><strong>Eubuleus</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> Eubuleus = 2788, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2789"><strong>True Bravery</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> TrueBravery = 2789, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2790"><strong>True Step</strong></see> ↑ (All Classes) /// <para>Caught up in the dance.</para> /// </summary> TrueStep = 2790, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2791"><strong>True Benison</strong></see> ↑ (All Classes) /// <para>A holy barrier is nullifying damage.</para> /// </summary> TrueBenison = 2791, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2792"><strong>True Medica II</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> TrueMedicaIi = 2792, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2793"><strong>True Stoneskin</strong></see> ↑ (All Classes) /// <para>Lithified flesh is absorbing damage.</para> /// </summary> TrueStoneskin = 2793, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2794"><strong>True Hallowed Ground</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks.</para> /// </summary> TrueHallowedGround_2794 = 2794, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2795"><strong>Circle of Clarity</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> CircleOfClarity = 2795, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2796"><strong>True Sentinel</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> TrueSentinel = 2796, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2797"><strong>True Rampart</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> TrueRampart = 2797, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2798"><strong>True Reprisal</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> TrueReprisal = 2798, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2799"><strong>Aethersucker</strong></see> ↑ (All Classes) /// <para>Absorbing and storing aether.</para> /// </summary> Aethersucker = 2799, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2800"><strong>Casting Chlamys</strong></see> ↑ (All Classes) /// <para>Chlamys is replete with the cursed aether of one of three roles.</para> /// </summary> CastingChlamys = 2800, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2801"><strong>Elemental Resistance Down</strong></see> ↓ (All Classes) /// <para>Resistance to all elements is reduced.</para> /// </summary> ElementalResistanceDown = 2801, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2802"><strong>Role Call</strong></see> ↓ (All Classes) /// <para>Cast as the receptacle for cursed aether. Effect may be transferred by coming into contact with another player. When this effect expires, players of a certain role will take massive damage.</para> /// </summary> RoleCall = 2802, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2803"><strong>Miscast</strong></see> ↓ (All Classes) /// <para>No longer subject to the effects of Role Call.</para> /// </summary> Miscast = 2803, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2804"><strong>Thornpricked</strong></see> ↓ (All Classes) /// <para>Flesh has been pierced by aetherial barbs. When this effect expires, the thorns' aether will disperse, resulting in attack damage.</para> /// </summary> Thornpricked = 2804, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2805"><strong>Carrot of Happiness</strong></see> ↑ (All Classes) /// <para>You find yourself in an unusually good mood, with a sudden craving to eat more carrots.</para> /// </summary> CarrotOfHappiness = 2805, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2806"><strong>Philosopher's Carrot</strong></see> ↑ (All Classes) /// <para>You find your mind is suddenly much sharper than usual.</para> /// </summary> PhilosophersCarrot = 2806, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2807"><strong>Lucky Carrot</strong></see> ↑ (All Classes) /// <para>You suddenly feel as though Nymeia's wheel is spinning in your favor.</para> /// </summary> LuckyCarrot = 2807, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2808"><strong>Iron Carrot</strong></see> ↑ (All Classes) /// <para>You suddenly find yourself full of vim and vigor.</para> /// </summary> IronCarrot = 2808, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2809"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp_2809 = 2809, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2810"><strong>Chorus Aligned</strong></see> ↓ (All Classes) /// <para>Dancing to someone else's tune.</para> /// </summary> ChorusAligned = 2810, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2812 = 2812, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2813 = 2813, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2814 = 2814, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2815 = 2815, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2816 = 2816, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2817"><strong>Partygoer</strong></see> ↑ (All Classes) /// <para>Attending the Phantoms' Feast.</para> /// </summary> Partygoer = 2817, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2818"><strong>Earth-aspected</strong></see> ↑ (All Classes) /// <para>Body's aetherial balance is leaning toward the earthen.</para> /// </summary> Earthaspected = 2818, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2819"><strong>Lightning-aspected</strong></see> ↑ (All Classes) /// <para>Body's aetherial balance is leaning toward levin.</para> /// </summary> Lightningaspected = 2819, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2820"><strong>Wind-aspected</strong></see> ↑ (All Classes) /// <para>Body's aetherial balance is leaning toward wind.</para> /// </summary> Windaspected = 2820, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2821"><strong>To the Dungeons</strong></see> ↓ (All Classes) /// <para>Being punished for disobedience. Unable to move or execute actions.</para> /// </summary> ToTheDungeons = 2821, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2822"><strong>Wicked Whim</strong></see> ↑ (All Classes) /// <para>Feeling whimsically contrarious. Those who obey orders will be punished.</para> /// </summary> WickedWhim = 2822, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2823 = 2823, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2824"><strong>Incapacitated</strong></see> ↓ (All Classes) /// <para>Unable to perform any actions.</para> /// </summary> Incapacitated = 2824, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2825"><strong>Deactivated</strong></see> ↓ (All Classes) /// <para>All autonomous movement is temporarily disabled.</para> /// </summary> Deactivated = 2825, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2826"><strong>Creeping Poison</strong></see> ↓ (All Classes) /// <para>Poison courses through your veins, causing you to periodically become unable to move or execute actions.</para> /// </summary> CreepingPoison = 2826, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2827"><strong>Irmin Hedge</strong></see> ↑ (All Classes) /// <para>The Hedge's protection makes you immune to poison.</para> /// </summary> IrminHedge = 2827, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2828"><strong>Prayers of Hope</strong></see> ↑ (All Classes) /// <para>Drawing strength from the prayers of your comrades. Damage dealt is significantly increased.</para> /// </summary> PrayersOfHope = 2828, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2829"><strong>Last Vigil</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> LastVigil = 2829, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2830"><strong>Last Vigil</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> LastVigil_2830 = 2830, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2831"><strong>Shield of the Fury</strong></see> ↑ (GLA MRD PLD WAR DRK GNB) /// <para>Damage taken is reduced.</para> /// </summary> ShieldOfTheFury = 2831, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2832"><strong>Tenebrous Grasp</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> TenebrousGrasp = 2832, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2833"><strong>Thunderstruck</strong></see> ↓ (All Classes) /// <para>Body is accumulating charge. Will inflict lightning damage to those nearby when this effect expires.</para> /// </summary> Thunderstruck_2833 = 2833, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2834"><strong>Neurolink</strong></see> ↓ (All Classes) /// <para>Under the control of an Allagan shackling device.</para> /// </summary> Neurolink_2834 = 2834, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2835"><strong>Forward Bearing</strong></see> ↑ (All Classes) /// <para>Aiming to attack in a forward direction relative to most recent lickwhip or whiplick stance.</para> /// </summary> ForwardBearing = 2835, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2836"><strong>Backward Bearing</strong></see> ↑ (All Classes) /// <para>Aiming to attack in a backward direction relative to most recent lickwhip or whiplick stance.</para> /// </summary> BackwardBearing = 2836, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2837"><strong>Leftward Bearing</strong></see> ↑ (All Classes) /// <para>Aiming to attack in a leftward direction relative to most recent lickwhip or whiplick stance.</para> /// </summary> LeftwardBearing = 2837, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2838"><strong>Rightward Bearing</strong></see> ↑ (All Classes) /// <para>Aiming to attack in a rightward direction relative to most recent lickwhip or whiplick stance.</para> /// </summary> RightwardBearing = 2838, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2839"><strong>Suiton</strong></see> ↑ (All Classes) /// <para>Body is enveloped in a light-bending veil of water, allowing use of actions normally requiring the Hidden status.</para> /// </summary> Suiton_2839 = 2839, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2840"><strong>Rightward Whimsy</strong></see> ↑ (All Classes) /// <para>Seized with the urge to face right.</para> /// </summary> RightwardWhimsy = 2840, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2841"><strong>Leftward Whimsy</strong></see> ↑ (All Classes) /// <para>Seized with the urge to face left.</para> /// </summary> LeftwardWhimsy = 2841, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2842"><strong>Backward Whimsy</strong></see> ↑ (All Classes) /// <para>Seized with the urge to face backward.</para> /// </summary> BackwardWhimsy = 2842, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2843"><strong>Iron Will</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> IronWill_2843 = 2843, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2844"><strong>Somanoutic Barrier</strong></see> ↑ (All Classes) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> SomanouticBarrier = 2844, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2845"><strong>Enhanced Harpe</strong></see> ↑ (RPR) /// <para>Next Harpe requires no time to cast and will reduce the recast timer of Hell's Ingress and Hell's Egress.</para> /// </summary> EnhancedHarpe = 2845, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2846"><strong>Whispered Incantation</strong></see> ↓ (All Classes) /// <para>The next offensive spell cast will be committed to memory.</para> /// </summary> WhisperedIncantation = 2846, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2847"><strong>Whispers Manifest</strong></see> ↓ (All Classes) /// <para>The spell cast during Whispered Incantation has been committed to memory and can be cast immediately.</para> /// </summary> WhispersManifest = 2847, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2848"><strong>Mirrored Incantation</strong></see> ↓ (All Classes) /// <para>The next attack's area of effect will be inverted. </para> /// </summary> MirroredIncantation = 2848, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2849 = 2849, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2850 = 2850, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2851"><strong>In Event</strong></see> ↑ (All Classes) /// <para>Participating in an in-game event.</para> /// </summary> InEvent_2851 = 2851, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2852"><strong>HP Recovery Down</strong></see> ↓ (All Classes) /// <para>Healing effects received are reduced.</para> /// </summary> HpRecoveryDown = 2852, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2853"><strong>Titan's Favor</strong></see> ↑ (SMN) /// <para>Able to execute Mountain Buster.</para> /// </summary> TitansFavor = 2853, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2854"><strong>Soul Reaver</strong></see> ↑ (RPR) /// <para>Able to execute Guillotine.</para> /// </summary> SoulReaver_2854 = 2854, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2855"><strong>Enhanced Gibbet</strong></see> ↑ (RPR) /// <para>Next Gibbet will deal increased damage.</para> /// </summary> EnhancedGibbet_2855 = 2855, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2856"><strong>Gallows Oiled</strong></see> ↑ (RPR) /// <para>Able to execute Gallows.</para> /// </summary> GallowsOiled = 2856, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2857"><strong>Enhanced Void Reaping</strong></see> ↑ (RPR) /// <para>Next Void Reaping will deal increased damage.</para> /// </summary> EnhancedVoidReaping_2857 = 2857, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2858"><strong>Ripe for Reaping</strong></see> ↑ (RPR) /// <para>Able to execute Cross Reaping.</para> /// </summary> RipeForReaping = 2858, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2859"><strong>Enhanced Harpe</strong></see> ↑ (RPR) /// <para>Next Harpe will require no time to cast.</para> /// </summary> EnhancedHarpe_2859 = 2859, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2860"><strong>Threshold</strong></see> ↑ (RPR) /// <para>Able to execute Regress.</para> /// </summary> Threshold_2860 = 2860, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2861"><strong>Crest of Time Borrowed</strong></see> ↑ (RPR) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> CrestOfTimeBorrowed_2861 = 2861, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2862"><strong>Crest of Time Returned</strong></see> ↑ (RPR) /// <para>Regenerating HP over time.</para> /// </summary> CrestOfTimeReturned_2862 = 2862, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2863"><strong>Enshrouded</strong></see> ↑ (RPR) /// <para>Playing host to an avatar.</para> /// </summary> Enshrouded_2863 = 2863, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2864"><strong>Eukrasian Dosis III</strong></see> ↓ (SGE) /// <para>Weaponskill and spell cast time and recast time are increased.</para> /// </summary> EukrasianDosisIii_2864 = 2864, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2865"><strong>Eukrasian Diagnosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EukrasianDiagnosis_2865 = 2865, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2866"><strong>Eukrasian Prognosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EukrasianPrognosis_2866 = 2866, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2867"><strong>Eukrasia</strong></see> ↑ (SGE) /// <para>Certain actions are being augmented.</para> /// </summary> Eukrasia_2867 = 2867, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2868"><strong>Pneuma</strong></see> ↑ (SGE) /// <para>Damage taken is reduced.</para> /// </summary> Pneuma_2868 = 2868, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2869"><strong>Haima</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Haima_2869 = 2869, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2870"><strong>Haimatinon</strong></see> ↑ (SGE) /// <para>Stacks are consumed to restore the Haima barrier each time it is absorbed. Grants a healing effect when duration expires, its potency based on the number of remaining stacks.</para> /// </summary> Haimatinon_2870 = 2870, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2871"><strong>Kardia</strong></see> ↑ (SGE) /// <para>Triggers additional effects on a player under the effect of Kardion granted by you when casting certain attack magic.</para> /// </summary> Kardia_2871 = 2871, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2872"><strong>Kardion</strong></see> ↑ (SGE) /// <para>Triggers additional effects when the sage who applied this status casts certain attack magic.</para> /// </summary> Kardion_2872 = 2872, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2873"><strong>Limit Breaker</strong></see> ↑ (All Classes) /// <para>Executing limit break.</para> /// </summary> LimitBreaker = 2873, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2874"><strong>Shackles of Time</strong></see> ↓ (All Classes) /// <para>Bound by chains containing light- and fire-aspected aether.</para> /// </summary> ShacklesOfTime_2874 = 2874, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2875"><strong>Shackles of Time</strong></see> ↓ (All Classes) /// <para>Bound by chains containing light- and fire-aspected aether.</para> /// </summary> ShacklesOfTime_2875 = 2875, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2876"><strong>Heros's Mantle</strong></see> ↑ (All Classes) /// <para>Armed with a hero's blade.</para> /// </summary> HerossMantle = 2876, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2877"><strong>Magos's Mantle</strong></see> ↑ (All Classes) /// <para>Armed with a magus's staff.</para> /// </summary> MagossMantle = 2877, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2878"><strong>Mousa's Mantle</strong></see> ↑ (All Classes) /// <para>Armed with a muse's war quoits.</para> /// </summary> MousasMantle = 2878, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2879"><strong>Adamantinon Thelema</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> AdamantinonThelema = 2879, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2880"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_2880 = 2880, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2881 = 2881, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2885"><strong>Shackles of Companionship</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to nearby allies.</para> /// </summary> ShacklesOfCompanionship_2885 = 2885, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2886"><strong>Shackles of Companionship</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to nearby allies.</para> /// </summary> ShacklesOfCompanionship_2886 = 2886, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2887"><strong>Shackles of Companionship</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to nearby allies.</para> /// </summary> ShacklesOfCompanionship_2887 = 2887, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2888"><strong>Shackles of Loneliness</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to faraway allies.</para> /// </summary> ShacklesOfLoneliness_2888 = 2888, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2889"><strong>Shackles of Loneliness</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to faraway allies.</para> /// </summary> ShacklesOfLoneliness_2889 = 2889, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2890"><strong>Shackles of Loneliness</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to faraway allies.</para> /// </summary> ShacklesOfLoneliness_2890 = 2890, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2891"><strong>Spearfisher's Intuition</strong></see> ↑ (All Classes) /// <para>Heightened senses are improving chances of discovering rare fish only obtainable under special conditions.</para> /// </summary> SpearfishersIntuition = 2891, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2892 = 2892, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2893"><strong>Plagued</strong></see> ↓ (All Classes) /// <para>Toxic miasma is warping the flesh.</para> /// </summary> Plagued = 2893, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2894 = 2894, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2895"><strong>Solemn Vow</strong></see> ↑ (All Classes) /// <para>Recognized under the oath Hraesvelgr swore to his beloved Shiva─that he would never kill her kin.</para> /// </summary> SolemnVow = 2895, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2896"><strong>Mortal Vow</strong></see> ↓ (All Classes) /// <para>Condemned by Nidhogg's vow to avenge his brood-sister. Healing potency is decreased. Taking damage over time, and will inflict anguish on those nearby in turn when this effect expires.</para> /// </summary> MortalVow = 2896, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2897"><strong>Mortal Atonement</strong></see> ↓ (All Classes) /// <para>No longer condemned by Nidhogg's Mortal Vow.</para> /// </summary> MortalAtonement = 2897, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2898"><strong>Boiling</strong></see> ↓ (All Classes) /// <para>Body is slowly heating up. Will become Pyretic when this effect expires.</para> /// </summary> Boiling = 2898, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2899"><strong>Freezing</strong></see> ↓ (All Classes) /// <para>Body is slowly turning to ice. Will experience a Deep Freeze when this effect expires.</para> /// </summary> Freezing_2899 = 2899, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2900"><strong>Sustained Dark Damage</strong></see> ↓ (All Classes) /// <para>Darkness is causing damage over time.</para> /// </summary> SustainedDarkDamage = 2900, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2901"><strong>Sustained Light Damage</strong></see> ↓ (All Classes) /// <para>Light is causing damage over time.</para> /// </summary> SustainedLightDamage = 2901, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2902"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) /// <para>Fire resistance is significantly reduced.</para> /// </summary> FireResistanceDownIi_2902 = 2902, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2903"><strong>Ice Resistance Down II</strong></see> ↓ (All Classes) /// <para>Ice resistance is significantly reduced.</para> /// </summary> IceResistanceDownIi_2903 = 2903, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2904"><strong>Unforgotten</strong></see> ↑ (All Classes) /// <para>The next phenomenon to occur will be recorded.</para> /// </summary> Unforgotten = 2904, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2905"><strong>Revolutionary</strong></see> ↑ (All Classes) /// <para>Fighting backward. Areas of effect are inverted.</para> /// </summary> Revolutionary = 2905, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2907"><strong>Tizona's Bastion</strong></see> ↑ (All Classes) /// <para>An area of land has been granted protection, reducing damage taken for all who enter.</para> /// </summary> TizonasBastion = 2907, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2908"><strong>Tizona's Bastion</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> TizonasBastion_2908 = 2908, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2909"><strong>Umbral Rays</strong></see> ↓ (All Classes) /// <para>Damage taken by certain attacks is increased.</para> /// </summary> UmbralRays = 2909, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2910"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_2910 = 2910, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2911"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_2911 = 2911, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2912"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_2912 = 2912, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2913"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_2913 = 2913, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2914"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_2914 = 2914, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2915"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_2915 = 2915, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2916"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2916 = 2916, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2917"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_2917 = 2917, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2918"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_2918 = 2918, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2919"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_2919 = 2919, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2920"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_2920 = 2920, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2921"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_2921 = 2921, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2922"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_2922 = 2922, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2923"><strong>Shackles of Companionship</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to nearby allies.</para> /// </summary> ShacklesOfCompanionship_2923 = 2923, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2924"><strong>Shackles of Loneliness</strong></see> ↓ (All Classes) /// <para>Wrapped in chains binding you ever tighter to faraway allies.</para> /// </summary> ShacklesOfLoneliness_2924 = 2924, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2925"><strong>Acting DPS</strong></see> ↓ (All Classes) /// <para>When this effect expires, non-DPS will sustain heavy damage. However, being hit by certain attacks will remove this effect without the resulting damage.</para> /// </summary> ActingDps = 2925, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2926"><strong>Acting Healer</strong></see> ↓ (All Classes) /// <para>When this effect expires, non-healers will sustain heavy damage. However, being hit by certain attacks will remove this effect without the resulting damage.</para> /// </summary> ActingHealer = 2926, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2927"><strong>Acting Tank</strong></see> ↓ (All Classes) /// <para>When this effect expires, non-tanks will sustain heavy damage. However, being hit by certain attacks will remove this effect without the resulting damage.</para> /// </summary> ActingTank = 2927, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2928"><strong>Fountain of Fire</strong></see> ↑ (All Classes) /// <para>Flames are enhancing target capabilities. Damage dealt and healing potency are increased.</para> /// </summary> FountainOfFire_2928 = 2928, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2929"><strong>Trickle of Fire</strong></see> ↑ (All Classes) /// <para>Flames are enhancing target capabilities. Healing potency is increased.</para> /// </summary> TrickleOfFire = 2929, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2930 = 2930, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2931 = 2931, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2932"><strong>Fleet-footed</strong></see> ↑ (All Classes) /// <para>Effect duration of Sprint is increased in large settlements.</para> /// </summary> Fleetfooted = 2932, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2933"><strong>In Event</strong></see> ↑ (All Classes) /// <para>Participating in an in-game event.</para> /// </summary> InEvent_2933 = 2933, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2935"><strong>Sustained Damage</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> SustainedDamage = 2935, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2936"><strong>Temporary Misdirection</strong></see> ↓ (All Classes) /// <para>Overcome with confusion and can only move in the direction indicated.</para> /// </summary> TemporaryMisdirection_2936 = 2936, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2937"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) /// <para>Fire resistance is significantly reduced.</para> /// </summary> FireResistanceDownIi_2937 = 2937, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2938"><strong>Kerakeia</strong></see> ↑ (SGE) /// <para>Regenerating HP over time.</para> /// </summary> Kerakeia = 2938, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2939"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_2939 = 2939, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2940"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_2940 = 2940, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2941"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_2941 = 2941, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2942"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_2942 = 2942, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2943"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_2943 = 2943, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2944"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_2944 = 2944, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2945"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_2945 = 2945, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2946"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_2946 = 2946, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2947"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_2947 = 2947, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2948"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_2948 = 2948, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2949"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_2949 = 2949, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2950"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_2950 = 2950, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2951"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_2951 = 2951, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2952"><strong>True Finish</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> TrueFinish = 2952, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2953"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_2953 = 2953, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2954"><strong>Willful</strong></see> ↑ (All Classes) /// <para>Burning for battle. Sustaining most damage that would normally result in KO will instead ignite the Will to Live.</para> /// </summary> Willful = 2954, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2955"><strong>Will to Live</strong></see> ↓ (All Classes) /// <para>Standing tall despite damage that would normally result in incapacitation. Most damage is nullified. Unable to move or execute actions.</para> /// </summary> WillToLive = 2955, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2957"><strong>Swift Deception</strong></see> ↑ (All Classes) /// <para>Unable to be detected by sight, and movement speed is increased.</para> /// </summary> SwiftDeception = 2957, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2958"><strong>Forward Whimsy</strong></see> ↑ (All Classes) /// <para>Seized with the urge to face forward.</para> /// </summary> ForwardWhimsy = 2958, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2959"><strong>Ogi Namikiri Ready</strong></see> ↑ (SAM) /// <para>Able to execute Ogi Namikiri.</para> /// </summary> OgiNamikiriReady = 2959, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2960"><strong>Enhanced Flare</strong></see> ↑ (BLM) /// <para>Flare will deal increased damage.</para> /// </summary> EnhancedFlare = 2960, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2961"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_2961 = 2961, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2962"><strong>Twisting Viper</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> TwistingViper = 2962, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2963"><strong>Gnashing Wolf</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> GnashingWolf = 2963, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2964"><strong>Radiant Finale</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> RadiantFinale_2964 = 2964, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2965"><strong>Necrosis</strong></see> ↓ (All Classes) /// <para>Flesh is dying. When this effect expires, decay will result in KO.</para> /// </summary> Necrosis = 2965, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2966"><strong>Craven Companionship</strong></see> ↓ (All Classes) /// <para>Will suffer Fear if no allies are in range when this effect expires.</para> /// </summary> CravenCompanionship = 2966, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2967"><strong>Sustained Damage</strong></see> ↓ (All Classes) /// <para>Taking damage over time.</para> /// </summary> SustainedDamage_2967 = 2967, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2968"><strong>Craniotomy</strong></see> ↓ (All Classes) /// <para>Rendered confused and agitated. Attacking allies and sustaining damage over time.</para> /// </summary> Craniotomy = 2968, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2969"><strong>Sage's Wisdom</strong></see> ↑ (All Classes) /// <para>Shielded from the effects of Craniotomy.</para> /// </summary> SagesWisdom = 2969, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2970 = 2970, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2971"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced.</para> /// </summary> HpPenalty_2971 = 2971, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2972"><strong>Bloodsown Circle</strong></see> ↑ (RPR) /// <para>Able to gain stacks of Immortal Sacrifice from party members under the effect of your Circle of Sacrifice.</para> /// </summary> BloodsownCircle_2972 = 2972, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2973"><strong>Spinning</strong></see> ↓ (All Classes) /// <para>Spinning in circles across the field and unable to stop.</para> /// </summary> Spinning = 2973, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2974"><strong>Dizzy</strong></see> ↓ (All Classes) /// <para>Balance is compromised, resulting in immobility.</para> /// </summary> Dizzy = 2974, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2975"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Fetters_2975 = 2975, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2976"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_2976 = 2976, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2977"><strong>HP Recovery Down</strong></see> ↓ (All Classes) /// <para>HP recovery is reduced by 20%.</para> /// </summary> HpRecoveryDown_2977 = 2977, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2978"><strong>HP Recovery Down</strong></see> ↓ (All Classes) /// <para>HP recovery is reduced by 100%.</para> /// </summary> HpRecoveryDown_2978 = 2978, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2979 = 2979, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2980 = 2980, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2981 = 2981, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2982 = 2982, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2983"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions.</para> /// </summary> Sleep_2983 = 2983, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2984 = 2984, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2985 = 2985, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2986 = 2986, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2987 = 2987, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_2988 = 2988, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2989"><strong>Echoes of Nausea</strong></see> ↓ (All Classes) /// <para>Consumed by Meteion's hopeless memories. Will execute Wave of Nausea when this effect expires.</para> /// </summary> EchoesOfNausea = 2989, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2990"><strong>Echoes of Befoulment</strong></see> ↓ (All Classes) /// <para>Consumed by Meteion's hopeless memories. Will execute Befoulment when this effect expires.</para> /// </summary> EchoesOfBefoulment = 2990, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2991"><strong>Echoes of the Future</strong></see> ↓ (All Classes) /// <para>Consumed by Meteion's hopeless memories. Will execute No Future when this effect expires.</para> /// </summary> EchoesOfTheFuture = 2991, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2992"><strong>Echoes of Benevolence</strong></see> ↓ (All Classes) /// <para>Consumed by Meteion's hopeless memories. Will execute Benevolence when this effect expires.</para> /// </summary> EchoesOfBenevolence = 2992, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2993"><strong>Grip of Despair</strong></see> ↓ (All Classes) /// <para>Held by bonds of despair and taking damage over time.</para> /// </summary> GripOfDespair = 2993, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2994"><strong>Hardcore</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> Hardcore = 2994, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2995"><strong>Blackfeather Boost</strong></see> ↑ (All Classes) /// <para>Movement speed is increased while weaponskill and spell cast and recast time are reduced.</para> /// </summary> BlackfeatherBoost = 2995, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2996"><strong>Swift Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased.</para> /// </summary> SwiftSprint = 2996, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2997"><strong>Swift Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased.</para> /// </summary> SwiftSprint_2997 = 2997, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2998"><strong>Lightning Resistance Down II</strong></see> ↓ (All Classes) /// <para>Lightning resistance is significantly reduced.</para> /// </summary> LightningResistanceDownIi_2998 = 2998, + /// <summary> /// <see href="https://garlandtools.org/db/#status/2999"><strong>In Event</strong></see> ↑ (All Classes) /// <para>Participating in an in-game event.</para> /// </summary> InEvent_2999 = 2999, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3000"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3000 = 3000, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3001"><strong>Disciplined Fist</strong></see> ↑ (PGL) /// <para>Damage dealt is increased.</para> /// </summary> DisciplinedFist = 3001, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3002"><strong>Shadowbite Ready</strong></see> ↑ (BRD) /// <para>Able to execute Shadowbite.</para> /// </summary> ShadowbiteReady = 3002, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3003"><strong>Holos</strong></see> ↑ (SGE) /// <para>Damage taken is reduced.</para> /// </summary> Holos = 3003, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3004"><strong>First in Line</strong></see> ↓ (All Classes) /// <para>Marked as target #1.</para> /// </summary> FirstInLine = 3004, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3005"><strong>Second in Line</strong></see> ↓ (All Classes) /// <para>Marked as target #2.</para> /// </summary> SecondInLine = 3005, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3006"><strong>Third in Line</strong></see> ↓ (All Classes) /// <para>Marked as target #3.</para> /// </summary> ThirdInLine = 3006, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3007"><strong>Petrification</strong></see> ↓ (All Classes) /// <para>Stone-like rigidity is preventing the execution of actions.</para> /// </summary> Petrification_3007 = 3007, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3008"><strong>Unshakable Loyalty</strong></see> ↓ (All Classes) /// <para>Standing by force of fealty alone. Health is waning over time.</para> /// </summary> UnshakableLoyalty = 3008, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3009"><strong>Might of the Vortex</strong></see> ↑ (All Classes) /// <para>Primed with the power of Garuda.</para> /// </summary> MightOfTheVortex = 3009, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3010"><strong>Might of Crags</strong></see> ↑ (All Classes) /// <para>Primed with the power of Titan.</para> /// </summary> MightOfCrags = 3010, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3011"><strong>Might of the Inferno</strong></see> ↑ (All Classes) /// <para>Primed with the power of Ifrit.</para> /// </summary> MightOfTheInferno = 3011, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3012"><strong>Vortex Barrier</strong></see> ↑ (All Classes) /// <para>Encircled by impenetrable walls of wind, nullifying all damage.</para> /// </summary> VortexBarrier = 3012, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3013"><strong>Prayer of Light</strong></see> ↑ (All Classes) /// <para>Willing that the Mothercrystal give you strength in the Darkness.</para> /// </summary> PrayerOfLight = 3013, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3014"><strong>Blessing of Light</strong></see> ↑ (All Classes) /// <para>Bathed in the light of the Mothercrystal.</para> /// </summary> BlessingOfLight_3014 = 3014, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3015"><strong>On Balance</strong></see> ↓ (All Classes) /// <para>Soul's weight is being judged. Petrification will take hold when this effect expires.</para> /// </summary> OnBalance = 3015, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3016 = 3016, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3017"><strong>Flourishing Symmetry</strong></see> ↑ (DNC) /// <para>Able to execute Reverse Cascade or Rising Windmill.</para> /// </summary> FlourishingSymmetry = 3017, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3018"><strong>Flourishing Flow</strong></see> ↑ (DNC) /// <para>Able to execute Fountainfall or Bloodshower.</para> /// </summary> FlourishingFlow = 3018, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3019"><strong>Confiteor Ready</strong></see> ↑ (PLD) /// <para>Able to execute Confiteor.</para> /// </summary> ConfiteorReady = 3019, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3020"><strong>Souls in the Balance</strong></see> ↑ (All Classes) /// <para>The number of souls currently being weighed.</para> /// </summary> SoulsInTheBalance = 3020, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3021"><strong>Unguarded</strong></see> ↓ (All Classes) /// <para>Unable to execute Guard.</para> /// </summary> Unguarded = 3021, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3022"><strong>Half-asleep</strong></see> ↓ (All Classes) /// <para>Struggling to keep eyes open. Will succumb to Sleep when effect expires.</para> /// </summary> Halfasleep = 3022, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3023"><strong>Hysteria</strong></see> ↓ (All Classes) /// <para>Unable to act on your own free will.</para> /// </summary> Hysteria_3023 = 3023, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3024"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_3024 = 3024, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3025"><strong>Sacred Claim</strong></see> ↓ (PLD) /// <para>Restoring HP to enemies who deal you damage.</para> /// </summary> SacredClaim = 3025, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3026"><strong>Holy Sheltron</strong></see> ↑ (PLD) /// <para>A holy barrier is nullifying damage.</para> /// </summary> HolySheltron_3026 = 3026, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3028"><strong>Confiteor Ready</strong></see> ↑ (PLD) /// <para>Able to execute Confiteor.</para> /// </summary> ConfiteorReady_3028 = 3028, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3029"><strong>Onslaught</strong></see> ↓ (WAR) /// <para>Damage taken is increased.</para> /// </summary> Onslaught = 3029, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3030"><strong>Bloodwhetting</strong></see> ↑ (WAR) /// <para>Weaponskills generate HP equal to the amount of damage dealt.</para> /// </summary> Bloodwhetting_3030 = 3030, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3031"><strong>Stem the Tide</strong></see> ↑ (WAR) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> StemTheTide_3031 = 3031, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3033"><strong>Blackblood</strong></see> ↑ (DRK) /// <para>Able to execute powerful weaponskills.</para> /// </summary> Blackblood = 3033, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3034"><strong>Dark Arts</strong></see> ↑ (DRK) /// <para>Able to execute Shadowbringer without consuming HP.</para> /// </summary> DarkArts_3034 = 3034, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3036"><strong>Salted Earth</strong></see> ↑ (DRK) /// <para>The ground is rendered void of all life, dealing unaspected damage to any who tread upon it.</para> /// </summary> SaltedEarth_3036 = 3036, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3037"><strong>Salted Earth</strong></see> ↑ (DRK) /// <para>Damage taken is reduced and regenerating HP over time.</para> /// </summary> SaltedEarth_3037 = 3037, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3038"><strong>Salt's Bane</strong></see> ↓ (DRK) /// <para>Sustaining damage over time.</para> /// </summary> SaltsBane = 3038, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3039"><strong>Undead Redemption</strong></see> ↑ (DRK) /// <para>Most attacks cannot reduce your HP to less than 1. HP is restored with each weaponskill successfully delivered.</para> /// </summary> UndeadRedemption = 3039, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3041"><strong>Ready to Blast</strong></see> ↑ (GNB) /// <para>Able to execute Hypervelocity.</para> /// </summary> ReadyToBlast_3041 = 3041, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3042"><strong>No Mercy</strong></see> ↑ (GNB) /// <para>Damage dealt and potency of HP restoration actions are increased. Movement speed is also increased.</para> /// </summary> NoMercy_3042 = 3042, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3043"><strong>Powder Barrel</strong></see> ↑ (GNB) /// <para>Able to execute Gnashing Fang.</para> /// </summary> PowderBarrel = 3043, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3044"><strong>Junction Tank</strong></see> ↑ (GNB) /// <para>Able to execute Nebula. Execution of certain weaponskills will create a barrier to nullify damage.</para> /// </summary> JunctionTank = 3044, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3045"><strong>Junction DPS</strong></see> ↑ (GNB) /// <para>Able to execute Blasting Zone. Potency of certain actions is increased.</para> /// </summary> JunctionDps = 3045, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3046"><strong>Junction Healer</strong></see> ↑ (GNB) /// <para>Able to execute Aurora. Restoring HP to self and nearby party members upon executing certain actions.</para> /// </summary> JunctionHealer = 3046, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3047"><strong>Hypervelocity</strong></see> ↑ (GNB) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Hypervelocity = 3047, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3048"><strong>Jugular Rip</strong></see> ↑ (GNB) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> JugularRip = 3048, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3049"><strong>Abdomen Tear</strong></see> ↑ (GNB) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> AbdomenTear = 3049, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3050"><strong>Eye Gouge</strong></see> ↑ (GNB) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EyeGouge = 3050, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3051"><strong>Nebula</strong></see> ↑ (GNB) /// <para>Inflicting a portion of sustained damage back to its source.</para> /// </summary> Nebula_3051 = 3051, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3052"><strong>Relentless Rush</strong></see> ↑ (GNB) /// <para>Swinging blade wildly, dealing damage over time to nearby enemies and deflecting a portion of damage taken.</para> /// </summary> RelentlessRush = 3052, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3053"><strong>Relentless Shrapnel</strong></see> ↓ (GNB) /// <para>Damage taken is increased.</para> /// </summary> RelentlessShrapnel = 3053, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3054"><strong>Guard</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced. All Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, knockback, and draw-in effects are nullified. Movement speed is reduced.</para> /// </summary> Guard = 3054, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3055"><strong>Contact Prohibition Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order prohibiting contact.</para> /// </summary> ContactProhibitionOrdained_3055 = 3055, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3056"><strong>Contact Regulation Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order to regulate contact.</para> /// </summary> ContactRegulationOrdained_3056 = 3056, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3057"><strong>Escape Prohibition Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order prohibiting escape.</para> /// </summary> EscapeProhibitionOrdained_3057 = 3057, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3058"><strong>Escape Detection Ordained</strong></see> ↓ (All Classes) /// <para>You have received an order to detect escape.</para> /// </summary> EscapeDetectionOrdained_3058 = 3058, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3059"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_3059 = 3059, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3060"><strong>Flesh Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a slashing weapon are bleeding, causing damage over time.</para> /// </summary> FleshWound_3060 = 3060, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3061"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_3061 = 3061, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3062"><strong>Stab Wound</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a piercing weapon are bleeding, causing damage over time.</para> /// </summary> StabWound_3062 = 3062, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3063"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_3063 = 3063, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3064"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_3064 = 3064, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3065"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3065 = 3065, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3066"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3066 = 3066, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3067"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_3067 = 3067, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3068"><strong>Frostbite</strong></see> ↓ (All Classes) /// <para>Sustaining ice damage over time.</para> /// </summary> Frostbite_3068 = 3068, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3069"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_3069 = 3069, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3070"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_3070 = 3070, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3071"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_3071 = 3071, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3072"><strong>Sludge</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Sludge_3072 = 3072, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3073"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_3073 = 3073, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3074"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_3074 = 3074, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3075"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3075 = 3075, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3076"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3076 = 3076, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3077"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_3077 = 3077, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3078"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_3078 = 3078, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3079"><strong>Doton Corruption</strong></see> ↓ (NIN) /// <para>Sustaining earth damage over time.</para> /// </summary> DotonCorruption = 3079, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3080"><strong>Rhythmetic Fever</strong></see> ↓ (All Classes) /// <para>Afflicted with the urge to dance until you drop. Sustaining damage over time.</para> /// </summary> RhythmeticFever = 3080, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3081"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3081 = 3081, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3082"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3082 = 3082, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3083"><strong>Cure III Ready</strong></see> ↑ (WHM) /// <para>Able to execute Cure III.</para> /// </summary> CureIiiReady = 3083, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3085"><strong>Miracle of Nature</strong></see> ↓ (WHM) /// <para>Transfiguration magicks have changed your form. Unable to execute actions.</para> /// </summary> MiracleOfNature = 3085, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3086"><strong>Aquaveil</strong></see> ↑ (WHM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Aquaveil_3086 = 3086, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3087"><strong>Galvanize</strong></see> ↑ (SCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Galvanize_3087 = 3087, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3088"><strong>Catalyze</strong></see> ↑ (SCH) /// <para>Damage taken is reduced.</para> /// </summary> Catalyze_3088 = 3088, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3089"><strong>Biolysis</strong></see> ↓ (SCH) /// <para>Suffering damage over time.</para> /// </summary> Biolysis_3089 = 3089, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3090"><strong>Biolytic</strong></see> ↓ (SCH) /// <para>HP recovery via healing actions is reduced.</para> /// </summary> Biolytic = 3090, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3091"><strong>Mummification</strong></see> ↓ (SCH) /// <para>HP recovery via healing actions is reduced.</para> /// </summary> Mummification_3091 = 3091, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3092"><strong>Expedience</strong></see> ↑ (SCH) /// <para>Movement speed is increased.</para> /// </summary> Expedience_3092 = 3092, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3093"><strong>Desperate Measures</strong></see> ↑ (SCH) /// <para>Damage dealt is increased.</para> /// </summary> DesperateMeasures_3093 = 3093, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3094"><strong>Recitation</strong></see> ↑ (SCH) /// <para>Adloquium and Biolysis effects are enhanced.</para> /// </summary> Recitation_3094 = 3094, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3095"><strong>Summon Seraph</strong></see> ↑ (SCH) /// <para>Manifesting Seraph to assist in battle.</para> /// </summary> SummonSeraph = 3095, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3096"><strong>Seraph Flight</strong></see> ↑ (SCH) /// <para>Nullifying status afflictions that can be removed by Purify.</para> /// </summary> SeraphFlight = 3096, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3097"><strong>Seraphic Veil</strong></see> ↑ (SCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> SeraphicVeil_3097 = 3097, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3098"><strong>Consolation</strong></see> ↑ (SCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Consolation = 3098, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3099"><strong>Diurnal Benefic</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> DiurnalBenefic = 3099, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3100"><strong>Nocturnal Benefic</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NocturnalBenefic = 3100, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3101"><strong>Balance Drawn</strong></see> ↑ (AST) /// <para>The Balance card is drawn.</para> /// </summary> BalanceDrawn_3101 = 3101, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3102"><strong>Ewer Drawn</strong></see> ↑ (AST) /// <para>The Ewer card is drawn.</para> /// </summary> EwerDrawn_3102 = 3102, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3103"><strong>Spire Drawn</strong></see> ↑ (AST) /// <para>The Spire card is drawn.</para> /// </summary> SpireDrawn_3103 = 3103, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3104"><strong>Macrocosmos</strong></see> ↑ (AST) /// <para>Restores HP when effect duration expires or the astrologian who granted this effect executes Microcosmos. Healing potency is based on damage taken and compiled over the duration of the effect.</para> /// </summary> Macrocosmos_3104 = 3104, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3105"><strong>Celestial River</strong></see> ↑ (AST) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> CelestialRiver = 3105, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3106"><strong>Celestial Tide</strong></see> ↓ (AST) /// <para>Damage dealt and potency of all HP restoration actions are reduced.</para> /// </summary> CelestialTide = 3106, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3107"><strong>Eukrasia</strong></see> ↑ (SGE) /// <para>Certain actions are being augmented.</para> /// </summary> Eukrasia_3107 = 3107, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3108"><strong>Eukrasian Dosis III</strong></see> ↓ (SGE) /// <para>Sustaining damage over time.</para> /// </summary> EukrasianDosisIii_3108 = 3108, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3109"><strong>Eukrasian Diagnosis</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EukrasianDiagnosis_3109 = 3109, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3110"><strong>Haima</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Haima_3110 = 3110, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3111"><strong>Haimatinon</strong></see> ↑ (SGE) /// <para>Stacks are consumed to restore the Haima barrier each time it is absorbed. Grants a healing effect when duration expires, its potency based on the number of remaining stacks.</para> /// </summary> Haimatinon_3111 = 3111, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3113"><strong>Toxikon</strong></see> ↓ (SGE) /// <para>Damage taken is increased.</para> /// </summary> Toxikon = 3113, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3115"><strong>Addersting</strong></see> ↑ (SGE) /// <para>Able to execute Toxikon II.</para> /// </summary> Addersting = 3115, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3118"><strong>Mesotes</strong></see> ↑ (SGE) /// <para>An area of land has been purified, nullifying damage taken for party members within and afflicting enemies who enter with damage over time.</para> /// </summary> Mesotes = 3118, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3119"><strong>Mesotes</strong></see> ↑ (SGE) /// <para>Negating all damage from enemies not under the effect of Lype.</para> /// </summary> Mesotes_3119 = 3119, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3120"><strong>Lype</strong></see> ↓ (SGE) /// <para>Sustaining damage over time.</para> /// </summary> Lype = 3120, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3121"><strong>Featherbrained</strong></see> ↓ (All Classes) /// <para>The incessant chirping of birds scatters your thoughts, preventing you from taking action.</para> /// </summary> Featherbrained = 3121, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3122"><strong>Devouring Dark</strong></see> ↓ (All Classes) /// <para>Consumed by dark flames. Damage dealt and HP recovery are reduced.</para> /// </summary> DevouringDark = 3122, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3123"><strong>Blessing of Light</strong></see> ↑ (All Classes) /// <para>Bathed in the light of the Mothercrystal.</para> /// </summary> BlessingOfLight_3123 = 3123, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3124"><strong>Defiance</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> Defiance_3124 = 3124, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3125"><strong>Swift Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased.</para> /// </summary> SwiftSprint_3125 = 3125, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3129"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_3129 = 3129, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3130"><strong>Slashing Resistance Down</strong></see> ↓ (All Classes) /// <para>Slashing resistance is reduced.</para> /// </summary> SlashingResistanceDown_3130 = 3130, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3131"><strong>Piercing Resistance Down</strong></see> ↓ (All Classes) /// <para>Piercing resistance is reduced.</para> /// </summary> PiercingResistanceDown_3131 = 3131, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3132"><strong>Blunt Resistance Down</strong></see> ↓ (All Classes) /// <para>Blunt resistance is reduced.</para> /// </summary> BluntResistanceDown_3132 = 3132, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3133"><strong>Suppuration</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced and damage taken is increased.</para> /// </summary> Suppuration_3133 = 3133, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3134"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3134 = 3134, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3135"><strong>Light Resistance Down</strong></see> ↓ (All Classes) /// <para>Light resistance is reduced.</para> /// </summary> LightResistanceDown_3135 = 3135, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3136"><strong>Dark Resistance Down</strong></see> ↓ (All Classes) /// <para>Dark resistance is reduced.</para> /// </summary> DarkResistanceDown = 3136, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3137"><strong>Repertoire</strong></see> ↑ (BRD) /// <para>Able to execute Pitch Perfect.</para> /// </summary> Repertoire = 3137, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3138"><strong>Frontliner's March</strong></see> ↑ (BRD) /// <para>Weaponskill cast and recast times are reduced while increasing damage dealt by nearby party members.</para> /// </summary> FrontlinersMarch = 3138, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3139"><strong>Frontline March</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> FrontlineMarch = 3139, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3140"><strong>Frontliner's Forte</strong></see> ↑ (BRD) /// <para>Weaponskill cast and recast times are reduced while increasing damage dealt by nearby party members.</para> /// </summary> FrontlinersForte = 3140, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3141"><strong>Frontline Forte</strong></see> ↑ (BRD) /// <para>Damage dealt is increased.</para> /// </summary> FrontlineForte = 3141, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3142"><strong>Blast Arrow Ready</strong></see> ↑ (BRD) /// <para>Able to execute Blast Arrow.</para> /// </summary> BlastArrowReady_3142 = 3142, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3143"><strong>The Warden's Paean</strong></see> ↑ (BRD) /// <para>Nullifying status afflictions that can be removed by Purify.</para> /// </summary> TheWardensPaean_3143 = 3143, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3144"><strong>Final Fantasia</strong></see> ↑ (BRD) /// <para>Weaponskill cast and recast times are reduced. Increasing damage dealt by self and nearby party members while also increasing movement speed and gradually filling the limit gauge.</para> /// </summary> FinalFantasia = 3144, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3145"><strong>Heroes' Fantasia</strong></see> ↑ (BRD) /// <para>Damage dealt and movement speed is increased. Limit gauge is gradually filling.</para> /// </summary> HeroesFantasia = 3145, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3148"><strong>Heat</strong></see> ↑ (MCH) /// <para>Firearm is generating heat. Becomes Overheated when 5 stacks are accumulated.</para> /// </summary> Heat = 3148, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3149"><strong>Overheated</strong></see> ↑ (MCH) /// <para>Able to execute Heat Blast. Movement speed is also increased.</para> /// </summary> Overheated_3149 = 3149, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3150"><strong>Drill Primed</strong></see> ↑ (MCH) /// <para>Able to execute Drill.</para> /// </summary> DrillPrimed = 3150, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3151"><strong>Bioblaster Primed</strong></see> ↑ (MCH) /// <para>Able to execute Bioblaster.</para> /// </summary> BioblasterPrimed = 3151, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3152"><strong>Air Anchor Primed</strong></see> ↑ (MCH) /// <para>Able to execute Air Anchor.</para> /// </summary> AirAnchorPrimed = 3152, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3153"><strong>Chain Saw Primed</strong></see> ↑ (MCH) /// <para>Able to execute Chain Saw.</para> /// </summary> ChainSawPrimed = 3153, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3154"><strong>Chain Saw</strong></see> ↓ (MCH) /// <para>Damage taken is increased.</para> /// </summary> ChainSaw = 3154, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3155"><strong>Bishop Active</strong></see> ↑ (MCH) /// <para>Operating a bishop autoturret.</para> /// </summary> BishopActive = 3155, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3156"><strong>Aether Mortar</strong></see> ↑ (MCH) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> AetherMortar = 3156, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3157"><strong>Mortared</strong></see> ↓ (MCH) /// <para>Damage taken is increased.</para> /// </summary> Mortared = 3157, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3158"><strong>Analysis</strong></see> ↑ (MCH) /// <para>Gain an additional effect for the next Drill, Bioblaster, Air Anchor, or Chain Saw executed.</para> /// </summary> Analysis = 3158, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3159"><strong>Bladecatcher</strong></see> ↑ (DNC) /// <para>Sharpening your aim. Will grant the effect Flourishing Saber Dance when 2 stacks are accumulated.</para> /// </summary> Bladecatcher = 3159, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3160"><strong>Flourishing Saber Dance</strong></see> ↑ (DNC) /// <para>Able to execute Saber Dance.</para> /// </summary> FlourishingSaberDance = 3160, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3161"><strong>Starfall Dance</strong></see> ↑ (DNC) /// <para>Movement speed is increased.</para> /// </summary> StarfallDance = 3161, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3162"><strong>Honing Dance</strong></see> ↑ (DNC) /// <para>Dancing blades are dealing damage over time to nearby enemies and deflecting a portion of damage taken.</para> /// </summary> HoningDance = 3162, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3163"><strong>Acclaim</strong></see> ↑ (DNC) /// <para>Potency of Honing Ovation is increased.</para> /// </summary> Acclaim = 3163, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3164"><strong>Honing Ovation</strong></see> ↑ (DNC) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> HoningOvation = 3164, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3165"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_3165 = 3165, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3166"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_3166 = 3166, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3167"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_3167 = 3167, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3168"><strong>Six-sided Star</strong></see> ↑ (MNK) /// <para>Movement speed is increased.</para> /// </summary> SixsidedStar_3168 = 3168, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3169"><strong>Polyglot</strong></see> ↑ (BLM) /// <para>Able to execute Foul.</para> /// </summary> Polyglot = 3169, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3170"><strong>Fire Resonance</strong></see> ↑ (MNK) /// <para>Next weaponskill will deal increased damage.</para> /// </summary> FireResonance = 3170, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3171"><strong>Earth Resonance</strong></see> ↑ (MNK) /// <para>Damage potency and healing potency of Earth's Reply are increased based on damage taken and compiled over the duration of this effect.</para> /// </summary> EarthResonance = 3171, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3172"><strong>Pressure Point</strong></see> ↓ (MNK) /// <para>Weaponskill or Meteodrive damage taken from the monk who applied this effect will trigger an additional damage effect.</para> /// </summary> PressurePoint = 3172, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3173"><strong>Thunderclap</strong></see> ↑ (MNK) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Thunderclap_3173 = 3173, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3174"><strong>Meteodrive</strong></see> ↓ (MNK) /// <para>Unable to move or execute actions.</para> /// </summary> Meteodrive = 3174, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3176"><strong>Heavensent</strong></see> ↑ (DRG) /// <para>Able to execute Heavens' Thrust.</para> /// </summary> Heavensent = 3176, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3177"><strong>Life of the Dragon</strong></see> ↑ (DRG) /// <para>Damage dealt and damage taken are increased.</para> /// </summary> LifeOfTheDragon = 3177, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3178"><strong>Firstminds' Focus</strong></see> ↑ (DRG) /// <para>Able to execute Wyrmwind Thrust.</para> /// </summary> FirstmindsFocus = 3178, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3179"><strong>Horrid Roar</strong></see> ↓ (DRG) /// <para>Damage dealt to the dragoon who applied this effect is reduced.</para> /// </summary> HorridRoar = 3179, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3180"><strong>Sky High</strong></see> ↑ (DRG) /// <para>Leaping high into the sky, beyond the reach of enemy attacks.</para> /// </summary> SkyHigh = 3180, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3181"><strong>Sky Shatter</strong></see> ↑ (DRG) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> SkyShatter = 3181, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3183"><strong>Mug</strong></see> ↓ (NIN) /// <para>Damage taken is increased.</para> /// </summary> Mug = 3183, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3184"><strong>Goka Mekkyaku</strong></see> ↓ (NIN) /// <para>Suffering damage over time.</para> /// </summary> GokaMekkyaku = 3184, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3185"><strong>Thrill of Battle</strong></see> ↑ (WAR) /// <para>Maximum HP is increased.</para> /// </summary> ThrillOfBattle_3185 = 3185, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3186"><strong>Huton</strong></see> ↑ (NIN) /// <para>A magicked barrier is nullifying damage. Weaponskill cast and recast times are reduced while movement speed is increased.</para> /// </summary> Huton_3186 = 3186, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3187"><strong>Doton</strong></see> ↑ (NIN) /// <para>Foul magicks corrupt the ground, dealing earth damage to any who tread upon it.</para> /// </summary> Doton_3187 = 3187, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3188"><strong>Shield Oath</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> ShieldOath_3188 = 3188, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3189"><strong>Meisui</strong></see> ↑ (NIN) /// <para>Regenerating HP over time.</para> /// </summary> Meisui_3189 = 3189, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3191"><strong>Death Link</strong></see> ↓ (NIN) /// <para>Grants the ninja who applied this effect Unsealed Seiton Tenchu if defeated before effect expires.</para> /// </summary> DeathLink = 3191, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3192"><strong>Unsealed Seiton Tenchu</strong></see> ↑ (NIN) /// <para>Able to execute Seiton Tenchu.</para> /// </summary> UnsealedSeitonTenchu = 3192, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3193"><strong>Sealed Goka Mekkyaku</strong></see> ↓ (NIN) /// <para>Unable to execute Goka Mekkyaku.</para> /// </summary> SealedGokaMekkyaku = 3193, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3194"><strong>Sealed Hyosho Ranryu</strong></see> ↓ (NIN) /// <para>Unable to execute Hyosho Ranryu.</para> /// </summary> SealedHyoshoRanryu = 3194, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3195"><strong>Sealed Forked Raiju</strong></see> ↓ (NIN) /// <para>Unable to execute Forked Raiju.</para> /// </summary> SealedForkedRaiju = 3195, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3196"><strong>Sealed Huton</strong></see> ↓ (NIN) /// <para>Unable to execute Huton.</para> /// </summary> SealedHuton = 3196, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3197"><strong>Sealed Doton</strong></see> ↓ (NIN) /// <para>Unable to execute Doton.</para> /// </summary> SealedDoton = 3197, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3198"><strong>Sealed Meisui</strong></see> ↓ (NIN) /// <para>Unable to execute Meisui.</para> /// </summary> SealedMeisui = 3198, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3199"><strong>Ogi Namikiri</strong></see> ↑ (SAM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> OgiNamikiri = 3199, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3200"><strong>Kaeshi: Namikiri</strong></see> ↑ (SAM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> KaeshiNamikiri = 3200, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3201"><strong>Kaiten</strong></see> ↑ (SAM) /// <para>Yukikaze is upgraded to Hyosetsu, Gekko is upgraded to Mangetsu, and Kasha is upgraded to Oka.</para> /// </summary> Kaiten_3201 = 3201, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3202"><strong>Kuzushi</strong></see> ↓ (SAM) /// <para>Damage taken from the samurai who applied this effect is increased.</para> /// </summary> Kuzushi = 3202, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3203"><strong>Tendo Setsugekka Ready</strong></see> ↑ (SAM) /// <para>Able to execute Tendo Setsugekka.</para> /// </summary> TendoSetsugekkaReady = 3203, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3204"><strong>Immortal Sacrifice</strong></see> ↑ (RPR) /// <para>Potency of Plentiful Harvest is increased.</para> /// </summary> ImmortalSacrifice_3204 = 3204, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3205"><strong>Plentiful Harvest</strong></see> ↑ (RPR) /// <para>Limit gauge is gradually filling.</para> /// </summary> PlentifulHarvest = 3205, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3206"><strong>Death Warrant</strong></see> ↓ (RPR) /// <para>Damage taken from the reaper who applied this effect is compiled. Triggers additional damage when the effect expires.</para> /// </summary> DeathWarrant = 3206, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3207"><strong>Hell's Ingress</strong></see> ↑ (RPR) /// <para>Movement speed is increased.</para> /// </summary> HellsIngress = 3207, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3208"><strong>The Unforgotten</strong></see> ↓ (All Classes) /// <para>Personal experiences are being recorded.</para> /// </summary> TheUnforgotten = 3208, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3209"><strong>Elusive Jump</strong></see> ↑ (DRG) /// <para>Movement speed is increased.</para> /// </summary> ElusiveJump = 3209, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3210"><strong>Phalanx</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> Phalanx = 3210, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3211"><strong>Fleeting Raiju Ready</strong></see> ↑ (NIN) /// <para>Able to execute Fleeting Raiju.</para> /// </summary> FleetingRaijuReady_3211 = 3211, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3212"><strong>Astral Fire</strong></see> ↑ (BLM) /// <para>Able to execute Fire III.</para> /// </summary> AstralFire_3212 = 3212, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3213"><strong>Astral Fire II</strong></see> ↑ (BLM) /// <para>Able to execute Fire IV.</para> /// </summary> AstralFireIi_3213 = 3213, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3214"><strong>Umbral Ice</strong></see> ↑ (BLM) /// <para>Able to execute Blizzard III.</para> /// </summary> UmbralIce_3214 = 3214, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3215"><strong>Umbral Ice II</strong></see> ↑ (BLM) /// <para>Able to execute Blizzard IV.</para> /// </summary> UmbralIceIi_3215 = 3215, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3216"><strong>Astral Warmth</strong></see> ↓ (BLM) /// <para>Swelling with astral energies.</para> /// </summary> AstralWarmth = 3216, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3217"><strong>Umbral Freeze</strong></see> ↓ (BLM) /// <para>Swelling with umbral energies.</para> /// </summary> UmbralFreeze = 3217, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3218"><strong>Burns</strong></see> ↓ (BLM) /// <para>Suffering fire damage over time.</para> /// </summary> Burns_3218 = 3218, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3219"><strong>Deep Freeze</strong></see> ↓ (BLM) /// <para>Frozen solid and unable to execute actions.</para> /// </summary> DeepFreeze_3219 = 3219, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3220"><strong>Apocatastasis</strong></see> ↑ (BLM) /// <para>Damage taken is reduced.</para> /// </summary> Apocatastasis_3220 = 3220, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3221"><strong>Burst</strong></see> ↑ (BLM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Burst = 3221, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3222"><strong>Soul Resonance</strong></see> ↑ (BLM) /// <para>Fire is upgraded to Flare and Blizzard is upgraded to Freeze.</para> /// </summary> SoulResonance = 3222, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3223"><strong>Paradox</strong></see> ↑ (BLM) /// <para>Able to cast Paradox.</para> /// </summary> Paradox = 3223, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3224"><strong>Radiant Aegis</strong></see> ↑ (SMN) /// <para>Damage taken is reduced, and a magicked barrier is nullifying damage.</para> /// </summary> RadiantAegis_3224 = 3224, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3225"><strong>Slipstream</strong></see> ↑ (SMN) /// <para>A localized windstorm settles on the ground, dealing wind damage to any who step inside.</para> /// </summary> Slipstream_3225 = 3225, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3226"><strong>Slipstream</strong></see> ↑ (SMN) /// <para>Movement speed is increased.</para> /// </summary> Slipstream_3226 = 3226, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3227"><strong>Slipping</strong></see> ↓ (SMN) /// <para>Suffering wind damage over time.</para> /// </summary> Slipping = 3227, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3228"><strong>Dreadwyrm Trance</strong></see> ↑ (SMN) /// <para>Able to execute Astral Impulse and Deathflare.</para> /// </summary> DreadwyrmTrance_3228 = 3228, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3229"><strong>Firebird Trance</strong></see> ↑ (SMN) /// <para>Able to execute Fountain of Fire and Brand of Purgatory.</para> /// </summary> FirebirdTrance = 3229, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3230"><strong>Everlasting Flight</strong></see> ↑ (SMN) /// <para>Regenerating HP over time. Additional HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> /// </summary> EverlastingFlight_3230 = 3230, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3231"><strong>Scarlet Flame</strong></see> ↓ (SMN) /// <para>Sustaining damage over time.</para> /// </summary> ScarletFlame = 3231, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3232"><strong>Revelation</strong></see> ↓ (SMN) /// <para>Damage dealt is reduced.</para> /// </summary> Revelation = 3232, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3233"><strong>Vermilion Radiance</strong></see> ↑ (RDM) /// <para>Able to execute Verholy and Verflare.</para> /// </summary> VermilionRadiance = 3233, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3234"><strong>Enchanted Riposte</strong></see> ↑ (RDM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EnchantedRiposte = 3234, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3235"><strong>Enchanted Zwerchhau</strong></see> ↑ (RDM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EnchantedZwerchhau = 3235, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3236"><strong>Enchanted Redoublement</strong></see> ↑ (RDM) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> EnchantedRedoublement = 3236, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3237"><strong>Enchanted Riposte</strong></see> ↓ (RDM) /// <para>Suffering damage over time.</para> /// </summary> EnchantedRiposte_3237 = 3237, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3238"><strong>Enchanted Zwerchhau</strong></see> ↓ (RDM) /// <para>Suffering damage over time.</para> /// </summary> EnchantedZwerchhau_3238 = 3238, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3239"><strong>Enchanted Redoublement</strong></see> ↓ (RDM) /// <para>Suffering damage over time.</para> /// </summary> EnchantedRedoublement_3239 = 3239, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3240"><strong>Magick Barrier</strong></see> ↑ (RDM) /// <para>Damage taken is reduced while HP recovered via healing actions is increased.</para> /// </summary> MagickBarrier_3240 = 3240, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3241"><strong>Frazzle</strong></see> ↓ (RDM) /// <para>Damage taken is increased while HP recovered via healing actions is reduced.</para> /// </summary> Frazzle = 3241, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3242"><strong>Monomachy</strong></see> ↓ (RDM) /// <para>Damage taken from the red mage who applied this effect is increased while damage dealt to said red mage is reduced.</para> /// </summary> Monomachy_3242 = 3242, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3243"><strong>Displacement</strong></see> ↑ (RDM) /// <para>Damage and cure potency of next spell cast is increased.</para> /// </summary> Displacement_3243 = 3243, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3245"><strong>White Shift</strong></see> ↑ (RDM) /// <para>Augments certain actions with beneficial effects.</para> /// </summary> WhiteShift = 3245, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3246"><strong>Black Shift</strong></see> ↑ (RDM) /// <para>Augments certain actions with detrimental effects.</para> /// </summary> BlackShift = 3246, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3248"><strong>Resilience</strong></see> ↑ (All Classes) /// <para>Nullifying status afflictions that can be removed by Purify, as well as knockback and draw-in effects.</para> /// </summary> Resilience = 3248, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3249"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_3249 = 3249, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3250"><strong>Blade of Faith Ready</strong></see> ↑ (PLD) /// <para>Able to execute Blade of Faith.</para> /// </summary> BladeOfFaithReady = 3250, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3251 = 3251, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3254"><strong>Trick Attack</strong></see> ↓ (ROG NIN) /// <para>Damage taken from the ninja who applied this effect is increased.</para> /// </summary> TrickAttack_3254 = 3254, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3255"><strong>Undead Rebirth</strong></see> ↑ (All Classes) /// <para>Most attacks cannot reduce your HP to less than 1.</para> /// </summary> UndeadRebirth = 3255, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3256"><strong>Orogeny</strong></see> ↓ (WAR) /// <para>Damage dealt is reduced.</para> /// </summary> Orogeny = 3256, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3257"><strong>Berserk</strong></see> ↑ (All Classes) /// <para>Damage dealt by certain weaponskills is increased.</para> /// </summary> Berserk_3257 = 3257, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3258"><strong>Lance Charge</strong></see> ↑ (All Classes) /// <para>Damage dealt by certain weaponskills is increased.</para> /// </summary> LanceCharge_3258 = 3258, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3259"><strong>Life Surge</strong></see> ↑ (All Classes) /// <para>Certain weaponskills are guaranteed to deal critical damage with a portion of the resulting damage being absorbed as HP.</para> /// </summary> LifeSurge_3259 = 3259, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3260"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_3260 = 3260, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3261"><strong>Concentrated Poison</strong></see> ↓ (All Classes) /// <para>Powerful poison is slowly draining HP, while HP recovery via healing magic is reduced.</para> /// </summary> ConcentratedPoison_3261 = 3261, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3262"><strong>Liftoff</strong></see> ↓ (All Classes) /// <para>Cast into the air.</para> /// </summary> Liftoff = 3262, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3263"><strong>Wyrmclaw</strong></see> ↓ (All Classes) /// <para>Shredded by draconic talons. KO will occur when countdown reaches 0.</para> /// </summary> Wyrmclaw_3263 = 3263, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3264"><strong>Wyrmfang</strong></see> ↓ (All Classes) /// <para>Torn by draconic teeth. KO will occur when countdown reaches 0.</para> /// </summary> Wyrmfang_3264 = 3264, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3265"><strong>Blood of the Dragon</strong></see> ↑ (All Classes) /// <para>Drawing upon the unique power of the Azure Dragoon.</para> /// </summary> BloodOfTheDragon_3265 = 3265, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3266"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3266 = 3266, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3267"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3267 = 3267, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3268"><strong>First Brand</strong></see> ↓ (All Classes) /// <para>Branded with a cryptic spark that will grow into the First Flame when this effect expires.</para> /// </summary> FirstBrand = 3268, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3269"><strong>Second Brand</strong></see> ↓ (All Classes) /// <para>Branded with a cryptic spark that will grow into the Second Flame when this effect expires.</para> /// </summary> SecondBrand = 3269, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3270"><strong>Third Brand</strong></see> ↓ (All Classes) /// <para>Branded with a cryptic spark that will grow into the Third Flame when this effect expires.</para> /// </summary> ThirdBrand = 3270, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3271"><strong>Fourth Brand</strong></see> ↓ (All Classes) /// <para>Branded with a cryptic spark that will grow into the Fourth Flame when this effect expires.</para> /// </summary> FourthBrand = 3271, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3272"><strong>First Flame</strong></see> ↓ (All Classes) /// <para>Imbued with a cryptic flame that will erupt when this effect expires. Curse can be removed by touching the appropriate infern brand.</para> /// </summary> FirstFlame = 3272, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3273"><strong>Second Flame</strong></see> ↓ (All Classes) /// <para>Imbued with a cryptic flame that will erupt when this effect expires. Curse can be removed by touching the appropriate infern brand.</para> /// </summary> SecondFlame = 3273, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3274"><strong>Third Flame</strong></see> ↓ (All Classes) /// <para>Imbued with a cryptic flame that will erupt when this effect expires. Curse can be removed by touching the appropriate infern brand.</para> /// </summary> ThirdFlame = 3274, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3275"><strong>Fourth Flame</strong></see> ↓ (All Classes) /// <para>Imbued with a cryptic flame that will erupt when this effect expires. Curse can be removed by touching the appropriate infern brand.</para> /// </summary> FourthFlame = 3275, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3276"><strong>Call of the Portal</strong></see> ↓ (All Classes) /// <para>Cursed to take heavy damage when this effect expires. Passing through a portal will remove the curse.</para> /// </summary> CallOfThePortal = 3276, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3277"><strong>Rite of Passage</strong></see> ↓ (All Classes) /// <para>Cursed to travel in specified direction. Stun followed by forced teleportation will occur when this effect expires.</para> /// </summary> RiteOfPassage = 3277, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3278"><strong>Forbidden Passage</strong></see> ↓ (All Classes) /// <para>Cannot travel via portal.</para> /// </summary> ForbiddenPassage = 3278, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3279"><strong>Forbidden Passage</strong></see> ↓ (All Classes) /// <para>Cannot travel via portal.</para> /// </summary> ForbiddenPassage_3279 = 3279, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3280"><strong>Blessing of Blight</strong></see> ↑ (All Classes) /// <para>Archfiendish power is enhancing voidsent's capabilities and regenerative capacity.</para> /// </summary> BlessingOfBlight = 3280, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3281"><strong>Warding Scale</strong></see> ↑ (All Classes) /// <para>Under Vrtra's protective auspices, reducing damage taken and restoring HP over time.</para> /// </summary> WardingScale = 3281, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3282"><strong>Brain Rot</strong></see> ↓ (All Classes) /// <para>Afflicted with an accursed blight. A stack of 3 will result in zombification.</para> /// </summary> BrainRot = 3282, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3283"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Fetters_3283 = 3283, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3284"><strong>Tangled</strong></see> ↓ (All Classes) /// <para>Ensnared by Barbariccia's hair, reducing movement speed and resulting in damage over time. Attempts to pull away from the tangle will result in being dragged back in, inflicting damage over time.</para> /// </summary> Tangled = 3284, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3285"><strong>Awareness</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Awareness_3285 = 3285, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3286"><strong>Frozen</strong></see> ↓ (All Classes) /// <para>Ice has begun forming on gear. A stack of 4 will result in Deep Freeze.</para> /// </summary> Frozen_3286 = 3286, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3287"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_3287 = 3287, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3288"><strong>Sustained Damage</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> SustainedDamage_3288 = 3288, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3289"><strong>Fusefield</strong></see> ↑ (All Classes) /// <para>Deploying an infernal field.</para> /// </summary> Fusefield = 3289, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3290"><strong>Echo of the Fallen</strong></see> ↓ (All Classes) /// <para>The Curse of the Fallen resonates within, causing an explosion when this effect expires.</para> /// </summary> EchoOfTheFallen = 3290, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3291"><strong>Scream of the Fallen</strong></see> ↓ (All Classes) /// <para>The Curse of the Fallen resonates within, causing an expansive explosion when this effect expires.</para> /// </summary> ScreamOfTheFallen = 3291, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3292"><strong>Lingering Echoes</strong></see> ↓ (All Classes) /// <para>The Curse of the Fallen resonates within, causing a chain of explosions at current position when this effect expires.</para> /// </summary> LingeringEchoes = 3292, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3293"><strong>Thunderous Echo</strong></see> ↓ (All Classes) /// <para>The Curse of the Fallen resonates within, causing an intense explosion when this effect expires.</para> /// </summary> ThunderousEcho = 3293, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3294"><strong>Chains of Resentment</strong></see> ↓ (All Classes) /// <para>Bound by hateful chains, causing damage over time.</para> /// </summary> ChainsOfResentment = 3294, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3295"><strong>Gilded Fate</strong></see> ↓ (All Classes) /// <para>Cursed to perish when this effect expires. Curse can be cleansed by silver flames.</para> /// </summary> GildedFate = 3295, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3296"><strong>Silvered Fate</strong></see> ↓ (All Classes) /// <para>Cursed to perish when this effect expires. Curse can be cleansed by golden flames.</para> /// </summary> SilveredFate = 3296, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3297"><strong>Bracing Suds</strong></see> ↑ (All Classes) /// <para>Awash in wind-aspected soap suds.</para> /// </summary> BracingSuds = 3297, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3298"><strong>Chilling Suds</strong></see> ↑ (All Classes) /// <para>Awash in ice-aspected soap suds.</para> /// </summary> ChillingSuds = 3298, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3299"><strong>Fizzling Suds</strong></see> ↑ (All Classes) /// <para>Awash in lightning-aspected soap suds.</para> /// </summary> FizzlingSuds = 3299, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3300"><strong>Medica II of the Seventh Dawn</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> MedicaIiOfTheSeventhDawn = 3300, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3301"><strong>Excellence</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks.</para> /// </summary> Excellence = 3301, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3302"><strong>Warding Scale</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks.</para> /// </summary> WardingScale_3302 = 3302, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3303"><strong>Supernal Guard</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> SupernalGuard = 3303, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3304"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_3304 = 3304, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3305"><strong>Bracing Suds</strong></see> ↑ (All Classes) /// <para>Awash in wind-aspected soap suds.</para> /// </summary> BracingSuds_3305 = 3305, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3306"><strong>Chilling Suds</strong></see> ↑ (All Classes) /// <para>Awash in ice-aspected soap suds.</para> /// </summary> ChillingSuds_3306 = 3306, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3307"><strong>Fizzling Suds</strong></see> ↑ (All Classes) /// <para>Awash in lightning-aspected soap suds.</para> /// </summary> FizzlingSuds_3307 = 3307, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3308"><strong>Inviolate Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by wind magicks that will be unleashed in the surrounding area when this effect expires.</para> /// </summary> InviolateWinds = 3308, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3309"><strong>Holy Bonds</strong></see> ↓ (All Classes) /// <para>Ensnared by light magicks that will be unleashed in the surrounding area when this effect expires.</para> /// </summary> HolyBonds = 3309, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3310"><strong>Purgatory Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> PurgatoryWinds = 3310, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3311"><strong>Holy Purgation</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> HolyPurgation = 3311, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3312"><strong>Overload</strong></see> ↓ (All Classes) /// <para>Unleashing power beyond physical limitations and taking damage over time.</para> /// </summary> Overload = 3312, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3313"><strong>Aetherial Exchange</strong></see> ↑ (All Classes) /// <para>Warping the nature of the next action to be executed.</para> /// </summary> AetherialExchange = 3313, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3314"><strong>Glossomorph</strong></see> ↓ (All Classes) /// <para>Host to a glossal parasite, which will take control of body once this effect expires.</para> /// </summary> Glossomorph = 3314, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3315"><strong>Chelomorph</strong></see> ↓ (All Classes) /// <para>Host to a chelic parasite, which will take control of body once this effect expires.</para> /// </summary> Chelomorph = 3315, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3316"><strong>Out of Control</strong></see> ↓ (All Classes) /// <para>No longer in control of actions due to parasitic influence.</para> /// </summary> OutOfControl_3316 = 3316, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3317"><strong>Consumption</strong></see> ↓ (All Classes) /// <para>Being devoured by pathogens. Will become a glossomorph should this process continue.</para> /// </summary> Consumption = 3317, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3318"><strong>Bodily Manipulation</strong></see> ↓ (All Classes) /// <para>Host movement subject to complete control by resident parasite.</para> /// </summary> BodilyManipulation = 3318, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3319"><strong>Glossal Resistance Down</strong></see> ↓ (All Classes) /// <para>Resistance to attacks by glossal parasites is reduced.</para> /// </summary> GlossalResistanceDown = 3319, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3320"><strong>Chelic Resistance Down</strong></see> ↓ (All Classes) /// <para>Resistance to attacks by chelic parasites is reduced.</para> /// </summary> ChelicResistanceDown = 3320, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3321"><strong>Aetheronecrosis</strong></see> ↓ (All Classes) /// <para>Infected with aetherially activated cells, which will burst explosively when this effect expires.</para> /// </summary> Aetheronecrosis = 3321, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3322"><strong>Glossomorph</strong></see> ↓ (All Classes) /// <para>Host to a glossal parasite, which will take control of body once this effect expires.</para> /// </summary> Glossomorph_3322 = 3322, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3323"><strong>Dark Resistance Down II</strong></see> ↓ (All Classes) /// <para>Dark resistance is significantly reduced.</para> /// </summary> DarkResistanceDownIi = 3323, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3324"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_3324 = 3324, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3325"><strong>Conceptual Mastery</strong></see> ↑ (All Classes) /// <para>Primed with powerful magicks.</para> /// </summary> ConceptualMastery = 3325, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3326"><strong>Blood of the Gorgon</strong></see> ↓ (All Classes) /// <para>Cursed to unleash poison in the surrounding area when this effect expires.</para> /// </summary> BloodOfTheGorgon = 3326, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3327"><strong>Breath of the Gorgon</strong></see> ↓ (All Classes) /// <para>Cursed to unleash poison in the surrounding area when this effect expires.</para> /// </summary> BreathOfTheGorgon = 3327, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3328"><strong>Spring Tide</strong></see> ↓ (All Classes) /// <para>A greater cursed tide will be upon you when this effect expires.</para> /// </summary> SpringTide = 3328, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3329"><strong>Neap Tide</strong></see> ↓ (All Classes) /// <para>A lesser cursed tide will be upon you when this effect expires.</para> /// </summary> NeapTide = 3329, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3330"><strong>Imperfection: Alpha</strong></see> ↓ (All Classes) /// <para>Imbued with a concept incompatible with this form, which will cause an explosive reaction and influence self and nearby concepts when this effect expires.</para> /// </summary> ImperfectionAlpha = 3330, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3331"><strong>Imperfection: Beta</strong></see> ↓ (All Classes) /// <para>Imbued with a concept incompatible with this form, which will cause an explosive reaction and influence self and nearby concepts when this effect expires.</para> /// </summary> ImperfectionBeta = 3331, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3332"><strong>Imperfection: Gamma</strong></see> ↓ (All Classes) /// <para>Imbued with a concept incompatible with this form, which will cause an explosive reaction and influence self and nearby concepts when this effect expires.</para> /// </summary> ImperfectionGamma = 3332, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3333"><strong>Perfection: Alpha</strong></see> ↑ (All Classes) /// <para>The perfect vessel for a perfect concept. Drawing near to other perfect concepts will result in mutual influence.</para> /// </summary> PerfectionAlpha = 3333, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3334"><strong>Perfection: Beta</strong></see> ↑ (All Classes) /// <para>The perfect vessel for a perfect concept. Drawing near to other perfect concepts will result in mutual influence.</para> /// </summary> PerfectionBeta = 3334, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3335"><strong>Perfection: Gamma</strong></see> ↑ (All Classes) /// <para>The perfect vessel for a perfect concept. Drawing near to other perfect concepts will result in mutual influence.</para> /// </summary> PerfectionGamma = 3335, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3336"><strong>Inconceivable</strong></see> ↓ (All Classes) /// <para>Unable to draw upon perfect concepts until this effect expires.</para> /// </summary> Inconceivable = 3336, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3337"><strong>Winged Conception</strong></see> ↑ (All Classes) /// <para>Realizing an airborne concept. Resistance to certain wind magicks is increased until this effect expires.</para> /// </summary> WingedConception = 3337, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3338"><strong>Aquatic Conception</strong></see> ↑ (All Classes) /// <para>Realizing an aquatic concept. Resistance to certain water magicks is increased until this effect expires.</para> /// </summary> AquaticConception = 3338, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3339"><strong>Shocking Conception</strong></see> ↑ (All Classes) /// <para>Realizing a levin-wielding concept. Resistance to certain lightning magicks is increased until this effect expires.</para> /// </summary> ShockingConception = 3339, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3340"><strong>Fiery Conception</strong></see> ↓ (All Classes) /// <para>Realizing a burning concept, causing damage over time until this effect expires.</para> /// </summary> FieryConception = 3340, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3341"><strong>Toxic Conception</strong></see> ↓ (All Classes) /// <para>Realizing a poisonous concept, causing damage over time until this effect expires.</para> /// </summary> ToxicConception = 3341, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3342"><strong>Growing Conception</strong></see> ↓ (All Classes) /// <para>Realizing a plantlike concept, causing damage over time until this effect expires.</para> /// </summary> GrowingConception = 3342, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3343"><strong>Immortal Spark</strong></see> ↑ (All Classes) /// <para>Conceiving of the Phoenix in part. Together, four such sparks will give birth to a legendary bird.</para> /// </summary> ImmortalSpark = 3343, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3344"><strong>Immortal Conception</strong></see> ↑ (All Classes) /// <para>Realizing a Phoenix concept.</para> /// </summary> ImmortalConception = 3344, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3345"><strong>Solosplice</strong></see> ↓ (All Classes) /// <para>Self-concept is being warped beyond recognition, resulting in an adverse reaction determined by nearby influences when this effect expires.</para> /// </summary> Solosplice = 3345, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3346"><strong>Multisplice</strong></see> ↓ (All Classes) /// <para>Self-concept is being warped beyond recognition, resulting in an adverse reaction determined by nearby influences when this effect expires.</para> /// </summary> Multisplice = 3346, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3347"><strong>Supersplice</strong></see> ↓ (All Classes) /// <para>Self-concept is being warped beyond recognition, resulting in an adverse reaction determined by nearby influences when this effect expires.</para> /// </summary> Supersplice = 3347, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3348"><strong>Targeting</strong></see> ↓ (All Classes) /// <para>Target of incoming attack. Will be bound when this effect expires.</para> /// </summary> Targeting = 3348, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3349"><strong>Inverse Magicks</strong></see> ↓ (All Classes) /// <para>The order of forcible magicks to be cast is inverted.</para> /// </summary> InverseMagicks = 3349, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3350"><strong>Soul Stranded</strong></see> ↓ (All Classes) /// <para>Physical and spiritual forms have been separated.</para> /// </summary> SoulStranded = 3350, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3351"><strong>Eye of the Gorgon</strong></see> ↓ (All Classes) /// <para>Cursed to unleash a petrifying attack in the direction of gaze when this effect expires.</para> /// </summary> EyeOfTheGorgon = 3351, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3352"><strong>Crown of the Gorgon</strong></see> ↓ (All Classes) /// <para>Cursed to unleash a petrifying light upon those nearby when this effect expires.</para> /// </summary> CrownOfTheGorgon = 3352, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/3358"><strong>Enmity Up</strong></see> ↑ (All Classes) -/// <para>Enmity generation is increased.</para> +/// <para></para> /// </summary> -EnmityUp = 3358, +UnnamedStatus_3353 = 3353, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3354 = 3354, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3355 = 3355, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3356 = 3356, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3357 = 3357, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/3358"><strong>Enmity Up</strong></see> ↑ (All Classes) +/// <para>Enmity generation is increased.</para> +/// </summary> +EnmityUp = 3358, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3359"><strong>Sustained Damage</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> SustainedDamage_3359 = 3359, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3360"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_3360 = 3360, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3361"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_3361 = 3361, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3362"><strong>Out of Control</strong></see> ↓ (All Classes) /// <para>No longer in control of actions due to parasitic influence.</para> /// </summary> OutOfControl_3362 = 3362, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3363"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_3363 = 3363, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3364"><strong>Doom</strong></see> ↓ (All Classes) /// <para>Certain death when counter reaches zero.</para> /// </summary> Doom_3364 = 3364, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3365"><strong>Holosakos</strong></see> ↑ (SGE) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Holosakos = 3365, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3366"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_3366 = 3366, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3367"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_3367 = 3367, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3368"><strong>Powerful</strong></see> ↑ (All Classes) /// <para>Damage dealt is significantly increased, while damage taken is significantly decreased.</para> /// </summary> Powerful = 3368, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3369 = 3369, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3370 = 3370, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3371 = 3371, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3372"><strong>Earth Resistance Down II</strong></see> ↓ (All Classes) /// <para>Earth resistance is significantly reduced.</para> /// </summary> EarthResistanceDownIi_3372 = 3372, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3373 = 3373, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3374 = 3374, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3375 = 3375, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3376 = 3376, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3377 = 3377, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3378 = 3378, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3379 = 3379, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3380"><strong>Resurrection Restricted</strong></see> ↓ (All Classes) /// <para>Resurrection by certain means is impossible.</para> /// </summary> ResurrectionRestricted_3380 = 3380, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3381"><strong>Astral Fire III</strong></see> ↑ (BLM) /// <para>Able to execute High Fire II.</para> /// </summary> AstralFireIii_3381 = 3381, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3382"><strong>Umbral Ice III</strong></see> ↑ (BLM) /// <para>Able to execute High Blizzard II.</para> /// </summary> UmbralIceIii_3382 = 3382, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3383"><strong>Arcane Triumph</strong></see> ↑ (All Classes) /// <para>Fated by the Spinner to emerge victorious when this effect expires.</para> /// </summary> ArcaneTriumph = 3383, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3384"><strong>Arcane Triumph</strong></see> ↑ (All Classes) /// <para>Fated by the Spinner to emerge victorious when this effect expires.</para> /// </summary> ArcaneTriumph_3384 = 3384, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3385"><strong>Arcane Attraction</strong></see> ↓ (All Classes) /// <para>Fated by the Spinner to be Seduced if gazing at Nymeia when this effect expires.</para> /// </summary> ArcaneAttraction = 3385, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3386"><strong>Attraction Reversed</strong></see> ↓ (All Classes) /// <para>Fated by the Spinner to be Seduced if looking away from Nymeia when this effect expires.</para> /// </summary> AttractionReversed = 3386, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3387"><strong>Arcane Fever</strong></see> ↓ (All Classes) /// <para>Fated by the Spinner to become Pyretic when this effect expires.</para> /// </summary> ArcaneFever = 3387, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3388"><strong>Fever Reversed</strong></see> ↓ (All Classes) /// <para>Fated by the Spinner to begin Freezing Up when this effect expires, resulting in Deep Freeze if not continuously in motion.</para> /// </summary> FeverReversed = 3388, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3389"><strong>Sibling Revelry</strong></see> ↑ (All Classes) /// <para>Combat capabilities increase when Althyk and Nymeia are nearby one another.</para> /// </summary> SiblingRevelry = 3389, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3390"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_3390 = 3390, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3391"><strong>Purgatory Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> PurgatoryWinds_3391 = 3391, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3392"><strong>Purgatory Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> PurgatoryWinds_3392 = 3392, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3393"><strong>Purgatory Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> PurgatoryWinds_3393 = 3393, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3394"><strong>Holy Purgation</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> HolyPurgation_3394 = 3394, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3395"><strong>Holy Purgation</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> HolyPurgation_3395 = 3395, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3396"><strong>Holy Purgation</strong></see> ↓ (All Classes) /// <para>Ensnared by punishing wind magicks that will be unleashed in the surrounding area when this effect expires, and leave a timed sigil in their wake.</para> /// </summary> HolyPurgation_3396 = 3396, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3397"><strong>Inviolate Winds</strong></see> ↓ (All Classes) /// <para>Ensnared by wind magicks that will be unleashed in the surrounding area when this effect expires.</para> /// </summary> InviolateWinds_3397 = 3397, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3398"><strong>Holy Bonds</strong></see> ↓ (All Classes) /// <para>Ensnared by light magicks that will be unleashed in the surrounding area when this effect expires.</para> /// </summary> HolyBonds_3398 = 3398, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3399"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_3399 = 3399, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3400"><strong>Glossomorph</strong></see> ↓ (All Classes) /// <para>Host to a glossal parasite, which will take control of body once this effect expires.</para> /// </summary> Glossomorph_3400 = 3400, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3401"><strong>HP Penalty</strong></see> ↓ (All Classes) /// <para>Maximum HP is reduced.</para> /// </summary> HpPenalty_3401 = 3401, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3402"><strong>The Arrow</strong></see> ↑ (All Classes) /// <para>Weaponskill and spell cast and recast time are reduced. Movement speed is also increased.</para> /// </summary> TheArrow_3402 = 3402, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3403"><strong>Bole Drawn</strong></see> ↑ (AST) /// <para>The Bole card is drawn.</para> /// </summary> BoleDrawn_3403 = 3403, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3404"><strong>Arrow Drawn</strong></see> ↑ (AST) /// <para>The Arrow card is drawn.</para> /// </summary> ArrowDrawn_3404 = 3404, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3405"><strong>Damage Barrier</strong></see> ↑ (All Classes) /// <para>A barrier is nullifying damage.</para> /// </summary> DamageBarrier = 3405, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3406"><strong>Everburn</strong></see> ↑ (All Classes) /// <para>Calling upon the power of a Phoenix concept. Damage dealt is increased.</para> /// </summary> Everburn = 3406, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3407"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3407 = 3407, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3408"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_3408 = 3408, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3409 = 3409, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3410"><strong>Soul of Fire</strong></see> ↓ (All Classes) /// <para>Body's aetherial balance is dangerously tilted toward fire. Damage from fire-aspected attacks is greatly increased.</para> /// </summary> SoulOfFire_3410 = 3410, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3411"><strong>Soul of Ice</strong></see> ↓ (All Classes) /// <para>Body's aetherial balance is dangerously tilted toward ice. Damage from ice-aspected attacks is greatly increased.</para> /// </summary> SoulOfIce_3411 = 3411, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3412"><strong>Natural Alignment</strong></see> ↓ (All Classes) /// <para>Graven with a sigil and sustaining damage over time. Taking damage from certain actions caused by Twist Nature will result in a destructive forcible failure.</para> /// </summary> NaturalAlignment = 3412, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3413"><strong>Bravery of the Seventh Dawn</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> BraveryOfTheSeventhDawn = 3413, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3414"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_3414 = 3414, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3415"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_3415 = 3415, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3416"><strong>Positive Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a positive magnetic charge.</para> /// </summary> PositiveCharge_3416 = 3416, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3417"><strong>Negative Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a negative magnetic charge.</para> /// </summary> NegativeCharge_3417 = 3417, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3418"><strong>Positive Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a positive magnetic charge.</para> /// </summary> PositiveCharge_3418 = 3418, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3419"><strong>Negative Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a negative magnetic charge.</para> /// </summary> NegativeCharge_3419 = 3419, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3420"><strong>Barofield</strong></see> ↑ (All Classes) /// <para>Damage taken when Proto-Kaliya is nearby.</para> /// </summary> Barofield_3420 = 3420, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3421"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_3421 = 3421, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3422"><strong>Stoneskin</strong></see> ↑ (All Classes) /// <para>Lithified flesh is absorbing damage.</para> /// </summary> Stoneskin_3422 = 3422, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3423"><strong>The Gentleman Fantastick</strong></see> ↑ (All Classes) /// <para>Enhancing defense and restoring HP as only a Manderville can.</para> /// </summary> TheGentlemanFantastick = 3423, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3424"><strong>Guided Missile Kyrios Incoming</strong></see> ↓ (All Classes) /// <para>Target of a missile kyrios launch. Designated attack will occur when this effect expires.</para> /// </summary> GuidedMissileKyriosIncoming = 3424, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3425"><strong>Sniper Cannon Fodder</strong></see> ↓ (All Classes) /// <para>Designated target of a sniper cannon, which will fire when this effect expires.</para> /// </summary> SniperCannonFodder = 3425, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3426"><strong>High-powered Sniper Cannon Fodder</strong></see> ↓ (All Classes) /// <para>Designated target of a high-powered sniper cannon, which will fire when this effect expires.</para> /// </summary> HighpoweredSniperCannonFodder = 3426, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3427"><strong>Mid Glitch</strong></see> ↓ (All Classes) /// <para>An error has occurred. Being too close or too far from other players will result in increased damage taken.</para> /// </summary> MidGlitch = 3427, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3428"><strong>Remote Glitch</strong></see> ↓ (All Classes) /// <para>An error has occurred. Being too close to other players will result in increased damage taken.</para> /// </summary> RemoteGlitch = 3428, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3429"><strong>Critical Performance Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Coming in contact with allies will cause data corruption to spread. Corruption will cause explosive damage when the effect ends.</para> /// </summary> CriticalPerformanceBug = 3429, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3430"><strong>Synchronization Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to critical synchronization bugs.</para> /// </summary> SynchronizationDebugger_3430 = 3430, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3431"><strong>Overflow Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to critical overflow bugs.</para> /// </summary> OverflowDebugger_3431 = 3431, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3432"><strong>Underflow Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to critical underflow bugs.</para> /// </summary> UnderflowDebugger_3432 = 3432, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3433"><strong>Performance Debugger</strong></see> ↓ (All Classes) /// <para>Invulnerable to critical performance bugs.</para> /// </summary> PerformanceDebugger = 3433, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3434"><strong>Latent Synchronization Bug</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause explosive damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> LatentSynchronizationBug = 3434, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3435"><strong>Latent Performance Defect</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause explosive damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> LatentPerformanceDefect = 3435, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3436"><strong>Synchronization Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of faulty programming are arising. Issues will manifest as a Critical Synchronization Bug when this effect expires.</para> /// </summary> SynchronizationCodeSmell = 3436, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3437"><strong>Overflow Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of faulty programming are arising. Issues will manifest as a Critical Overflow Bug when this effect expires.</para> /// </summary> OverflowCodeSmell = 3437, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3438"><strong>Underflow Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of faulty programming are arising. Issues will manifest as a Critical Underflow Bug when this effect expires.</para> /// </summary> UnderflowCodeSmell = 3438, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3439"><strong>Performance Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of faulty programming are arising. Issues will manifest as a Critical Performance Bug when this effect expires.</para> /// </summary> PerformanceCodeSmell = 3439, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3440"><strong>Local Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of corrupted programming are arising. Issues will manifest as Local Regression when this effect expires.</para> /// </summary> LocalCodeSmell = 3440, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3441"><strong>Remote Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of corrupted programming are arising. Issues will manifest as Remote Regression when this effect expires.</para> /// </summary> RemoteCodeSmell = 3441, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3442"><strong>Hello, Near World</strong></see> ↓ (All Classes) /// <para>Subject to Omega's influence. Designated attack will occur when this effect expires.</para> /// </summary> HelloNearWorld = 3442, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3443"><strong>Hello, Distant World</strong></see> ↓ (All Classes) /// <para>Subject to Omega's influence. Designated attack will occur when this effect expires.</para> /// </summary> HelloDistantWorld = 3443, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3444"><strong>Quickening Dynamis </strong></see> ↑ (All Classes) /// <para>Dynamis is flickering to life, inspired by Omega's fledgling passion.</para> /// </summary> QuickeningDynamis = 3444, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3445 = 3445, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3446"><strong>Brilliant Dynamis</strong></see> ↑ (All Classes) /// <para>Burning with dynamis inspired by Omega's passion and exceeding own limits.</para> /// </summary> BrilliantDynamis = 3446, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3447"><strong>Code: ****mi*</strong></see> ↑ (All Classes) /// <para>Transformed by a variable previously discarded as unimportant. Burning with an incomprehensible energy, and exceeding own limits.</para> /// </summary> CodeMi = 3447, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3448"><strong>Spark of Dynamis</strong></see> ↑ (All Classes) /// <para>Burning with dynamis inspired by Omega's passion.</para> /// </summary> SparkOfDynamis = 3448, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3449"><strong>Omega</strong></see> ↑ (All Classes) /// <para>Inscrutable.</para> /// </summary> Omega_3449 = 3449, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3450"><strong>Infinite Limit</strong></see> ↑ (All Classes) /// <para>Actions transcending standard limits.</para> /// </summary> InfiniteLimit_3450 = 3450, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3451"><strong>Fourth in Line</strong></see> ↓ (All Classes) /// <para>Marked as target #4.</para> /// </summary> FourthInLine = 3451, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3452"><strong>Oversampled Wave Cannon Loading</strong></see> ↓ (All Classes) /// <para>Preparing oversampled wave cannon, which will fire in the direction of designated player when this effect expires.</para> /// </summary> OversampledWaveCannonLoading = 3452, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3453"><strong>Oversampled Wave Cannon Loading</strong></see> ↓ (All Classes) /// <para>Preparing oversampled wave cannon, which will fire in the direction of designated player when this effect expires.</para> /// </summary> OversampledWaveCannonLoading_3453 = 3453, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3454"><strong>Omega-M</strong></see> ↑ (All Classes) /// <para>Mimicking the male form.</para> /// </summary> OmegaM_3454 = 3454, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3455"><strong>Superfluid</strong></see> ↑ (All Classes) /// <para>In a transitional liquid state.</para> /// </summary> Superfluid_3455 = 3455, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3456"><strong>Looper</strong></see> ↓ (All Classes) /// <para>Corrupted by Omega's program loop.</para> /// </summary> Looper_3456 = 3456, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3457"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3457 = 3457, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3458"><strong>Gloves Off</strong></see> ↑ (All Classes) /// <para>Ready to perform miraculous feats that transcend the abilities of mankind.</para> /// </summary> GlovesOff = 3458, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3459"><strong>Blooming Blue</strong></see> ↑ (All Classes) /// <para>Resistant to blueblossom aether.</para> /// </summary> BloomingBlue = 3459, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3460"><strong>Blooming Gold</strong></see> ↑ (All Classes) /// <para>Resistant to goldblossom aether.</para> /// </summary> BloomingGold = 3460, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3461"><strong>Featherbrained</strong></see> ↓ (All Classes) /// <para>The incessant chirping of birds is scattering thoughts, preventing all action.</para> /// </summary> Featherbrained_3461 = 3461, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3462"><strong>Poison</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Poison_3462 = 3462, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3463"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis_3463 = 3463, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3464"><strong>Slow</strong></see> ↓ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are increased.</para> /// </summary> Slow_3464 = 3464, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3465"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_3465 = 3465, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3466"><strong>Sleep</strong></see> ↓ (All Classes) /// <para>Overwhelming drowsiness is preventing the execution of actions</para> /// </summary> Sleep_3466 = 3466, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3467"><strong>Vegetal Vapours</strong></see> ↓ (All Classes) /// <para>Overcome and quite unable to act.</para> /// </summary> VegetalVapours = 3467, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3468"><strong>Frontal Blaster Charge</strong></see> ↑ (All Classes) /// <para>Hybrid blaster is crackling with charged energy.</para> /// </summary> FrontalBlasterCharge = 3468, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3469"><strong>Rear Blaster Charge</strong></see> ↑ (All Classes) /// <para>Hybrid blaster is crackling with charged energy.</para> /// </summary> RearBlasterCharge = 3469, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3470"><strong>Left Blaster Charge</strong></see> ↑ (All Classes) /// <para>Hybrid blaster is crackling with charged energy.</para> /// </summary> LeftBlasterCharge = 3470, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3471"><strong>Right Blaster Charge</strong></see> ↑ (All Classes) /// <para>Hybrid blaster is crackling with charged energy.</para> /// </summary> RightBlasterCharge = 3471, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3472"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_3472 = 3472, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3473"><strong>Heavy</strong></see> ↓ (All Classes) /// <para>Movement speed is reduced.</para> /// </summary> Heavy_3473 = 3473, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3474"><strong>Manderville Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased as only a Manderville ran.</para> /// </summary> MandervilleSprint = 3474, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3475"><strong>Penance</strong></see> ↓ (All Classes) /// <para>Humbled by Rubicante. Penitent's Shackles will be applied when this effect expires.</para> /// </summary> Penance = 3475, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3476"><strong>Penitent's Shackles</strong></see> ↓ (All Classes) /// <para>Fettered and unable to move.</para> /// </summary> PenitentsShackles = 3476, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3477"><strong>Penance</strong></see> ↓ (All Classes) /// <para>Humbled by Rubicante. Penitent's Shackles will be applied when this effect expires.</para> /// </summary> Penance_3477 = 3477, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3478 = 3478, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3479"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_3479 = 3479, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3480"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_3480 = 3480, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3481"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_3481 = 3481, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3482 = 3482, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3483"><strong>Blooming Welt</strong></see> ↓ (All Classes) /// <para>A scathing curse lingers on your skin, resulting in a radiating explosion when this effect expires.</para> /// </summary> BloomingWelt = 3483, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3484"><strong>Furious Welt</strong></see> ↓ (All Classes) /// <para>A scathing curse lingers on your skin, resulting in an intense explosion when this effect expires.</para> /// </summary> FuriousWelt = 3484, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3485"><strong>Stinging Welt</strong></see> ↓ (All Classes) /// <para>A scathing curse lingers on your skin, resulting in an explosion when this effect expires.</para> /// </summary> StingingWelt = 3485, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3486"><strong>Flamespire</strong></see> ↓ (All Classes) /// <para>Taking heavy damage from each blow of Flamespire Claw. Accumulating 5 stacks will result in a massive explosion.</para> /// </summary> Flamespire = 3486, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3487"><strong>Flamespire</strong></see> ↓ (All Classes) /// <para>Taking heavy damage from each blow of Flamespire Claw. Accumulating 5 stacks will result in a massive explosion.</para> /// </summary> Flamespire_3487 = 3487, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3488"><strong>Mark of the Harvest</strong></see> ↓ (RPR) /// <para>Damage taken from the reaper who applied this effect is increased.</para> /// </summary> MarkOfTheHarvest = 3488, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3489"><strong>Demiclone Penalty</strong></see> ↓ (All Classes) /// <para>Unable to use demiclone generators.</para> /// </summary> DemiclonePenalty = 3489, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3490"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_3490 = 3490, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3491"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> VulnerabilityDown_3491 = 3491, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3492"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_3492 = 3492, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3493"><strong>Lethargy</strong></see> ↓ (All Classes) /// <para>Auto-attack delay as well as weaponskill and spell cast and recast time are increased.</para> /// </summary> Lethargy = 3493, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3494"><strong>Blind</strong></see> ↓ (All Classes) /// <para>Encroaching darkness is lowering accuracy.</para> /// </summary> Blind_3494 = 3494, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3495"><strong>Guided Missile Kyrios Incoming</strong></see> ↓ (All Classes) /// <para>Target of a missile kyrios launch. Designated attack will occur when this effect expires.</para> /// </summary> GuidedMissileKyriosIncoming_3495 = 3495, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3496"><strong>Guided Missile Kyrios Incoming</strong></see> ↓ (All Classes) /// <para>Target of a missile kyrios launch. Designated attack will occur when this effect expires.</para> /// </summary> GuidedMissileKyriosIncoming_3496 = 3496, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3497"><strong>Guided Missile Kyrios Incoming</strong></see> ↓ (All Classes) /// <para>Target of a missile kyrios launch. Designated attack will occur when this effect expires.</para> /// </summary> GuidedMissileKyriosIncoming_3497 = 3497, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3498 = 3498, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3499"><strong>Packet Filter M</strong></see> ↓ (All Classes) /// <para>Firewall is preventing the dealing of damage to Omega-M.</para> /// </summary> PacketFilterM_3499 = 3499, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3500"><strong>Packet Filter F</strong></see> ↓ (All Classes) /// <para>Firewall is preventing the dealing of damage to Omega-F.</para> /// </summary> PacketFilterF_3500 = 3500, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3501"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_3501 = 3501, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3502"><strong>Owlet</strong></see> ↓ (All Classes) /// <para>Transformed into an owlet and unable to execute actions.</para> /// </summary> Owlet = 3502, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3503"><strong>Local Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of corrupted programming are arising. Issues will manifest as Local Regression when this effect expires.</para> /// </summary> LocalCodeSmell_3503 = 3503, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3504"><strong>Remote Code Smell</strong></see> ↓ (All Classes) /// <para>Hints of corrupted programming are arising. Issues will manifest as Remote Regression when this effect expires.</para> /// </summary> RemoteCodeSmell_3504 = 3504, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3505"><strong>Burning Chains</strong></see> ↓ (All Classes) /// <para>Fiery bonds are forming, resulting in enchainment to another player when this effect expires.</para> /// </summary> BurningChains_3505 = 3505, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3506"><strong>Ancient Frost</strong></see> ↓ (All Classes) /// <para>Enveloped by ice magicks, which will impart the chill of Ancient Frost when this effect expires.</para> /// </summary> AncientFrost = 3506, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3507"><strong>Condensed Wave Cannon Kyrios</strong></see> ↓ (All Classes) /// <para>Designated target of the condensed wave cannon kyrios, which will fire when this effect expires.</para> /// </summary> CondensedWaveCannonKyrios = 3507, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3508"><strong>Condensed Wave Cannon Kyrios</strong></see> ↓ (All Classes) /// <para>Designated target of the condensed wave cannon kyrios, which will fire when this effect expires.</para> /// </summary> CondensedWaveCannonKyrios_3508 = 3508, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3509"><strong>Condensed Wave Cannon Kyrios</strong></see> ↓ (All Classes) /// <para>Designated target of the condensed wave cannon kyrios, which will fire when this effect expires.</para> /// </summary> CondensedWaveCannonKyrios_3509 = 3509, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3510"><strong>Condensed Wave Cannon Kyrios</strong></see> ↓ (All Classes) /// <para>Designated target of the condensed wave cannon kyrios, which will fire when this effect expires.</para> /// </summary> CondensedWaveCannonKyrios_3510 = 3510, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3511"><strong>Glassy-eyed</strong></see> ↓ (All Classes) /// <para>Become another of Galatea's puppets. When this effect expires, body will be possessed and unleash a petrifying attack in all directions.</para> /// </summary> Glassyeyed = 3511, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3512"><strong>Moonspore Spurred</strong></see> ↑ (All Classes) /// <para>Movement speed is increased due to inhalation of moonspores.</para> /// </summary> MoonsporeSpurred = 3512, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3513"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Suffering severe head trauma. Unable to act and taking increased damage.</para> /// </summary> Concussion_3513 = 3513, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3514 = 3514, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3515"><strong>Manderville Sprint</strong></see> ↑ (All Classes) /// <para>Movement speed is greatly increased as only a Manderville ran.</para> /// </summary> MandervilleSprint_3515 = 3515, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3516"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_3516 = 3516, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3517 = 3517, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3518"><strong>Mini</strong></see> ↓ (All Classes) /// <para>Shrunk to a fraction of your normal size. Damage dealt and movement speed are reduced, while damage taken is increased.</para> /// </summary> Mini = 3518, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3519"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_3519 = 3519, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3520"><strong>Mirrored Smoke</strong></see> ↓ (All Classes) /// <para>Divided into two entities.</para> /// </summary> MirroredSmoke = 3520, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3521"><strong>Concussion</strong></see> ↓ (All Classes) /// <para>Wounds dealt by a blunt weapon are causing damage over time.</para> /// </summary> Concussion_3521 = 3521, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3522"><strong>Pyretic</strong></see> ↓ (All Classes) /// <para>Fire-aspected damage is taken with every action.</para> /// </summary> Pyretic_3522 = 3522, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3523"><strong>Freezing Up</strong></see> ↓ (All Classes) /// <para>Growing colder by the moment. Failure to continue moving until this effect expires will result in Deep Freeze.</para> /// </summary> FreezingUp_3523 = 3523, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3524"><strong>Critical Synchronization Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Data corruption will cause explosive damage and spread when the effect ends.</para> /// </summary> CriticalSynchronizationBug_3524 = 3524, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3525"><strong>Critical Overflow Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Data corruption will cause explosive damage and spread when the effect ends.</para> /// </summary> CriticalOverflowBug_3525 = 3525, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3526"><strong>Critical Underflow Bug</strong></see> ↓ (All Classes) /// <para>Affected by a critical error. Coming in contact with allies will cause data corruption to spread. Corruption will cause explosive damage when the effect ends.</para> /// </summary> CriticalUnderflowBug_3526 = 3526, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3527"><strong>Latent Defect</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause explosive damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> LatentDefect_3527 = 3527, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3528"><strong>Cascading Latent Defect</strong></see> ↓ (All Classes) /// <para>Affected by a hidden error that will cause explosive damage when the effect ends. Effect canceled upon being hit by a certain action.</para> /// </summary> CascadingLatentDefect_3528 = 3528, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3529"><strong>Local Regression</strong></see> ↓ (All Classes) /// <para>Affected by a patch error. Data corruption will cause damage when in close proximity to others affected by the same error, or when the effect ends.</para> /// </summary> LocalRegression_3529 = 3529, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3530"><strong>Remote Regression</strong></see> ↓ (All Classes) /// <para>Affected by a patch error. Data corruption will cause damage when out of range of others affected by the same error, or when the effect ends.</para> /// </summary> RemoteRegression_3530 = 3530, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3531 = 3531, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3532"><strong>Magic Number</strong></see> ↓ (All Classes) /// <para>Affected by a factor that Omega previously considered meaningless. This effect can be dispelled via healer limit break. </para> /// </summary> MagicNumber = 3532, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3533 = 3533, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3534"><strong>Ancient Circle</strong></see> ↓ (All Classes) /// <para>Fell darkness spreads out from where you stand. The Ancient Circle will activate when this effect expires.</para> /// </summary> AncientCircle_3534 = 3534, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3535"><strong>Dark Whispers</strong></see> ↓ (All Classes) /// <para>Cursed by tongues of stygian flame, which will unleash a dark attack when this effect expires.</para> /// </summary> DarkWhispers = 3535, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3536"><strong>Magic Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Magic damage taken is increased.</para> /// </summary> MagicVulnerabilityUp_3536 = 3536, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3537"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3537 = 3537, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3538"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_3538 = 3538, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3539"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_3539 = 3539, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3540"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_3540 = 3540, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3541"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_3541 = 3541, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3542"><strong>Soul of the Mage</strong></see> ↑ (All Classes) /// <para>Wielding the power of an ancient magos.</para> /// </summary> SoulOfTheMage = 3542, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3543"><strong>Soul of the Martialist</strong></see> ↑ (All Classes) /// <para>Wielding the power of an ancient pankratiast.</para> /// </summary> SoulOfTheMartialist = 3543, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3544"><strong>Soul of the Beast</strong></see> ↑ (All Classes) /// <para>Wielding the power of an ancient therion.</para> /// </summary> SoulOfTheBeast = 3544, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3545"><strong>Chimeric Soul</strong></see> ↑ (All Classes) /// <para>Wielding the power of multiple ancient souls.</para> /// </summary> ChimericSoul = 3545, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3546"><strong>Radiant Veil</strong></see> ↑ (PLD) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> RadiantVeil = 3546, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3547"><strong>Binding Soul Snare</strong></see> ↓ (All Classes) /// <para>Bound by web and unable to move. Taking damage and becoming further entangled over time. A stack of 5 will result in KO.</para> /// </summary> BindingSoulSnare = 3547, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3548"><strong>Heavy Soul Snare</strong></see> ↓ (All Classes) /// <para>Caught in a web, reducing movement speed and causing damage over time. A stack of 4 will result in severe poisoning.</para> /// </summary> HeavySoulSnare = 3548, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3549"><strong>Incapacitating Soul Snare</strong></see> ↓ (All Classes) /// <para>Entangled in web and unable to execute actions.</para> /// </summary> IncapacitatingSoulSnare = 3549, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3552"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_3552 = 3552, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3553"><strong>Light's Accord</strong></see> ↓ (All Classes) /// <para>Though aetherial polarity is tilting toward the Light, balance with Darkness remains intact.</para> /// </summary> LightsAccord = 3553, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3554"><strong>Dark's Accord</strong></see> ↓ (All Classes) /// <para>Though aetherial polarity is tilting toward the Dark, balance with Light remains intact.</para> /// </summary> DarksAccord = 3554, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3555"><strong>Light's Discord</strong></see> ↓ (All Classes) /// <para>Aetherial polarity is tilting dangerously toward the Light. Failure to restore the balance with Darkness will result in damage taken.</para> /// </summary> LightsDiscord = 3555, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3556"><strong>Dark's Discord</strong></see> ↓ (All Classes) /// <para>Aetherial polarity is tilting dangerously toward the Dark. Failure to restore the balance with Light will result in damage taken.</para> /// </summary> DarksDiscord = 3556, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3557"><strong>Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Damage taken is increased.</para> /// </summary> VulnerabilityUp_3557 = 3557, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3558 = 3558, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3559"><strong>Polarizing</strong></see> ↓ (All Classes) /// <para>Aetherially unbalanced and taking damage over time. Resistance to certain attacks is decreased.</para> /// </summary> Polarizing = 3559, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3560"><strong>Alpha Target</strong></see> ↓ (All Classes) /// <para>Marked as the target of a particular attack.</para> /// </summary> AlphaTarget = 3560, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3561"><strong>Beta Target</strong></see> ↓ (All Classes) /// <para>Marked as the target of a particular attack.</para> /// </summary> BetaTarget = 3561, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3562"><strong>System Error</strong></see> ↓ (All Classes) /// <para>A system error is increasing damage taken.</para> /// </summary> SystemError = 3562, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3563"><strong>Scattered Wailing</strong></see> ↓ (All Classes) /// <para>A shriek echoes unnaturally, forewarning of an explosion.</para> /// </summary> ScatteredWailing = 3563, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3564"><strong>Intensified Wailing</strong></see> ↓ (All Classes) /// <para>A shriek blares unnaturally, forewarning of an intense explosion.</para> /// </summary> IntensifiedWailing = 3564, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3565"><strong>Variant Cure Set</strong></see> ↑ (All Classes) /// <para>Possessed of the ability to cast Variant Cure for the duration of the duty.</para> /// </summary> VariantCureSet = 3565, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3566"><strong>Variant Ultimatum Set</strong></see> ↑ (All Classes) /// <para>Possessed of the ability to use Variant Ultimatum for the duration of the duty.</para> /// </summary> VariantUltimatumSet = 3566, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3567"><strong>Variant Raise Set</strong></see> ↑ (All Classes) /// <para>Possessed of the ability to cast Variant Raise for the duration of the duty.</para> /// </summary> VariantRaiseSet = 3567, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3568"><strong>Variant Spirit Dart Set</strong></see> ↑ (All Classes) /// <para>Possessed of the ability to use Variant Spirit Dart for the duration of the duty.</para> /// </summary> VariantSpiritDartSet = 3568, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3569"><strong>Variant Rampart Set</strong></see> ↑ (All Classes) /// <para>Possessed of the ability to use Variant Rampart for the duration of the duty.</para> /// </summary> VariantRampartSet = 3569, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3570"><strong>Wrathful Revelation</strong></see> ↓ (All Classes) /// <para>Overcome by divine wrath and unable to move.</para> /// </summary> WrathfulRevelation = 3570, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3571"><strong>Delightful Revelation</strong></see> ↓ (All Classes) /// <para>Overcome by divine joy and unable to move.</para> /// </summary> DelightfulRevelation = 3571, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3572 = 3572, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3573"><strong>Flames of Eventide</strong></see> ↓ (All Classes) /// <para>Beset by draconic flames. A stack of 3 will result in severe damage.</para> /// </summary> FlamesOfEventide = 3573, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3574"><strong>Eventide Sword</strong></see> ↑ (All Classes) /// <para>Wielding Azdaja's might as a blade.</para> /// </summary> EventideSword = 3574, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3575 = 3575, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3576"><strong>Umbral Tilt</strong></see> ↓ (All Classes) /// <para>Internal aether is dramatically polarized toward the umbral. Damage taken from umbral attacks is increased, though explosive damage from astral attacks can be quelled. </para> /// </summary> UmbralTilt = 3576, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3577"><strong>Astral Tilt</strong></see> ↓ (All Classes) /// <para>Internal aether is dramatically polarized toward the astral. Damage taken from astral attacks is increased, though explosive damage from umbral attacks can be quelled. </para> /// </summary> AstralTilt = 3577, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3578"><strong>Heavensflame Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Theos's Holy when this effect expires.</para> /// </summary> HeavensflameSoul = 3578, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3579"><strong>Umbralbright Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Umbral Glow when this effect expires.</para> /// </summary> UmbralbrightSoul = 3579, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3580"><strong>Astralbright Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Astral Glow when this effect expires.</para> /// </summary> AstralbrightSoul = 3580, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3581"><strong>Umbralstrong Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Umbral Impact when this effect expires.</para> /// </summary> UmbralstrongSoul = 3581, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3582"><strong>Astralstrong Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Astral Impact when this effect expires.</para> /// </summary> AstralstrongSoul = 3582, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3583"><strong>Quartered Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Theos's Cross when this effect expires.</para> /// </summary> QuarteredSoul = 3583, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3584"><strong>X-marked Soul</strong></see> ↓ (All Classes) /// <para>Soul has been commandeered to unleash Theos's Saltire when this effect expires.</para> /// </summary> XmarkedSoul = 3584, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3585"><strong>Enchained Soul</strong></see> ↓ (All Classes) /// <para>Spiritually chained to the terrestrial plane and unable to jump.</para> /// </summary> EnchainedSoul = 3585, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3586"><strong>Ascended</strong></see> ↓ (All Classes) /// <para>Drawn into the celestial realm created by Athena.</para> /// </summary> Ascended = 3586, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3587"><strong>Missing Link</strong></see> ↓ (All Classes) /// <para>Bound by metaphysical chains, causing damage over time.</para> /// </summary> MissingLink = 3587, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3588"><strong>Shackled Together</strong></see> ↓ (All Classes) /// <para>Chained to an ally. Drawing too far from this partner will result in increased damage taken.</para> /// </summary> ShackledTogether_3588 = 3588, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3589"><strong>Close Caloric</strong></see> ↓ (All Classes) /// <para>Movement causes the accumulation of a physical substance composed of pure heat. Accumulating 5 stacks will result in a massive explosion.</para> /// </summary> CloseCaloric = 3589, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3590"><strong>Pyrefaction</strong></see> ↓ (All Classes) /// <para>Subject to unleashing Pyre Pulse when this effect expires.</para> /// </summary> Pyrefaction = 3590, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3591"><strong>Atmosfaction</strong></see> ↓ (All Classes) /// <para>Subject to unleashing Dynamic Atmosphere when this effect expires.</para> /// </summary> Atmosfaction = 3591, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3592"><strong>Entropifaction</strong></see> ↓ (All Classes) /// <para>Subject to unleashing Entropic Excess periodically. Each release of Entropic Excess will decrease the stacks of this effect. The effect may be transferred to another subject via physical contact.</para> /// </summary> Entropifaction = 3592, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3593"><strong>Unstable Factor</strong></see> ↓ (All Classes) /// <para>Subject to a factor that will cause explosive damage when this effect ends. Physical contact with another subject with unstable factors will result in both subjects' stack counts being added together, divided by two, and redistributed. Fractions will be rounded down to the nearest whole number.</para> /// </summary> UnstableFactor = 3593, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3594"><strong>Critical Factor</strong></see> ↓ (All Classes) /// <para>Subject to an as-yet-unknown element that increases damage taken from attacks by forbidden factors.</para> /// </summary> CriticalFactor = 3594, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3595"><strong>Drunk with Power</strong></see> ↑ (All Classes) /// <para>Feeling empowered due to the influence of potent spirits.</para> /// </summary> DrunkWithPower = 3595, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3597"><strong>Rodential Rebirth</strong></see> ↓ (All Classes) /// <para>Fated to transform into a pterosquirrel when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> RodentialRebirth = 3597, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3598"><strong>Rodential Rebirth</strong></see> ↓ (All Classes) /// <para>Fated to transform into a pterosquirrel when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> RodentialRebirth_3598 = 3598, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3599"><strong>Rodential Rebirth</strong></see> ↓ (All Classes) /// <para>Fated to transform into a pterosquirrel when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> RodentialRebirth_3599 = 3599, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3600"><strong>Rodential Rebirth</strong></see> ↓ (All Classes) /// <para>Fated to transform into a pterosquirrel when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> RodentialRebirth_3600 = 3600, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3601"><strong>Odder Incarnation</strong></see> ↓ (All Classes) /// <para>Fated to transform into an odder otter when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> OdderIncarnation = 3601, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3602"><strong>Odder Incarnation</strong></see> ↓ (All Classes) /// <para>Fated to transform into an odder otter when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> OdderIncarnation_3602 = 3602, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3603"><strong>Odder Incarnation</strong></see> ↓ (All Classes) /// <para>Fated to transform into an odder otter when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> OdderIncarnation_3603 = 3603, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3604"><strong>Odder Incarnation</strong></see> ↓ (All Classes) /// <para>Fated to transform into an odder otter when this effect expires. Effect canceled upon being hit by a certain action.</para> /// </summary> OdderIncarnation_3604 = 3604, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3605"><strong>Squirrelly Prayer</strong></see> ↓ (All Classes) /// <para>Bearing the seal of the squirrel, which will activate in the immediate area when this effect expires.</para> /// </summary> SquirrellyPrayer = 3605, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3606"><strong>Odder Prayer</strong></see> ↓ (All Classes) /// <para>Bearing the seal of the otter, which will activate in the immediate area when this effect expires.</para> /// </summary> OdderPrayer = 3606, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3607"><strong>Live Brazier</strong></see> ↓ (All Classes) /// <para>Fated to burst into roaring flames, causing damage to those nearby when this effect expires.</para> /// </summary> LiveBrazier = 3607, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3608"><strong>Live Candle</strong></see> ↓ (All Classes) /// <para>Fated to burst into flame, causing damage to those nearby when this effect expires.</para> /// </summary> LiveCandle = 3608, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3609"><strong>Rat and Mouse</strong></see> ↓ (All Classes) /// <para>Target of incoming attack.</para> /// </summary> RatAndMouse = 3609, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3610"><strong>Vengeful Flame</strong></see> ↓ (All Classes) /// <para>Beset by flames, resulting in an explosion when this effect expires.</para> /// </summary> VengefulFlame = 3610, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3611"><strong>Vengeful Pyre</strong></see> ↓ (All Classes) /// <para>Beset by flames, resulting in an explosion when this effect expires.</para> /// </summary> VengefulPyre = 3611, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3612"><strong>Spicy Circulation XXII</strong></see> ↑ (All Classes) /// <para>Reforged by the flames of truly challenging curry.</para> /// </summary> SpicyCirculationXxii = 3612, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3613"><strong>Spicy Circulation I</strong></see> ↑ (All Classes) /// <para>Warmed and invigorated by a bowl of hot curry.</para> /// </summary> SpicyCirculationI = 3613, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3614"><strong>Honed Eye</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> HonedEye = 3614, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3615"><strong>Imposing Figure</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> ImposingFigure = 3615, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3616"><strong>Huton</strong></see> ↑ (All Classes) /// <para>Recast time reduced, enabling a rapid shuriken assault.</para> /// </summary> Huton_3616 = 3616, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3617"><strong>Entropy Resistance</strong></see> ↓ (All Classes) /// <para>Invulnerable to entropifaction.</para> /// </summary> EntropyResistance = 3617, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3618"><strong>Stable System</strong></see> ↓ (All Classes) /// <para>Unaffected by contact with subjects with unstable factors.</para> /// </summary> StableSystem = 3618, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3619"><strong>Dark Resistance Down</strong></see> ↓ (All Classes) /// <para>Dark resistance is reduced.</para> /// </summary> DarkResistanceDown_3619 = 3619, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3620"><strong>Hoofing It</strong></see> ↓ (All Classes) /// <para>Unable to summon or ride mounts.</para> /// </summary> HoofingIt_3620 = 3620, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3621"><strong>Magic Resistance</strong></see> ↑ (All Classes) /// <para>Invulnerable to magic attacks.</para> /// </summary> MagicResistance_3621 = 3621, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3622"><strong>Storm's Succor</strong></see> ↑ (All Classes) /// <para>Strengthened by the divine protection of wind and levin.</para> /// </summary> StormsSuccor = 3622, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3623"><strong>Seasons of the Fleeting</strong></see> ↑ (All Classes) /// <para>Able to execute ninjutsu in succession.</para> /// </summary> SeasonsOfTheFleeting = 3623, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3624"><strong>Seduced</strong></see> ↓ (All Classes) /// <para>Enthralled by an irresistible force and unable to act of your own volition.</para> /// </summary> Seduced_3624 = 3624, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3625"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3625 = 3625, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3626"><strong>Fire Loaded</strong></see> ↑ (All Classes) /// <para>Primed with fire-aspected aether.</para> /// </summary> FireLoaded = 3626, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3627"><strong>Ice Loaded</strong></see> ↑ (All Classes) /// <para>Primed with ice-aspected aether.</para> /// </summary> IceLoaded = 3627, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3628"><strong>Lightning Loaded</strong></see> ↑ (All Classes) /// <para>Primed with lightning-aspected aether.</para> /// </summary> LightningLoaded = 3628, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3629"><strong>Forced March</strong></see> ↓ (All Classes) /// <para>Advancing in the ordered direction.</para> /// </summary> ForcedMarch_3629 = 3629, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3630 = 3630, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3631"><strong>Schiltron</strong></see> ↑ (All Classes) /// <para>Inflicting a portion of sustained damage back to its source.</para> /// </summary> Schiltron = 3631, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3636"><strong>Begrimed</strong></see> ↓ (All Classes) /// <para>Sustaining earth damage over time.</para> /// </summary> Begrimed = 3636, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3637"><strong>Spick-and-span</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Spickandspan = 3637, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3638"><strong>Physical Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Physical damage taken is reduced.</para> /// </summary> PhysicalVulnerabilityDown_3638 = 3638, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3639"><strong>Magic Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Magic damage taken is reduced.</para> /// </summary> MagicVulnerabilityDown_3639 = 3639, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3640"><strong>Winged Reprobation</strong></see> ↑ (All Classes) /// <para>Able to repeatedly execute Winged Reprobation. Grants additional stacks with each execution. At four stacks, effect changes to Winged Redemption.</para> /// </summary> WingedReprobation = 3640, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3641"><strong>Winged Redemption</strong></see> ↑ (All Classes) /// <para>Potency of certain actions is increased.</para> /// </summary> WingedRedemption = 3641, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3642"><strong>Candy Cane</strong></see> ↓ (All Classes) /// <para>Motor skills are hampered, causing reduced strength and dexterity.</para> /// </summary> CandyCane = 3642, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3643"><strong>Mortal Flame</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time. Flames will continue to burn until death.</para> /// </summary> MortalFlame_3643 = 3643, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3644"><strong>Apokalypsis</strong></see> ↑ (All Classes) /// <para>Delivering sustained damage in a straight line.</para> /// </summary> Apokalypsis = 3644, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3645"><strong>Flankstung Venom</strong></see> ↑ (VPR) /// <para>Potency of Flanksting Strike is increased.</para> /// </summary> FlankstungVenom = 3645, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3646"><strong>Flanksbane Venom</strong></see> ↑ (VPR) /// <para>Potency of Flanksbane Fang is increased.</para> /// </summary> FlanksbaneVenom = 3646, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3647"><strong>Hindstung Venom</strong></see> ↑ (VPR) /// <para>Potency of Hindsting Strike is increased.</para> /// </summary> HindstungVenom = 3647, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3648"><strong>Hindsbane Venom</strong></see> ↑ (VPR) /// <para>Potency of Hindsbane Fang is increased.</para> /// </summary> HindsbaneVenom = 3648, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3649"><strong>Grimhunter's Venom</strong></see> ↑ (VPR) /// <para>Potency of Jagged Maw is increased.</para> /// </summary> GrimhuntersVenom = 3649, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3650"><strong>Grimskin's Venom</strong></see> ↑ (VPR) /// <para>Potency of Bloodied Maw is increased.</para> /// </summary> GrimskinsVenom = 3650, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3651 = 3651, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3652 = 3652, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3653 = 3653, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3654 = 3654, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3655 = 3655, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3656 = 3656, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3657"><strong>Hunter's Venom</strong></see> ↑ (VPR) /// <para>Potency of Twinfang Bite is increased.</para> /// </summary> HuntersVenom = 3657, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3658"><strong>Swiftskin's Venom</strong></see> ↑ (VPR) /// <para>Potency of Twinblood Bite is increased.</para> /// </summary> SwiftskinsVenom = 3658, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3659"><strong>Fellhunter's Venom</strong></see> ↑ (VPR) /// <para>Potency of Twinfang Thresh is increased.</para> /// </summary> FellhuntersVenom = 3659, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3660"><strong>Fellskin's Venom</strong></see> ↑ (VPR) /// <para>Potency of Twinblood Thresh is increased.</para> /// </summary> FellskinsVenom = 3660, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3661 = 3661, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3662 = 3662, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3663 = 3663, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3664 = 3664, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3665"><strong>Poised for Twinfang</strong></see> ↑ (VPR) /// <para>Potency of Uncoiled Twinfang is increased.</para> /// </summary> PoisedForTwinfang = 3665, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3666"><strong>Poised for Twinblood</strong></see> ↑ (VPR) /// <para>Potency of Uncoiled Twinblood is increased.</para> /// </summary> PoisedForTwinblood = 3666, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3667"><strong>Noxious Gnash</strong></see> ↓ (VPR) /// <para>Damage taken from the viper who applied this effect is increased.</para> /// </summary> NoxiousGnash = 3667, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3668"><strong>Hunter's Instinct</strong></see> ↑ (VPR) /// <para>Damage dealt is increased.</para> /// </summary> HuntersInstinct = 3668, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3669"><strong>Swiftscaled</strong></see> ↑ (VPR) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Swiftscaled = 3669, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3670"><strong>Reawakened</strong></see> ↑ (VPR) /// <para>Tapped into the strength of your hunter forebears.</para> /// </summary> Reawakened = 3670, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3671"><strong>Ready to Reawaken</strong></see> ↑ (VPR) /// <para>Able to execute Reawaken while ignoring Serpent Offerings Gauge cost.</para> /// </summary> ReadyToReawaken = 3671, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3672"><strong>Honed Steel</strong></see> ↑ (VPR) /// <para>Potency of Steel Fangs and Steel Maw is increased.</para> /// </summary> HonedSteel = 3672, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3673"><strong>Guard</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced. All Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, knockback, and draw-in effects are nullified. Movement speed is reduced.</para> /// </summary> Guard_3673 = 3673, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3674"><strong>Subtractive Palette</strong></see> ↑ (PCT) /// <para>The properties of your pictomancy spells have changed.</para> /// </summary> SubtractivePalette = 3674, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3675"><strong>Aetherhues</strong></see> ↑ (PCT) /// <para>Able to cast green and yellow magicks.</para> /// </summary> Aetherhues = 3675, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3676"><strong>Aetherhues II</strong></see> ↑ (PCT) /// <para>Able to cast blue and magenta magicks.</para> /// </summary> AetherhuesIi = 3676, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3677 = 3677, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3678 = 3678, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3679"><strong>Rainbow Bright</strong></see> ↑ (PCT) /// <para>Next Rainbow Drip will require no time to cast, and will have a reduced recast timer.</para> /// </summary> RainbowBright = 3679, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3680"><strong>Hammer Time</strong></see> ↑ (PCT) /// <para>Able to execute the hammer combo.</para> /// </summary> HammerTime = 3680, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3681"><strong>Starstruck</strong></see> ↑ (PCT) /// <para>Able to execute Star Prism.</para> /// </summary> Starstruck = 3681, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3682 = 3682, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3683"><strong>Star Prism</strong></see> ↑ (PCT) /// <para>Regenerating HP over time.</para> /// </summary> StarPrism = 3683, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3684"><strong>Smudge</strong></see> ↑ (PCT) /// <para>Movement speed is increased.</para> /// </summary> Smudge = 3684, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3685"><strong>Starry Muse</strong></see> ↑ (PCT) /// <para>Damage dealt is increased.</para> /// </summary> StarryMuse = 3685, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3686"><strong>Tempera Coat</strong></see> ↑ (PCT) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> TemperaCoat = 3686, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3687"><strong>Tempera Grassa</strong></see> ↑ (PCT) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> TemperaGrassa = 3687, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3688"><strong>Hyperphantasia</strong></see> ↑ (PCT) /// <para>Starry Muse is deployed.</para> /// </summary> Hyperphantasia = 3688, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3689"><strong>Inspiration</strong></see> ↑ (PCT) /// <para>Inspired by Starry Muse, your spell cast and recast times are reduced.</para> /// </summary> Inspiration = 3689, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3690"><strong>Subtractive Spectrum</strong></see> ↑ (PCT) /// <para>Able to execute Subtractive Palette without cost.</para> /// </summary> SubtractiveSpectrum = 3690, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3691"><strong>Monochrome Tones</strong></see> ↑ (PCT) /// <para>One stack of White Paint has been converted to Black Paint.</para> /// </summary> MonochromeTones = 3691, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3692"><strong>Concentrated Poison</strong></see> ↓ (All Classes) /// <para>Powerful poison is slowly draining HP while reducing HP recovery.</para> /// </summary> ConcentratedPoison_3692 = 3692, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3693"><strong>Slippery Ground</strong></see> ↓ (All Classes) /// <para>Having trouble maintaining a solid foothold upon the ground.</para> /// </summary> SlipperyGround = 3693, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3694"><strong>Temporary Misdirection</strong></see> ↓ (All Classes) /// <para>Overcome with confusion and can only move in the direction indicated.</para> /// </summary> TemporaryMisdirection_3694 = 3694, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3695"><strong>Fourfold-come Ruin</strong></see> ↓ (All Classes) /// <para>Bearing signs that the end may be nigh. Too many stacks will result in Doom.</para> /// </summary> FourfoldcomeRuin = 3695, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3697"><strong>Seized</strong></see> ↓ (All Classes) /// <para>Held in a vicelike grip and cannot act. Taking damage over time.</para> /// </summary> Seized_3697 = 3697, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3698"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_3698 = 3698, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3699"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_3699 = 3699, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3700"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_3700 = 3700, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3701"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_3701 = 3701, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3702"><strong>Spinning</strong></see> ↓ (All Classes) /// <para>Spinning in circles across the field and unable to stop.</para> /// </summary> Spinning_3702 = 3702, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3703"><strong>Slippery Slope</strong></see> ↓ (All Classes) /// <para>Slipping in one direction. Unable to jump or execute actions.</para> /// </summary> SlipperySlope = 3703, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3704"><strong>Crystal Courier</strong></see> ↑ (All Classes) /// <para>Carrying a crystal. Will score points upon arrival at the corresponding goal.</para> /// </summary> CrystalCourier = 3704, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3705"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_3705 = 3705, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3706"><strong>Windburn</strong></see> ↓ (All Classes) /// <para>Sustaining wind damage over time.</para> /// </summary> Windburn_3706 = 3706, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3707"><strong>Magic Damage Up</strong></see> ↑ (All Classes) /// <para>Magic damage dealt is increased.</para> /// </summary> MagicDamageUp_3707 = 3707, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3708"><strong>Spectator</strong></see> ↑ (All Classes) /// <para>Watching the show from a safe distance.</para> /// </summary> Spectator = 3708, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3709"><strong>Drop and Roll</strong></see> ↑ (All Classes) /// <para>Prepared to dodge certain attacks.</para> /// </summary> DropAndRoll = 3709, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3710"><strong>Precision</strong></see> ↑ (All Classes) /// <para>A precision dodge has created an opening, enabling use of the duty action Precision Strike.</para> /// </summary> Precision = 3710, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3711 = 3711, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3712"><strong>Breath of Magic</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> BreathOfMagic = 3712, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3713"><strong>Sticky</strong></see> ↓ (All Classes) /// <para>A viscous substance is hampering movement.</para> /// </summary> Sticky = 3713, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3714"><strong>Prey</strong></see> ↓ (All Classes) /// <para>Marked as prey.</para> /// </summary> Prey_3714 = 3714, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3715"><strong>Forward March</strong></see> ↓ (All Classes) /// <para>Have received the order to advance. Order will be executed when status fades.</para> /// </summary> ForwardMarch_3715 = 3715, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3716"><strong>About Face</strong></see> ↓ (All Classes) /// <para>Have received the order to retreat. Order will be executed when status fades.</para> /// </summary> AboutFace_3716 = 3716, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3717"><strong>Left Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move left. Order will be executed when status fades.</para> /// </summary> LeftFace_3717 = 3717, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3718"><strong>Right Face</strong></see> ↓ (All Classes) /// <para>Have received the order to move right. Order will be executed when status fades.</para> /// </summary> RightFace_3718 = 3718, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3719"><strong>Forced March</strong></see> ↓ (All Classes) /// <para>Advancing in the ordered direction.</para> /// </summary> ForcedMarch_3719 = 3719, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3721"><strong>Times Three</strong></see> ↓ (All Classes) /// <para>The angle of effect for the next rotational attack executed will be tripled.</para> /// </summary> TimesThree = 3721, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3723"><strong>Surge Vector</strong></see> ↓ (All Classes) /// <para>Targeted for destruction. Dual explosives will impact target and its surrounds when this effect expires.</para> /// </summary> SurgeVector = 3723, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3724"><strong>Subtractive Suppressor Alpha</strong></see> ↓ (All Classes) /// <para>Affixed with high-powered explosives that will detonate if KO'd. Taking damage from arcane geometries on the ground will reduce stacks. Effect will be removed when stacks reach 0.</para> /// </summary> SubtractiveSuppressorAlpha = 3724, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3725"><strong>Subtractive Suppressor Beta</strong></see> ↓ (All Classes) /// <para>Affixed with high-powered explosives that will detonate when this effect expires. Taking damage from freestanding arcane geometries will reduce stacks. Effect will be removed when stacks reach 0.</para> /// </summary> SubtractiveSuppressorBeta = 3725, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3726"><strong>Front Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the front of the body remain undetected. Hits to the back, right, and left sides of the body will result in severe damage.</para> /// </summary> FrontUnseen_3726 = 3726, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3727"><strong>Back Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the back of the body remain undetected. Hits to the front, right, and left sides of the body will result in severe damage.</para> /// </summary> BackUnseen_3727 = 3727, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3728"><strong>Right Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the right side of the body remain undetected. Hits to the front, back, and left sides of the body will result in severe damage.</para> /// </summary> RightUnseen_3728 = 3728, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3729"><strong>Left Unseen</strong></see> ↓ (All Classes) /// <para>Only vulnerabilities on the left side of the body remain undetected. Hits to the front, back, and right sides of the body will result in severe damage.</para> /// </summary> LeftUnseen_3729 = 3729, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3730"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_3730 = 3730, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3731"><strong>Dark Whispers</strong></see> ↓ (All Classes) /// <para>Hexed by the dark elf. The moment of Doom draws ever nearer as stacks increase.</para> /// </summary> DarkWhispers_3731 = 3731, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3732"><strong>Inscribed</strong></see> ↓ (All Classes) /// <para>Marked by a binding glyph that will activate when this effect expires.</para> /// </summary> Inscribed = 3732, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3733"><strong>Rite of the Sparrow</strong></see> ↑ (All Classes) /// <para>Paying respects to a venerable uolosapa.</para> /// </summary> RiteOfTheSparrow = 3733, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3734"><strong>Rite of the Sea Turtle</strong></see> ↑ (All Classes) /// <para>Paying respects to a venerable tesata.</para> /// </summary> RiteOfTheSeaTurtle = 3734, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3735"><strong>Rite of the Great Whale</strong></see> ↑ (All Classes) /// <para>Paying respects to a venerable ketu.</para> /// </summary> RiteOfTheGreatWhale = 3735, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3737"><strong>Forced March</strong></see> ↓ (All Classes) /// <para>Advancing in the ordered direction.</para> /// </summary> ForcedMarch_3737 = 3737, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3738 = 3738, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3739"><strong>Time and Tide</strong></see> ↑ (All Classes) /// <para>Cast time of next spell cast is greatly reduced.</para> /// </summary> TimeAndTide = 3739, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3740"><strong>Bright Pulse</strong></see> ↓ (All Classes) /// <para>Bright light has obscured vision, lowering accuracy.</para> /// </summary> BrightPulse = 3740, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3741"><strong>Seventh Heaven</strong></see> ↑ (All Classes) /// <para>Imbued with the power collected in the highest heaven.</para> /// </summary> SeventhHeaven = 3741, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3742"><strong>Bull's-eye</strong></see> ↓ (All Classes) /// <para>Targeted by Statice. Shock darts will rain like levin upon the surrounding area when this effect expires.</para> /// </summary> Bullseye = 3742, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3743"><strong>Bubble Weave</strong></see> ↓ (All Classes) /// <para>Aetherial seafoam is coalescing around the body, resulting in ensnarement by a Bubble Net when this effect expires.</para> /// </summary> BubbleWeave = 3743, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3744"><strong>Bubble Net</strong></see> ↓ (All Classes) /// <para>Ensnared by aetherial seafoam and unable to move except as the wind wills.</para> /// </summary> BubbleNet = 3744, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3745 = 3745, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3746"><strong>Bubble Gaol</strong></see> ↓ (All Classes) /// <para>Bound by aetherial seafoam and unable to move except as the wind wills.</para> /// </summary> BubbleGaol = 3746, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3747"><strong>Hydrofall Target</strong></see> ↓ (All Classes) /// <para>Designated target of Hydrofall, which will activate when this effect expires.</para> /// </summary> HydrofallTarget = 3747, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3748"><strong>Hydrobullet Target</strong></see> ↓ (All Classes) /// <para>Designated target of Hydrobullet, which will activate when this effect expires.</para> /// </summary> HydrobulletTarget = 3748, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3749"><strong>Sticky</strong></see> ↓ (All Classes) /// <para>A viscous substance is hampering movement.</para> /// </summary> Sticky_3749 = 3749, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3751"><strong>Needle Veil</strong></see> ↑ (All Classes) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NeedleVeil = 3751, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3752"><strong>Oasal Balm</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> OasalBalm = 3752, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3753"><strong>Oasal Balm</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> OasalBalm_3753 = 3753, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3754"><strong>Heat Wave</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> HeatWave = 3754, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3755"><strong>Fetters</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Fetters_3755 = 3755, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3756"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is greatly increased.</para> /// </summary> DamageUp_3756 = 3756, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3757"><strong>Vulnerability Down</strong></see> ↑ (All Classes) /// <para>Damage taken is greatly reduced.</para> /// </summary> VulnerabilityDown_3757 = 3757, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3758"><strong>Raging Rroneek</strong></see> ↑ (All Classes) /// <para>Enmity is increased.</para> /// </summary> RagingRroneek = 3758, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3759"><strong>Impassioned</strong></see> ↑ (All Classes) /// <para>Overcome with emotion.</para> /// </summary> Impassioned = 3759, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3760"><strong>Big Bang</strong></see> ↑ (All Classes) /// <para>Invigorated by the exponential expansion of Darkness.</para> /// </summary> BigBang = 3760, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3761"><strong>Big Bounce</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> BigBounce = 3761, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3762"><strong>Divisive Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in an explosion when this effect expires.</para> /// </summary> DivisiveDark = 3762, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3763"><strong>Beckoning Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in a massive explosion when this effect expires.</para> /// </summary> BeckoningDark = 3763, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3764"><strong>Doubled Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in an explosion when this effect expires.</para> /// </summary> DoubledDark = 3764, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3765"><strong>Glowering Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in a forward burst of damage when this effect expires.</para> /// </summary> GloweringDark = 3765, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3766"><strong>Binding Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in enchainment to another player when this effect expires.</para> /// </summary> BindingDark = 3766, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3767"><strong>Bonds of Darkness</strong></see> ↓ (All Classes) /// <para>Bound by stygian chains, causing damage over time.</para> /// </summary> BondsOfDarkness = 3767, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3768"><strong>Area of Influence Up</strong></see> ↑ (All Classes) /// <para>Area of effect for actions is expanded.</para> /// </summary> AreaOfInfluenceUp_3768 = 3768, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3769 = 3769, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3770"><strong>Gravitational Anomaly</strong></see> ↓ (All Classes) /// <para>Hovering above the ground due to a disturbance in gravity. Unable to execute Jump.</para> /// </summary> GravitationalAnomaly = 3770, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3771"><strong>Infernal Shroud</strong></see> ↑ (All Classes) /// <para>Bolstered by the power of flame.</para> /// </summary> InfernalShroud = 3771, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3772"><strong>Honed Reavers</strong></see> ↑ (VPR) /// <para>Potency of Reaving Fangs and Reaving Maw is increased.</para> /// </summary> HonedReavers = 3772, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3773 = 3773, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3774 = 3774, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3775 = 3775, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3776"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3776 = 3776, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3777"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3777 = 3777, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3778"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3778 = 3778, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3779"><strong>Electrocution</strong></see> ↓ (All Classes) /// <para>Sustaining lightning damage over time.</para> /// </summary> Electrocution_3779 = 3779, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3780 = 3780, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3781 = 3781, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3782"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3782 = 3782, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3783"><strong>Rroneek Pulse</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> RroneekPulse = 3783, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3784"><strong>Br'aax Pulse</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced while inflicting a portion of sustained damage back to its source.</para> /// </summary> BraaxPulse = 3784, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3785"><strong>Luwatena Pulse</strong></see> ↑ (All Classes) /// <para>Maximum HP and HP recovery via healing actions are increased.</para> /// </summary> LuwatenaPulse = 3785, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3786"><strong>Full-grown</strong></see> ↑ (All Classes) /// <para>Fully matured.</para> /// </summary> Fullgrown_3786 = 3786, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3787 = 3787, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3788"><strong>Foamy Fetters</strong></see> ↓ (All Classes) /// <para>Aetherial seafoam is coalescing around the body, resulting in Bind when this effect expires.</para> /// </summary> FoamyFetters = 3788, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3789"><strong>Bind</strong></see> ↓ (All Classes) /// <para>Unable to move.</para> /// </summary> Bind_3789 = 3789, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3790"><strong>Times Five</strong></see> ↓ (All Classes) /// <para>The angle of effect for the next rotational attack executed will be quintupled.</para> /// </summary> TimesFive = 3790, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3791"><strong>Movement Speed Up</strong></see> ↑ (All Classes) /// <para>Movement speed is increased.</para> /// </summary> MovementSpeedUp_3791 = 3791, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3792 = 3792, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3793"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb_3793 = 3793, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3794"><strong>Beckoning Dark</strong></see> ↓ (All Classes) /// <para>Devoured by Darkness, resulting in a massive explosion when this effect expires.</para> /// </summary> BeckoningDark_3794 = 3794, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3796"><strong>Trauma</strong></see> ↓ (All Classes) /// <para>Suffering injuries from a powerful attack. Increased trauma will result in a Concussion.</para> /// </summary> Trauma = 3796, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3797"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3797 = 3797, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3798"><strong>Dropsy</strong></see> ↓ (All Classes) /// <para>Sustaining water damage over time.</para> /// </summary> Dropsy_3798 = 3798, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3799"><strong>Forked Lightning</strong></see> ↓ (All Classes) /// <para>Storing an electric charge which, when released, will deal lightning damage to those nearby.</para> /// </summary> ForkedLightning_3799 = 3799, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3800 = 3800, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3801"><strong>Sharpened Sights</strong></see> ↑ (All Classes) /// <para>Eyes have been infused with aether, enhancing vision. Performing certain actions will trigger Eye of the Fierce.</para> /// </summary> SharpenedSights = 3801, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3802"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb_3802 = 3802, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3803"><strong>Apex Wings</strong></see> ↑ (All Classes) /// <para>Apollyon's wings are enhanced.</para> /// </summary> ApexWings = 3803, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3804"><strong>Apex Blades</strong></see> ↑ (All Classes) /// <para>Apollyon's blades are enhanced.</para> /// </summary> ApexBlades = 3804, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3805"><strong>Fury</strong></see> ↑ (All Classes) /// <para>Unbridled rage is increasing damage dealt.</para> /// </summary> Fury = 3805, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3806"><strong>Vitalized</strong></see> ↑ (All Classes) /// <para>Invigorated by Drowsie's dancing.</para> /// </summary> Vitalized = 3806, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3807"><strong>Vitalized</strong></see> ↑ (All Classes) /// <para>Invigorated by Drowsie's dancing.</para> /// </summary> Vitalized_3807 = 3807, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3808"><strong>Directional Disregard</strong></see> ↓ (All Classes) /// <para>All action direction requirements are nullified.</para> /// </summary> DirectionalDisregard = 3808, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3809"><strong>Seed Crystals</strong></see> ↓ (All Classes) /// <para>Heavy crystals are encasing your lower body. Will bear a Crystal Burden when this effect expires.</para> /// </summary> SeedCrystals = 3809, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3810"><strong>Crystal Burden</strong></see> ↓ (All Classes) /// <para>Heavy crystals are encasing your body, preventing movement and slowing activity. Will become Crystallized when this effect expires.</para> /// </summary> CrystalBurden = 3810, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3811"><strong>Crystallized</strong></see> ↓ (All Classes) /// <para>Completely encased in crystal and unable to move or breathe. KO is imminent.</para> /// </summary> Crystallized = 3811, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3812"><strong>Expedience</strong></see> ↑ (Disciple of the Hand) /// <para>Hasty Touch is upgraded to Daring Touch.</para> /// </summary> Expedience_3812 = 3812, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3813"><strong>Trained Perfection</strong></see> ↑ (Disciple of the Hand) /// <para>Durability loss of next action is reduced to zero.</para> /// </summary> TrainedPerfection = 3813, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3814"><strong>Gravitational Anomaly</strong></see> ↓ (All Classes) /// <para>Hovering above the ground due to a disturbance in gravity. Unable to execute Jump.</para> /// </summary> GravitationalAnomaly_3814 = 3814, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3815"><strong>Authority's Gaze</strong></see> ↓ (All Classes) /// <para>Under Absolute Authority. Will unleash a petrifying light upon those nearby when this effect expires.</para> /// </summary> AuthoritysGaze = 3815, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3816 = 3816, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3817"><strong>Calamity's Flames</strong></see> ↓ (All Classes) /// <para>Inundated with fire-aspected aether. Scourge of Fire will be triggered when this effect expires.</para> /// </summary> CalamitysFlames = 3817, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3818"><strong>Calamity's Inferno</strong></see> ↓ (All Classes) /// <para>Inundated with fire-aspected aether. Scourge of Fire will be triggered in succession when this effect expires.</para> /// </summary> CalamitysInferno = 3818, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3819"><strong>Calamity's Embers</strong></see> ↓ (All Classes) /// <para>Inundated with fire-aspected aether. Scourge of Fire will be triggered when this effect expires.</para> /// </summary> CalamitysEmbers = 3819, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3820"><strong>Calamity's Frost</strong></see> ↓ (All Classes) /// <para>Inundated with ice-aspected aether. An ice boulder will spawn on the ground when this effect expires.</para> /// </summary> CalamitysFrost = 3820, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3821"><strong>Calamity's Bite</strong></see> ↓ (All Classes) /// <para>Inundated with ice-aspected aether. Scourge of Ice will be executed when this effect expires.</para> /// </summary> CalamitysBite = 3821, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3822"><strong>Calamity's Chill</strong></see> ↓ (All Classes) /// <para>Inundated with ice-aspected aether. Will trigger Freezing Up when this effect expires, resulting in Deep Freeze if not continuously in motion.</para> /// </summary> CalamitysChill = 3822, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3823"><strong>Calamity's Bolt</strong></see> ↓ (All Classes) /// <para>Inundated with lightning-aspected aether. Scourge of Thunder will be triggered when this effect expires.</para> /// </summary> CalamitysBolt = 3823, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3824"><strong>Calamity's Fulgur</strong></see> ↓ (All Classes) /// <para>Inundated with lightning-aspected aether. Scourge of Thunder will be triggered when this effect expires.</para> /// </summary> CalamitysFulgur = 3824, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3825"><strong>Greatest Curse</strong></see> ↓ (All Classes) /// <para>An ancient curse has been placed upon you, resulting in certain death when the counter reaches zero.</para> /// </summary> GreatestCurse = 3825, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3826"><strong>Burns</strong></see> ↓ (All Classes) /// <para>Sustaining fire damage over time.</para> /// </summary> Burns_3826 = 3826, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3827"><strong>Supplication Ready</strong></see> ↑ (PLD) /// <para>Able to execute Supplication.</para> /// </summary> SupplicationReady = 3827, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3828"><strong>Sepulchre Ready</strong></see> ↑ (PLD) /// <para>Able to execute Sepulchre.</para> /// </summary> SepulchreReady = 3828, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3829"><strong>Guardian</strong></see> ↑ (PLD) /// <para>Damage taken is reduced.</para> /// </summary> Guardian = 3829, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3830"><strong>Guardian's Will</strong></see> ↑ (PLD) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> GuardiansWill = 3830, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3831"><strong>Blade of Honor Ready</strong></see> ↑ (PLD) /// <para>Able to execute Blade of Honor.</para> /// </summary> BladeOfHonorReady = 3831, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3832"><strong>Damnation</strong></see> ↑ (WAR) /// <para>Damage taken is reduced while inflicting a portion of sustained damage back to its source. HP will be restored over time when effect expires.</para> /// </summary> Damnation = 3832, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3833"><strong>Burgeoning Fury</strong></see> ↑ (WAR) /// <para>Fury is building within you. At 3 stacks, effect changes to Wrathful, allowing you to execute Primal Wrath.</para> /// </summary> BurgeoningFury = 3833, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3834"><strong>Primal Ruination Ready</strong></see> ↑ (WAR) /// <para>Able to execute Primal Ruination.</para> /// </summary> PrimalRuinationReady = 3834, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3835"><strong>Shadowed Vigil</strong></see> ↑ (DRK) /// <para>Damage taken is reduced.</para> /// </summary> ShadowedVigil = 3835, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3836"><strong>Delirium</strong></see> ↑ (DRK) /// <para>Able to execute Scarlet Delirium and Impalement.</para> /// </summary> Delirium_3836 = 3836, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3837"><strong>Scorn</strong></see> ↑ (DRK) /// <para>Able to execute Disesteem.</para> /// </summary> Scorn = 3837, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3838"><strong>Great Nebula</strong></see> ↑ (GNB) /// <para>Maximum HP is increased while damage taken is reduced.</para> /// </summary> GreatNebula = 3838, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3839"><strong>Ready to Raze</strong></see> ↑ (GNB) /// <para>Able to execute Fated Brand.</para> /// </summary> ReadyToRaze = 3839, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3840"><strong>Ready to Reign</strong></see> ↑ (GNB) /// <para>Able to execute Reign of Beasts.</para> /// </summary> ReadyToReign = 3840, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3841"><strong>Earth's Rumination</strong></see> ↑ (MNK) /// <para>Able to execute Earth's Reply.</para> /// </summary> EarthsRumination = 3841, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3842"><strong>Wind's Rumination</strong></see> ↑ (MNK) /// <para>Able to execute Wind's Reply.</para> /// </summary> WindsRumination = 3842, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3843"><strong>Fire's Rumination</strong></see> ↑ (MNK) /// <para>Able to execute Fire's Reply.</para> /// </summary> FiresRumination = 3843, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3844"><strong>Nastrond Ready</strong></see> ↑ (DRG) /// <para>Able to execute Nastrond.</para> /// </summary> NastrondReady = 3844, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3845"><strong>Dragon's Flight</strong></see> ↑ (DRG) /// <para>Able to execute Rise of the Dragon.</para> /// </summary> DragonsFlight = 3845, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3846"><strong>Starcross Ready</strong></see> ↑ (DRG) /// <para>Able to execute Starcross.</para> /// </summary> StarcrossReady = 3846, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3847"><strong>Goring Blade Ready</strong></see> ↑ (PLD) /// <para>Able to execute Goring Blade.</para> /// </summary> GoringBladeReady = 3847, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3848"><strong>Shadow Walker</strong></see> ↑ (NIN) /// <para>Able to use actions normally requiring the Hidden status.</para> /// </summary> ShadowWalker = 3848, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3849"><strong>Dokumori</strong></see> ↓ (NIN) /// <para>Damage taken is increased.</para> /// </summary> Dokumori = 3849, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3850"><strong>Higi</strong></see> ↑ (NIN) /// <para>Able to make use of advanced ninja arts.</para> /// </summary> Higi = 3850, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3851"><strong>Tenri Jindo Ready</strong></see> ↑ (NIN) /// <para>Able to execute Tenri Jindo.</para> /// </summary> TenriJindoReady = 3851, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3852"><strong>Tsubame-gaeshi Ready</strong></see> ↑ (SAM) /// <para>Able to execute Tsubame-gaeshi.</para> /// </summary> TsubamegaeshiReady = 3852, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3853"><strong>Tengentsu</strong></see> ↑ (SAM) /// <para>Damage taken is reduced.</para> /// </summary> Tengentsu = 3853, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3854"><strong>Tengentsu's Foresight</strong></see> ↑ (SAM) /// <para>Damage taken is reduced and regenerating HP over time.</para> /// </summary> TengentsusForesight = 3854, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3855"><strong>Zanshin Ready</strong></see> ↑ (SAM) /// <para>Able to execute Zanshin.</para> /// </summary> ZanshinReady_3855 = 3855, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3856"><strong>Tendo</strong></see> ↑ (SAM) /// <para>Tenka Goken is upgraded to Tendo Goken, and Midare Setsugekka is upgraded to Tendo Setsugekka.</para> /// </summary> Tendo = 3856, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3857"><strong>Oblatio</strong></see> ↑ (RPR) /// <para>Able to execute Sacrificium.</para> /// </summary> Oblatio = 3857, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3858"><strong>Executioner</strong></see> ↑ (RPR) /// <para>Able to execute Executioner's Gibbet, Executioner's Gallows, and Executioner's Guillotine.</para> /// </summary> Executioner = 3858, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3859"><strong>Perfectio Occulta</strong></see> ↑ (RPR) /// <para>Grants Perfectio Parata upon executing Communio.</para> /// </summary> PerfectioOcculta = 3859, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3860"><strong>Perfectio Parata</strong></see> ↑ (RPR) /// <para>Able to execute Perfectio.</para> /// </summary> PerfectioParata = 3860, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3861"><strong>Hawk's Eye</strong></see> ↑ (BRD) /// <para>Able to execute Refulgent ArrowStraight ShotStraight Shot and Shadowbite and Wide Volley and Wide Volley and Wide Volley and Wide Volley</para> /// </summary> HawksEye_3861 = 3861, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3862"><strong>Resonant Arrow Ready</strong></see> ↑ (BRD) /// <para>Able to execute Resonant Arrow.</para> /// </summary> ResonantArrowReady = 3862, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3863"><strong>Radiant Encore Ready</strong></see> ↑ (BRD) /// <para>Able to execute Radiant Encore.</para> /// </summary> RadiantEncoreReady = 3863, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3864"><strong>Hypercharged</strong></see> ↑ (MCH) /// <para>Able to execute Hypercharge.</para> /// </summary> Hypercharged = 3864, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3865"><strong>Excavator Ready</strong></see> ↑ (MCH) /// <para>Able to execute Excavator.</para> /// </summary> ExcavatorReady = 3865, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3866"><strong>Full Metal Machinist</strong></see> ↑ (MCH) /// <para>Able to execute Full Metal Field.</para> /// </summary> FullMetalMachinist = 3866, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3867"><strong>Last Dance Ready</strong></see> ↑ (DNC) /// <para>Able to execute Last Dance.</para> /// </summary> LastDanceReady = 3867, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3868"><strong>Finishing Move Ready</strong></see> ↑ (DNC) /// <para>Able to execute Finishing Move.</para> /// </summary> FinishingMoveReady = 3868, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3869"><strong>Dance of the Dawn Ready</strong></see> ↑ (DNC) /// <para>Able to execute Dance of the Dawn.</para> /// </summary> DanceOfTheDawnReady = 3869, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3870"><strong>Thunderhead</strong></see> ↑ (BLM) /// <para>Able to cast Thunder spells.</para> /// </summary> Thunderhead = 3870, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3871"><strong>High Thunder</strong></see> ↓ (BLM) /// <para>Sustaining lightning damage over time.</para> /// </summary> HighThunder = 3871, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3872"><strong>High Thunder</strong></see> ↓ (BLM) /// <para>Sustaining lightning damage over time.</para> /// </summary> HighThunder_3872 = 3872, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3873"><strong>Ruby's Glimmer</strong></see> ↑ (SMN) /// <para>Able to execute Searing Flash.</para> /// </summary> RubysGlimmer = 3873, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3874"><strong>Refulgent Lux</strong></see> ↑ (SMN) /// <para>Able to execute Lux Solaris.</para> /// </summary> RefulgentLux = 3874, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3875"><strong>Magicked Swordplay</strong></see> ↑ (RDM) /// <para>Able to execute enchanted sword skills without cost.</para> /// </summary> MagickedSwordplay = 3875, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3876"><strong>Thorned Flourish</strong></see> ↑ (RDM) /// <para>Able to execute Vice of Thorns.</para> /// </summary> ThornedFlourish = 3876, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3877"><strong>Grand Impact Ready</strong></see> ↑ (RDM) /// <para>Able to execute Grand Impact.</para> /// </summary> GrandImpactReady = 3877, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3878"><strong>Prefulgence Ready</strong></see> ↑ (RDM) /// <para>Able to cast Prefulgence.</para> /// </summary> PrefulgenceReady = 3878, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3879"><strong>Sacred Sight</strong></see> ↑ (WHM) /// <para>Able to execute Glare IV.</para> /// </summary> SacredSight = 3879, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3880"><strong>Medica III</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> MedicaIii = 3880, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3881"><strong>Divine Grace</strong></see> ↑ (WHM) /// <para>Able to execute Divine Caress.</para> /// </summary> DivineGrace = 3881, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3882"><strong>Impact Imminent</strong></see> ↑ (SCH) /// <para>Able to execute Baneful Impaction.</para> /// </summary> ImpactImminent = 3882, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3883"><strong>Baneful Impaction</strong></see> ↓ (SCH) /// <para>Sustaining unaspected damage over time.</para> /// </summary> BanefulImpaction = 3883, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3884"><strong>Seraphism</strong></see> ↑ (SCH) /// <para>Self and nearby party members are regenerating HP over time.</para> /// </summary> Seraphism = 3884, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3885"><strong>Seraphism</strong></see> ↑ (SCH) /// <para>Regenerating HP over time.</para> /// </summary> Seraphism_3885 = 3885, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3886"><strong>Ready to Break</strong></see> ↑ (GNB) /// <para>Able to execute Sonic Break.</para> /// </summary> ReadyToBreak = 3886, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3887"><strong>The Balance</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheBalance_3887 = 3887, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3888"><strong>The Arrow</strong></see> ↑ (AST) /// <para>HP recovery via healing actions is increased.</para> /// </summary> TheArrow_3888 = 3888, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3889"><strong>The Spear</strong></see> ↑ (AST) /// <para>Damage dealt is increased.</para> /// </summary> TheSpear_3889 = 3889, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3890"><strong>The Bole</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> TheBole_3890 = 3890, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3891"><strong>The Ewer</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> TheEwer_3891 = 3891, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3892"><strong>The Spire</strong></see> ↑ (AST) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> TheSpire_3892 = 3892, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3893"><strong>Divining</strong></see> ↑ (AST) /// <para>Able to execute Oracle.</para> /// </summary> Divining = 3893, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3894"><strong>Helios Conjunction</strong></see> ↑ (AST) /// <para>Regenerating HP over time.</para> /// </summary> HeliosConjunction = 3894, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3895"><strong>Suntouched</strong></see> ↑ (AST) /// <para>Able to execute Sun Sign.</para> /// </summary> Suntouched = 3895, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3896"><strong>Sun Sign</strong></see> ↑ (AST) /// <para>Damage taken is reduced.</para> /// </summary> SunSign = 3896, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3897"><strong>Eukrasian Dyskrasia</strong></see> ↓ (SGE) /// <para>Sustaining unaspected damage over time.</para> /// </summary> EukrasianDyskrasia = 3897, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3898"><strong>Philosophia</strong></see> ↑ (SGE) /// <para>HP restoration via healing magic is increased.</para> /// </summary> Philosophia = 3898, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3899"><strong>Eudaimonia</strong></see> ↑ (SGE) /// <para>Additional HP is recovered when the sage who granted this effect lands any spell.</para> /// </summary> Eudaimonia = 3899, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3900"><strong>Primeval Impulse</strong></see> ↑ (WAR) /// <para>Regenerating HP over time.</para> /// </summary> PrimevalImpulse = 3900, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3901"><strong>Wrathful</strong></see> ↑ (WAR) /// <para>Able to execute Primal Wrath.</para> /// </summary> Wrathful = 3901, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3902"><strong>Vigilant</strong></see> ↑ (DRK) /// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> /// </summary> Vigilant = 3902, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3903"><strong>Divine Caress</strong></see> ↑ (WHM) /// <para>A holy barrier is nullifying damage.</para> /// </summary> DivineCaress = 3903, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3904"><strong>Divine Aura</strong></see> ↑ (WHM) /// <para>Regenerating HP over time.</para> /// </summary> DivineAura = 3904, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3905"><strong>Ideal Host</strong></see> ↑ (RPR) /// <para>Able to execute Enshroud.</para> /// </summary> IdealHost = 3905, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3906"><strong>Kunai's Bane</strong></see> ↓ (NIN) /// <para>Sustaining increased damage from target who executed Kunai's Bane.</para> /// </summary> KunaisBane = 3906, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3907"><strong>Big-game Fishing</strong></see> ↑ (All Classes) /// <para>Large-sized fish when caught are more likely to be an especially large specimen.</para> /// </summary> BiggameFishing = 3907, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3908"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_3908 = 3908, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3909"><strong>Temporary Misdirection</strong></see> ↓ (All Classes) /// <para>Overcome with confusion and can only move in the direction indicated.</para> /// </summary> TemporaryMisdirection_3909 = 3909, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3910"><strong>Priming Touch</strong></see> ↑ (All Classes) /// <para>Chance your next use of a meticulous action will not affect integrity is doubled.</para> /// </summary> PrimingTouch = 3910, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3911"><strong>Collector's High Standard</strong></see> ↑ (All Classes) /// <para>Effectiveness of brazen actions are increased. Chance meticulous actions do not affect integrity is also increased.</para> /// </summary> CollectorsHighStandard = 3911, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3912"><strong>Roar of Conviction</strong></see> ↑ (All Classes) /// <para>Determination fills the heart and damage dealt is increased.</para> /// </summary> RoarOfConviction = 3912, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3913 = 3913, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3914"><strong>Riled</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased and restoring HP over time.</para> /// </summary> Riled_3914 = 3914, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3915"><strong>Lovely Poison</strong></see> ↑ (All Classes) /// <para>Weapon has been lovingly coated with venom.</para> /// </summary> LovelyPoison = 3915, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3916 = 3916, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3917"><strong>Infatuated</strong></see> ↓ (All Classes) /// <para>Suffering minor heart palpitations due to a growing fondness for Honey B. Lovely. Taking damage over time.</para> /// </summary> Infatuated = 3917, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3918"><strong>Head Over Heels</strong></see> ↓ (All Classes) /// <para>Suffering heart palpitations due to an attraction to Honey B. Lovely. Taking damage over time.</para> /// </summary> HeadOverHeels = 3918, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3919"><strong>Hopeless Devotion</strong></see> ↓ (All Classes) /// <para>Suffering severe heart palpitations due to undying affection for Honey B. Lovely. Taking damage over time.</para> /// </summary> HopelessDevotion = 3919, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3920"><strong>Fatal Attraction</strong></see> ↓ (All Classes) /// <para>Honey B. Lovely has taken your heart prisoner.</para> /// </summary> FatalAttraction = 3920, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3921"><strong>Drone</strong></see> ↓ (All Classes) /// <para>Wholly enthralled by Honey B. Lovely's charms and offering up life force as tribute.</para> /// </summary> Drone = 3921, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3922 = 3922, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3923"><strong>Infatuated</strong></see> ↓ (All Classes) /// <para>Suffering minor heart palpitations due to a growing fondness for Honey B. Lovely. Taking damage over time.</para> /// </summary> Infatuated_3923 = 3923, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3924"><strong>Head Over Heels</strong></see> ↓ (All Classes) /// <para>Suffering heart palpitations due to an attraction to Honey B. Lovely. Taking damage over time.</para> /// </summary> HeadOverHeels_3924 = 3924, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3925"><strong>Hopeless Devotion</strong></see> ↓ (All Classes) /// <para>Suffering severe heart palpitations due to undying affection for Honey B. Lovely. Taking damage over time.</para> /// </summary> HopelessDevotion_3925 = 3925, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3926"><strong>Honey Bee Mine</strong></see> ↓ (All Classes) /// <para>Taken in Honey B. Lovely's thrall and suffering from a dangerously high heart rate, causing damage over time.</para> /// </summary> HoneyBeeMine = 3926, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3931"><strong>Nine Lives</strong></see> ↑ (All Classes) /// <para>Actions performed will be remembered.</para> /// </summary> NineLives = 3931, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3934"><strong>Poison 'n' Pop</strong></see> ↓ (All Classes) /// <para>Poisoned by Honey B. Lovely. An explosion will be triggered when this effect expires.</para> /// </summary> PoisonNPop = 3934, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3935"><strong>Poison Resistance Down II</strong></see> ↓ (All Classes) /// <para>Poison resistance is significantly reduced.</para> /// </summary> PoisonResistanceDownIi = 3935, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3936"><strong>Queen Bee</strong></see> ↑ (All Classes) /// <para>Strengthened by a drone's life force.</para> /// </summary> QueenBee = 3936, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3937"><strong>Honeyed Charms</strong></see> ↑ (All Classes) /// <para>Weapon has been lovingly coated with a pheromone-laced venom.</para> /// </summary> HoneyedCharms = 3937, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3938"><strong>Times Three</strong></see> ↑ (All Classes) /// <para>The angle of effect for the next rotational attack executed will be tripled.</para> /// </summary> TimesThree_3938 = 3938, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3939"><strong>Times Five</strong></see> ↑ (All Classes) /// <para>The angle of effect for the next rotational attack executed will be quintupled.</para> /// </summary> TimesFive_3939 = 3939, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3940"><strong>Delayed Neurotoxicity</strong></see> ↓ (All Classes) /// <para>Poison spreads throughout the body, promising to paralyze after an allotted time has passed.</para> /// </summary> DelayedNeurotoxicity = 3940, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3941 = 3941, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3942 = 3942, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3943 = 3943, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3944 = 3944, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3945"><strong>Thunder of the Rroneek</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> ThunderOfTheRroneek = 3945, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3946"><strong>Turali Will</strong></see> ↑ (All Classes) /// <para>Impervious to most attacks.</para> /// </summary> TuraliWill = 3946, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3947 = 3947, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3948"><strong>Benoggined</strong></see> ↓ (All Classes) /// <para>Crowned with a weighty mascot noggin, reducing movement speed and inhibiting the use of actions.</para> /// </summary> Benoggined = 3948, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3949"><strong>Ghostly Guise</strong></see> ↑ (All Classes) /// <para>An incorporeal form is enabling you to pass through obstacles, but additional damage is taken from certain attacks.</para> /// </summary> GhostlyGuise = 3949, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3950"><strong>Nuisance</strong></see> ↓ (All Classes) /// <para>Causing trouble to others. Will be compelled to release Feather Ray's special attack when cast.</para> /// </summary> Nuisance = 3950, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3951"><strong>Heart of the Rroneek</strong></see> ↑ (All Classes) /// <para>A highly effective defensive maneuver is nullifying damage.</para> /// </summary> HeartOfTheRroneek = 3951, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3952"><strong>Rroneek's Favor</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> RroneeksFavor = 3952, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3953"><strong>Femme Fatale</strong></see> ↑ (All Classes) /// <para>Significantly strengthened by several drones' life force.</para> /// </summary> FemmeFatale = 3953, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3954"><strong>Heart of Tural</strong></see> ↑ (All Classes) /// <para>By the strength of immovable conviction, damage taken is reduced.</para> /// </summary> HeartOfTural = 3954, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3955"><strong>Tural's Embrace</strong></see> ↑ (All Classes) /// <para>By the blessing of the land, damage taken is reduced.</para> /// </summary> TuralsEmbrace = 3955, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3956"><strong>Eukrasia</strong></see> ↑ (All Classes) /// <para>Certain actions are being augmented.</para> /// </summary> Eukrasia_3956 = 3956, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3957"><strong>Vermedica II</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> VermedicaIi = 3957, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3958"><strong>Strengthening Stimulant</strong></see> ↑ (All Classes) /// <para>An alchemical tonic is granting preternatural strength. Physical abilities are greatly enhanced.</para> /// </summary> StrengtheningStimulant = 3958, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3959"><strong>Concentration Concentrate</strong></see> ↑ (All Classes) /// <para>An alchemical tonic is improving concentration. Spells cannot be interrupted by taking damage.</para> /// </summary> ConcentrationConcentrate = 3959, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3960"><strong>Mana Medication</strong></see> ↑ (All Classes) /// <para>An alchemical tonic is amplifying magical abilities. MP is recovering continuously over time.</para> /// </summary> ManaMedication = 3960, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3961"><strong>High Wire</strong></see> ↑ (All Classes) /// <para>Heightened excitement is causing actions to become erratic.</para> /// </summary> HighWire_3961 = 3961, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3962"><strong>Overmedicated</strong></see> ↓ (All Classes) /// <para>Experiencing debilitating side effects caused by tonic overdose.</para> /// </summary> Overmedicated = 3962, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3963"><strong>Paralysis</strong></see> ↓ (All Classes) /// <para>Deadened nerves are sometimes preventing the execution of actions.</para> /// </summary> Paralysis_3963 = 3963, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3964"><strong>Damage Down</strong></see> ↓ (All Classes) /// <para>Damage dealt is reduced.</para> /// </summary> DamageDown_3964 = 3964, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3965"><strong>Infirmity</strong></see> ↓ (All Classes) /// <para>HP recovery via healing magic is reduced.</para> /// </summary> Infirmity_3965 = 3965, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3966"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_3966 = 3966, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3967"><strong>HP Recovery Down</strong></see> ↓ (All Classes) /// <para>Rapid decomposition of the flesh is reducing HP recovery.</para> /// </summary> HpRecoveryDown_3967 = 3967, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3968"><strong>Delusions</strong></see> ↓ (All Classes) /// <para>Exposure to the Heartsting's toxins is causing hallucinations.</para> /// </summary> Delusions = 3968, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3969"><strong>Delusions</strong></see> ↓ (All Classes) /// <para>Exposure to the Heartsting's toxins is causing hallucinations.</para> /// </summary> Delusions_3969 = 3969, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3970 = 3970, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3971 = 3971, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3972"><strong>Ambitious Lure</strong></see> ↑ (All Classes) /// <para>Increased chance of landing large-sized fish. Chance increases with additional stacks. Ambitious Lure cannot be used after reaching 3 stacks.</para> /// </summary> AmbitiousLure = 3972, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3973"><strong>Modest Lure</strong></see> ↑ (All Classes) /// <para>Increased chance of landing small-sized fish. Chance increases with additional stacks. Modest Lure cannot be used after reaching 3 stacks.</para> /// </summary> ModestLure = 3973, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3974"><strong>Levitate</strong></see> ↑ (All Classes) /// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> /// </summary> Levitate = 3974, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3975"><strong>Damage Up</strong></see> ↑ (All Classes) /// <para>Damage dealt is increased.</para> /// </summary> DamageUp_3975 = 3975, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3976"><strong>Eukrasian Dosis III</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> EukrasianDosisIii_3976 = 3976, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3981"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3981 = 3981, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3982"><strong>Toxicosis</strong></see> ↓ (All Classes) /// <para>Toxins are causing damage over time.</para> /// </summary> Toxicosis_3982 = 3982, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3983"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_3983 = 3983, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3984"><strong>Temperance</strong></see> ↑ (All Classes) /// <para>Healing magic potency is increased.</para> /// </summary> Temperance_3984 = 3984, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3985"><strong>Temperance</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced.</para> /// </summary> Temperance_3985 = 3985, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3986"><strong>Medica III</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> MedicaIii_3986 = 3986, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3987"><strong>Medica III of the Seventh Dawn</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> MedicaIiiOfTheSeventhDawn = 3987, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3988"><strong>Neutral Sect</strong></see> ↑ (All Classes) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> NeutralSect_3988 = 3988, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3989"><strong>Macrocosmos</strong></see> ↑ (All Classes) /// <para>Restores HP when the astrologian who granted this effect executes Microcosmos.</para> /// </summary> Macrocosmos_3989 = 3989, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3996"><strong>On a Roll</strong></see> ↑ (All Classes) /// <para>Having a ball on a ball.</para> /// </summary> OnARoll = 3996, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3997"><strong>Concealed</strong></see> ↑ (All Classes) /// <para>Unable to be detected from a distance.</para> /// </summary> Concealed_3997 = 3997, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_3998 = 3998, + /// <summary> /// <see href="https://garlandtools.org/db/#status/3999"><strong>Electrical Condenser</strong></see> ↓ (All Classes) /// <para>Linked with electrope charging devices. Sparks will be discharged in an area of effect when this status expires, increasing in radius based on the amount of lightning attacks received.</para> /// </summary> ElectricalCondenser = 3999, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4000"><strong>Positron</strong></see> ↓ (All Classes) /// <para>Inflicted with a positive charge that will incur heavy damage when this effect expires. Taking damage from an effect of the opposite charge will remove this effect.</para> /// </summary> Positron = 4000, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4001"><strong>Negatron</strong></see> ↓ (All Classes) /// <para>Inflicted with a negative charge that will incur heavy damage when this effect expires. Taking damage from an effect of the opposite charge will remove this effect.</para> /// </summary> Negatron = 4001, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4002"><strong>Remote Current</strong></see> ↓ (All Classes) /// <para>Infused with lightning-aspected aether. The ally furthest from you will be targeted for an attack when this effect expires.</para> /// </summary> RemoteCurrent = 4002, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4003"><strong>Proximate Current</strong></see> ↓ (All Classes) /// <para>Infused with lightning-aspected aether. The ally closest to you will be targeted for an attack when this effect expires.</para> /// </summary> ProximateCurrent = 4003, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4004"><strong>Spinning Conductor</strong></see> ↓ (All Classes) /// <para>Infused with lightning-aspected aether. Will trigger a circular area of effect attack when this effect expires.</para> /// </summary> SpinningConductor = 4004, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4005"><strong>Roundhouse Conductor</strong></see> ↓ (All Classes) /// <para>Infused with lightning-aspected aether. Will trigger a ring-shaped area of effect attack when this effect expires.</para> /// </summary> RoundhouseConductor = 4005, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4006"><strong>Collider Conductor</strong></see> ↓ (All Classes) /// <para>Storing vast quantities of lightning-aspected aether, triggering a wide area of effect attack when this effect expires. Contact with certain attacks will remove this effect.</para> /// </summary> ColliderConductor = 4006, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4007"><strong>Mustard Bomb</strong></see> ↓ (All Classes) /// <para>A mustard bomb is affixed to the body and will detonate when this effect expires.</para> /// </summary> MustardBomb = 4007, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4008"><strong>Mustard Bombproof</strong></see> ↓ (All Classes) /// <para>Cannot be targeted by mustard bombs.</para> /// </summary> MustardBombproof = 4008, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4009"><strong>Inverse Operations</strong></see> ↑ (All Classes) /// <para>Prepared to systemically work backwards.</para> /// </summary> InverseOperations = 4009, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4010"><strong>Wandering Eyes</strong></see> ↑ (All Classes) /// <para>Cursing all who look away.</para> /// </summary> WanderingEyes = 4010, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4011"><strong>Chance of Wildfires</strong></see> ↑ (All Classes) /// <para>All are advised to prepare for fire-aspected damage.</para> /// </summary> ChanceOfWildfires = 4011, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4012"><strong>Chance of Hyperelectricity</strong></see> ↑ (All Classes) /// <para>All are advised to prepare for lightning-aspected damage.</para> /// </summary> ChanceOfHyperelectricity = 4012, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4013"><strong>Chance of Gale-force Winds</strong></see> ↑ (All Classes) /// <para>All are advised to prepare for wind-aspected damage.</para> /// </summary> ChanceOfGaleforceWinds = 4013, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4014"><strong>Chance of Blizzards</strong></see> ↑ (All Classes) /// <para>All are advised to prepare for ice-aspected damage.</para> /// </summary> ChanceOfBlizzards = 4014, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4015 = 4015, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4016 = 4016, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4017 = 4017, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4018 = 4018, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4019"><strong>Chain Deathmatch</strong></see> ↓ (All Classes) /// <para>Singled out for a deathmatch. Damage from opponent's first blow will be reduced; however, failing to receive a blow from said opponent before this effect expires will result in KO.</para> /// </summary> ChainDeathmatch = 4019, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4020"><strong>Bombarium</strong></see> ↓ (All Classes) /// <para>A highly combustible material has been affixed to the body, resulting in a KO when this effect expires. Contact with a sinister spark will trigger an explosion and remove this effect.</para> /// </summary> Bombarium = 4020, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4021"><strong>Doped</strong></see> ↑ (All Classes) /// <para>A performance-enhancing compound is amplifying physical strength. Damage dealt is increased.</para> /// </summary> Doped = 4021, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4022"><strong>Dangerously Doped</strong></see> ↑ (All Classes) /// <para>A performance-enhancing compound is greatly amplifying physical strength. Damage dealt is increased based on the number of stacks.</para> /// </summary> DangerouslyDoped = 4022, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4023"><strong>Doped and Detonative</strong></see> ↑ (All Classes) /// <para>A cocktail of performance-enhancing compounds is amplifying physical strength to an explosive degree.</para> /// </summary> DopedAndDetonative = 4023, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4024 = 4024, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4025 = 4025, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4026 = 4026, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4027 = 4027, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4028 = 4028, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4029"><strong>Left Windup</strong></see> ↑ (All Classes) /// <para>Ready to unleash a series of blows, starting with a leftward spin.</para> /// </summary> LeftWindup = 4029, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4030"><strong>Right Windup</strong></see> ↑ (All Classes) /// <para>Ready to unleash a series of blows, starting with a rightward spin.</para> /// </summary> RightWindup = 4030, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4031"><strong>Left Windup</strong></see> ↑ (All Classes) /// <para>Ready to unleash a series of blows, starting with a leftward spin.</para> /// </summary> LeftWindup_4031 = 4031, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4032"><strong>Right Windup</strong></see> ↑ (All Classes) /// <para>Ready to unleash a series of blows, starting with a rightward spin.</para> /// </summary> RightWindup_4032 = 4032, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4033"><strong>Shining Encouragement</strong></see> ↑ (All Classes) /// <para>Spurred on by Ceetol Ja's heartfelt support.</para> /// </summary> ShiningEncouragement = 4033, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4034"><strong>Unbroken Mettle</strong></see> ↑ (All Classes) /// <para>Protected by the Steelhog's magicked barrier.</para> /// </summary> UnbrokenMettle = 4034, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4035"><strong>Fractured Mettle</strong></see> ↑ (All Classes) /// <para>Protected by a damaged magicked barrier.</para> /// </summary> FracturedMettle = 4035, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4036"><strong>Rightward Fracture</strong></see> ↓ (All Classes) /// <para>Magicked barrier is cracking under pressure. Damage dealt from the right is greatly increased.</para> /// </summary> RightwardFracture = 4036, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4037"><strong>Leftward Fracture</strong></see> ↓ (All Classes) /// <para>Magicked barrier is cracking under pressure. Damage dealt from the left is greatly increased.</para> /// </summary> LeftwardFracture = 4037, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4039"><strong>Backward Fracture</strong></see> ↓ (All Classes) /// <para>Magicked barrier is cracking under pressure. Damage dealt from the rear is greatly increased.</para> /// </summary> BackwardFracture = 4039, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4040"><strong>Intersection</strong></see> ↑ (All Classes) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> Intersection_4040 = 4040, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4041"><strong>Balance Drawn</strong></see> ↑ (All Classes) /// <para>The Balance card is drawn.</para> /// </summary> BalanceDrawn_4041 = 4041, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4042"><strong>Bole Drawn</strong></see> ↑ (All Classes) /// <para>The Bole card is drawn.</para> /// </summary> BoleDrawn_4042 = 4042, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4043"><strong>Arrow Drawn</strong></see> ↑ (All Classes) /// <para>The Arrow card is drawn.</para> /// </summary> ArrowDrawn_4043 = 4043, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4044"><strong>Spear Drawn</strong></see> ↑ (All Classes) /// <para>The Spear card is drawn.</para> /// </summary> SpearDrawn_4044 = 4044, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4045"><strong>Ewer Drawn</strong></see> ↑ (All Classes) /// <para>The Ewer card is drawn.</para> /// </summary> EwerDrawn_4045 = 4045, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4046"><strong>Spire Drawn</strong></see> ↑ (All Classes) /// <para>The Spire card is drawn.</para> /// </summary> SpireDrawn_4046 = 4046, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4047"><strong>Projection</strong></see> ↓ (All Classes) /// <para>Zoraal Ja's will is being projected upon you. Contact with specific flows of aether will provoke an attack.</para> /// </summary> Projection = 4047, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4048"><strong>One-two Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive One-two Paw.</para> /// </summary> OnetwoMemory = 4048, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4049"><strong>Four-crossed Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive Quadruple Crossing.</para> /// </summary> FourcrossedMemory = 4049, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4050"><strong>Rightward Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive movement to the right.</para> /// </summary> RightwardMemory = 4050, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4051"><strong>Leftward Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive movement to the left.</para> /// </summary> LeftwardMemory = 4051, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4052"><strong>Four-swipe Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive Quadruple Swipe.</para> /// </summary> FourswipeMemory = 4052, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4053"><strong>Two-swipe Memory</strong></see> ↑ (All Classes) /// <para>Prepared to relive Double Swipe.</para> /// </summary> TwoswipeMemory = 4053, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4054 = 4054, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4055 = 4055, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4056 = 4056, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4057 = 4057, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4058 = 4058, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4059 = 4059, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4060 = 4060, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4061 = 4061, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4062 = 4062, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4063 = 4063, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4065"><strong>The Narwhal's Lullaby</strong></see> ↓ (All Classes) /// <para>The sacred treasure is inducing a deep slumber.</para> /// </summary> TheNarwhalsLullaby = 4065, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4066"><strong>The Narwhal's Lullaby</strong></see> ↓ (All Classes) /// <para>The sacred treasure is inducing a deep slumber.</para> /// </summary> TheNarwhalsLullaby_4066 = 4066, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4067"><strong>Wide-eyed</strong></see> ↑ (All Classes) /// <para>Tentoawa is driving away the tendrils of sleep.</para> /// </summary> Wideeyed = 4067, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4068"><strong>Bleeding</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> Bleeding_4068 = 4068, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4069 = 4069, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4070 = 4070, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4071"><strong>Positive Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a positive magnetic charge.</para> /// </summary> PositiveCharge_4071 = 4071, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4072"><strong>Negative Charge</strong></see> ↓ (All Classes) /// <para>Exhibiting a negative magnetic charge.</para> /// </summary> NegativeCharge_4072 = 4072, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4073"><strong>Revised to Wildfires</strong></see> ↑ (All Classes) /// <para>Apologies for the error. All are advised to prepare for fire-aspected damage.</para> /// </summary> RevisedToWildfires = 4073, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4074"><strong>Revised to Blizzards</strong></see> ↑ (All Classes) /// <para>Apologies for the error. All are advised to prepare for ice-aspected damage.</para> /// </summary> RevisedToBlizzards = 4074, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4075"><strong>Revised to Hyperelectricity</strong></see> ↑ (All Classes) /// <para>Apologies for the error. All are advised to prepare for lightning-aspected damage.</para> /// </summary> RevisedToHyperelectricity = 4075, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4076"><strong>Revised to Gale-force Winds</strong></see> ↑ (All Classes) /// <para>Apologies for the error. All are advised to prepare for wind-aspected damage.</para> /// </summary> RevisedToGaleforceWinds = 4076, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4094"><strong>Reawakened</strong></see> ↑ (VPR) -/// <para>Tapped into the strength of your hunter forebears.</para> +/// <para></para> /// </summary> -Reawakened_4094 = 4094, +UnnamedStatus_4077 = 4077, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4095"><strong>Slither</strong></see> ↑ (VPR) -/// <para>Movement speed is increased.</para> +/// <para></para> /// </summary> -Slither = 4095, +UnnamedStatus_4078 = 4078, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4096"><strong>Hardened Scales</strong></see> ↑ (VPR) -/// <para>Though unable to move, damage taken is reduced. All Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, knockback, and draw-in effects are nullified.</para> +/// <para></para> /// </summary> -HardenedScales = 4096, +UnnamedStatus_4079 = 4079, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4097"><strong>Armored Scales</strong></see> ↑ (VPR) -/// <para>A magicked barrier is nullifying damage.</para> +/// <para></para> /// </summary> -ArmoredScales = 4097, +UnnamedStatus_4080 = 4080, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4098"><strong>Snake's Bane</strong></see> ↑ (VPR) -/// <para>Backlash is upgraded to Furious Backlash.</para> +/// <para></para> /// </summary> -SnakesBane = 4098, +UnnamedStatus_4081 = 4081, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4099"><strong>Noxious Gnash</strong></see> ↓ (VPR) -/// <para>Damage taken from the viper who applied this effect is increased.</para> +/// <para></para> /// </summary> -NoxiousGnash_4099 = 4099, +UnnamedStatus_4082 = 4082, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4100"><strong>Aetherhues</strong></see> ↑ (PCT) -/// <para>Able to cast green and yellow magicks.</para> +/// <para></para> /// </summary> -Aetherhues_4100 = 4100, +UnnamedStatus_4083 = 4083, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4101"><strong>Aetherhues II</strong></see> ↑ (PCT) -/// <para>Able to cast blue and magenta magicks.</para> +/// <para></para> /// </summary> -AetherhuesIi_4101 = 4101, +UnnamedStatus_4084 = 4084, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4102"><strong>Subtractive Palette</strong></see> ↑ (PCT) -/// <para>The properties of your pictomancy spells have changed.</para> +/// <para></para> /// </summary> -SubtractivePalette_4102 = 4102, +UnnamedStatus_4085 = 4085, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4103"><strong>Moogle Portrait</strong></see> ↑ (PCT) -/// <para>Able to execute Mog of the Ages.</para> +/// <para></para> /// </summary> -MooglePortrait = 4103, +UnnamedStatus_4086 = 4086, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4104"><strong>Madeen Portrait</strong></see> ↑ (PCT) -/// <para>Able to execute Retribution of the Madeen.</para> +/// <para></para> /// </summary> -MadeenPortrait = 4104, +UnnamedStatus_4087 = 4087, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4105"><strong>Pom Motif</strong></see> ↑ (PCT) -/// <para>Able to execute Pom Muse.</para> +/// <para></para> /// </summary> -PomMotif = 4105, +UnnamedStatus_4088 = 4088, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4106"><strong>Wing Motif</strong></see> ↑ (PCT) -/// <para>Able to execute Winged Muse.</para> +/// <para></para> /// </summary> -WingMotif = 4106, +UnnamedStatus_4089 = 4089, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4107"><strong>Claw Motif</strong></see> ↑ (PCT) -/// <para>Able to execute Clawed Muse.</para> +/// <para></para> /// </summary> -ClawMotif = 4107, +UnnamedStatus_4090 = 4090, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4108"><strong>Maw Motif</strong></see> ↑ (PCT) +/// <para></para> +/// </summary> +UnnamedStatus_4091 = 4091, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4092 = 4092, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4093 = 4093, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4094"><strong>Reawakened</strong></see> ↑ (VPR) +/// <para>Tapped into the strength of your hunter forebears.</para> +/// </summary> +Reawakened_4094 = 4094, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4095"><strong>Slither</strong></see> ↑ (VPR) +/// <para>Movement speed is increased.</para> +/// </summary> +Slither = 4095, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4096"><strong>Hardened Scales</strong></see> ↑ (VPR) +/// <para>Though unable to move, damage taken is reduced. All Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, knockback, and draw-in effects are nullified.</para> +/// </summary> +HardenedScales = 4096, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4097"><strong>Armored Scales</strong></see> ↑ (VPR) +/// <para>A magicked barrier is nullifying damage.</para> +/// </summary> +ArmoredScales = 4097, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4098"><strong>Snake's Bane</strong></see> ↑ (VPR) +/// <para>Backlash is upgraded to Furious Backlash.</para> +/// </summary> +SnakesBane = 4098, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4099"><strong>Noxious Gnash</strong></see> ↓ (VPR) +/// <para>Damage taken from the viper who applied this effect is increased.</para> +/// </summary> +NoxiousGnash_4099 = 4099, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4100"><strong>Aetherhues</strong></see> ↑ (PCT) +/// <para>Able to cast green and yellow magicks.</para> +/// </summary> +Aetherhues_4100 = 4100, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4101"><strong>Aetherhues II</strong></see> ↑ (PCT) +/// <para>Able to cast blue and magenta magicks.</para> +/// </summary> +AetherhuesIi_4101 = 4101, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4102"><strong>Subtractive Palette</strong></see> ↑ (PCT) +/// <para>The properties of your pictomancy spells have changed.</para> +/// </summary> +SubtractivePalette_4102 = 4102, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4103"><strong>Moogle Portrait</strong></see> ↑ (PCT) +/// <para>Able to execute Mog of the Ages.</para> +/// </summary> +MooglePortrait = 4103, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4104"><strong>Madeen Portrait</strong></see> ↑ (PCT) +/// <para>Able to execute Retribution of the Madeen.</para> +/// </summary> +MadeenPortrait = 4104, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4105"><strong>Pom Motif</strong></see> ↑ (PCT) +/// <para>Able to execute Pom Muse.</para> +/// </summary> +PomMotif = 4105, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4106"><strong>Wing Motif</strong></see> ↑ (PCT) +/// <para>Able to execute Winged Muse.</para> +/// </summary> +WingMotif = 4106, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4107"><strong>Claw Motif</strong></see> ↑ (PCT) +/// <para>Able to execute Clawed Muse.</para> +/// </summary> +ClawMotif = 4107, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4108"><strong>Maw Motif</strong></see> ↑ (PCT) /// <para>Able to execute Fanged Muse.</para> /// </summary> MawMotif = 4108, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4109"><strong>Pom Muse</strong></see> ↑ (PCT) /// <para>Damage dealt and potency of HP restoration actions are increased.</para> /// </summary> PomMuse = 4109, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4110"><strong>Winged Muse</strong></see> ↑ (PCT) /// <para>Spell cast and recast time are reduced. Movement speed is also increased.</para> /// </summary> WingedMuse = 4110, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4111"><strong>Clawed Muse</strong></see> ↓ (PCT) /// <para>Damage taken is increased while HP recovered via healing actions is reduced.</para> /// </summary> ClawedMuse = 4111, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4112"><strong>Fanged Muse</strong></see> ↓ (PCT) /// <para>Sustaining damage over time.</para> /// </summary> FangedMuse = 4112, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4113"><strong>Smudge</strong></see> ↑ (PCT) /// <para>Movement speed is increased.</para> /// </summary> Smudge_4113 = 4113, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4114"><strong>Tempera Coat</strong></see> ↑ (PCT) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> TemperaCoat_4114 = 4114, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4115"><strong>Tempera Grassa</strong></see> ↑ (PCT) /// <para>A magicked barrier is nullifying damage.</para> /// </summary> TemperaGrassa_4115 = 4115, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4116"><strong>Advent of Chocobastion</strong></see> ↑ (PCT) /// <para>Manifesting an area of protection.</para> /// </summary> AdventOfChocobastion = 4116, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4117"><strong>Chocobastion</strong></see> ↑ (PCT) /// <para>Damage taken is reduced while HP recovered via healing actions is increased.</para> /// </summary> Chocobastion = 4117, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4118"><strong>Starstruck</strong></see> ↑ (PCT) /// <para>Able to execute Star Prism.</para> /// </summary> Starstruck_4118 = 4118, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4119"><strong>Star Prism</strong></see> ↑ (PCT) /// <para>Damage dealt is increased.</para> /// </summary> StarPrism_4119 = 4119, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4120"><strong>Hunter's Instinct</strong></see> ↑ (VPR) /// <para>Damage dealt is increased.</para> /// </summary> HuntersInstinct_4120 = 4120, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4121"><strong>Swiftscaled</strong></see> ↑ (VPR) /// <para>Weaponskill recast time is reduced.</para> /// </summary> Swiftscaled_4121 = 4121, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4122"><strong>Perpetual Conflagration</strong></see> ↓ (All Classes) /// <para>Valigarmanda's flames are slowly consuming you, causing damage over time and increasing damage taken. This effect will not expire until Valigarmanda is defeated.</para> /// </summary> PerpetualConflagration = 4122, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4123"><strong>Life Siphon</strong></see> ↑ (All Classes) /// <para>Attacks generate HP equal to the amount of damage dealt.</para> /// </summary> LifeSiphon = 4123, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4124"><strong>Pom Sketch</strong></see> ↑ (PCT) /// <para>Able to execute Pom Motif.</para> /// </summary> PomSketch = 4124, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4125"><strong>Wing Sketch</strong></see> ↑ (PCT) /// <para>Able to execute Wing Motif.</para> /// </summary> WingSketch = 4125, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4126"><strong>Claw Sketch</strong></see> ↑ (PCT) /// <para>Able to execute Claw Motif.</para> /// </summary> ClawSketch = 4126, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4127"><strong>Maw Sketch</strong></see> ↑ (PCT) /// <para>Able to execute Maw Motif.</para> /// </summary> MawSketch = 4127, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4128"><strong>Dreamwoven Mimicry</strong></see> ↑ (All Classes) /// <para>Mimicking the form of another through the power of the Dreamweave Cocoon.</para> /// </summary> DreamwovenMimicry = 4128, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4129"><strong>Dawn's Resolve</strong></see> ↑ (All Classes) /// <para>Inspired by Wuk Lamat's unyielding will and defying all mortal limits.</para> /// </summary> DawnsResolve = 4129, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4130"><strong>Authority's Hold</strong></see> ↓ (All Classes) /// <para>Under Absolute Authority. Any movement when effect wears off will result in detonation.</para> /// </summary> AuthoritysHold = 4130, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4131 = 4131, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4132"><strong>Down for the Count</strong></see> ↓ (All Classes) /// <para>Unable to move or execute actions.</para> /// </summary> DownForTheCount_4132 = 4132, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4133"><strong>Haste</strong></see> ↑ (All Classes) /// <para>Weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay are reduced.</para> /// </summary> Haste_4133 = 4133, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4134"><strong>Honor's Accord</strong></see> ↑ (All Classes) /// <para>Taking an honorable battle stance that will affect the next attack.</para> /// </summary> HonorsAccord = 4134, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4136"><strong>Aetherstock</strong></see> ↑ (All Classes) /// <para>Storing elemental aether in the body. The aether is released upon attacking.</para> /// </summary> Aetherstock = 4136, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4137 = 4137, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4138 = 4138, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4139"><strong>Ghostly Guise</strong></see> ↑ (All Classes) /// <para>An incorporeal form is enabling you to pass through obstacles, but additional damage is taken from certain attacks.</para> /// </summary> GhostlyGuise_4139 = 4139, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4140"><strong>Boiling</strong></see> ↓ (All Classes) /// <para>Body is slowly heating up. Will become Pyretic when this effect expires.</para> /// </summary> Boiling_4140 = 4140, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4141"><strong>Heatstroke</strong></see> ↓ (All Classes) /// <para>Body heat is being manipulated. Will become Pyretic when this effect expires.</para> /// </summary> Heatstroke = 4141, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4142"><strong>Cold Sweats</strong></see> ↓ (All Classes) /// <para>Body heat is being manipulated. Will freeze up when this effect expires.</para> /// </summary> ColdSweats = 4142, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4143"><strong>Top of the Hive</strong></see> ↑ (All Classes) /// <para>Honey B. Lovely is stealing the spotlight.</para> /// </summary> TopOfTheHive = 4143, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4144"><strong>Acceleration Bomb</strong></see> ↓ (All Classes) /// <para>An acceleration-trigger explosive is affixed to the body. Any movement when effect wears off will result in detonation.</para> /// </summary> AccelerationBomb_4144 = 4144, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4145"><strong>Rotten Honey</strong></see> ↑ (All Classes) /// <para>Honey B. Lovely is showing her true colors.</para> /// </summary> RottenHoney = 4145, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4146 = 4146, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4147"><strong>Bee Be Gone</strong></see> ↑ (All Classes) /// <para>Unbridled rage is increasing damage dealt. Standing too close will provoke an attack.</para> /// </summary> BeeBeGone = 4147, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4148"><strong>Bee Be Here</strong></see> ↑ (All Classes) /// <para>Unbridled rage is increasing damage dealt. Standing too far away will provoke an attack.</para> /// </summary> BeeBeHere = 4148, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4149"><strong>Sustained Damage</strong></see> ↓ (All Classes) /// <para>Sustaining damage over time.</para> /// </summary> SustainedDamage_4149 = 4149, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4150"><strong>Deep Freeze</strong></see> ↓ (All Classes) /// <para>Your body is encased in ice, preventing action and dealing damage over time.</para> /// </summary> DeepFreeze_4150 = 4150, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4151"><strong>Leftward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the left.</para> /// </summary> LeftwardOmen = 4151, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4152"><strong>Rightward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the right.</para> /// </summary> RightwardOmen = 4152, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4153"><strong>Forward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the front.</para> /// </summary> ForwardOmen = 4153, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4154"><strong>Rearward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the rear.</para> /// </summary> RearwardOmen = 4154, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4155"><strong>Leftward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the left.</para> /// </summary> LeftwardOmen_4155 = 4155, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4156"><strong>Rightward Omen</strong></see> ↑ (All Classes) /// <para>The next attack will be executed from the right.</para> /// </summary> RightwardOmen_4156 = 4156, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4157"><strong>_rsv_4157_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4157_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41571100S74Cfc3B0E74Cfc3B0 = 4157, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4158"><strong>_rsv_4158_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4158_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41581100S74Cfc3B0E74Cfc3B0 = 4158, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4159"><strong>_rsv_4159_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4159_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41591100S74Cfc3B0E74Cfc3B0 = 4159, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4160"><strong>_rsv_4160_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4160_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41601100S74Cfc3B0E74Cfc3B0 = 4160, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4161"><strong>_rsv_4161_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4161_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41611100S74Cfc3B0E74Cfc3B0 = 4161, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4162"><strong>Physical Vulnerability Up</strong></see> ↓ (All Classes) /// <para>Physical damage taken is increased.</para> /// </summary> PhysicalVulnerabilityUp_4162 = 4162, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4163"><strong>Stun</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> Stun_4163 = 4163, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4164"><strong>Light Resistance Down II</strong></see> ↓ (All Classes) /// <para>Light resistance is significantly reduced.</para> /// </summary> LightResistanceDownIi = 4164, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4165"><strong>_rsv_4165_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4165_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41651100S74Cfc3B0E74Cfc3B0 = 4165, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4166"><strong>_rsv_4166_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4166_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41661100S74Cfc3B0E74Cfc3B0 = 4166, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4167 = 4167, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4168"><strong>Rampart</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced and HP recovery via healing actions is increased.</para> /// </summary> Rampart_4168 = 4168, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4169"><strong>Rroneek Pulse</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced and HP recovery via healing actions is increased.</para> /// </summary> RroneekPulse_4169 = 4169, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4170"><strong>Blood of the Br'aax</strong></see> ↑ (All Classes) /// <para>Damage taken is reduced while inflicting a portion of sustained damage back to its source.</para> /// </summary> BloodOfTheBraax = 4170, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4171"><strong>_rsv_4171_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4171_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41711100S74Cfc3B0E74Cfc3B0 = 4171, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4172"><strong>_rsv_4172_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4172_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41721100S74Cfc3B0E74Cfc3B0 = 4172, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4173"><strong>Adamant Scales</strong></see> ↓ (All Classes) /// <para>Protected by a nigh-impenetrable hide.</para> /// </summary> AdamantScales = 4173, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4175"><strong>Burning Ward</strong></see> ↑ (All Classes) /// <para>Invulnerable to all damage. Contact with a spirit of flame will result in an eruption of fire.</para> /// </summary> BurningWard = 4175, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4177"><strong>_rsv_4177_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4177_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41771100S74Cfc3B0E74Cfc3B0 = 4177, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4178"><strong>_rsv_4178_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4178_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41781100S74Cfc3B0E74Cfc3B0 = 4178, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4179"><strong>Veil of Darkness</strong></see> ↑ (All Classes) /// <para>Accumulating magic in cumulus shroud.</para> /// </summary> VeilOfDarkness = 4179, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4180"><strong>_rsv_4180_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↑ (All Classes) /// <para>_rsv_4180_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41801100S74Cfc3B0E74Cfc3B0 = 4180, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4181"><strong>_rsv_4181_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↓ (All Classes) /// <para>_rsv_4181_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41811100S74Cfc3B0E74Cfc3B0 = 4181, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4182"><strong>_rsv_4182_-1_1_0_0_S74CFC3B0_E74CFC3B0</strong></see> ↑ (All Classes) /// <para>_rsv_4182_-1_1_1_0_S74CFC3B0_E74CFC3B0</para> /// </summary> Rsv41821100S74Cfc3B0E74Cfc3B0 = 4182, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4183"><strong>In Training</strong></see> ↑ (All Classes) /// <para>Incoming attacks will not reduce HP below 1.</para> /// </summary> InTraining = 4183, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4184"><strong>Spiteful Flames</strong></see> ↓ (All Classes) /// <para>Marked by fiery wrath and sustaining damage over time.</para> /// </summary> SpitefulFlames = 4184, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4185"><strong>Bonds of Loathing</strong></see> ↓ (All Classes) /// <para>Unable to execute actions.</para> /// </summary> BondsOfLoathing = 4185, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4186"><strong>Authority's Expansion</strong></see> ↓ (All Classes) /// <para>Under Absolute Authority. Deputized to unleash a spreading explosion when this effect expires.</para> /// </summary> AuthoritysExpansion = 4186, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4187"><strong>Authority's Boot</strong></see> ↓ (All Classes) /// <para>Under Absolute Authority. Deputized to unleash a massive explosion when this effect expires.</para> /// </summary> AuthoritysBoot = 4187, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4188"><strong>Authority's Heel</strong></see> ↓ (All Classes) /// <para>Under Absolute Authority. Deputized to unleash an explosion when this effect expires.</para> /// </summary> AuthoritysHeel = 4188, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4189"><strong>East Wind of Change</strong></see> ↓ (All Classes) /// <para>Will be struck by a gust from the east when this effect expires.</para> /// </summary> EastWindOfChange = 4189, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4190"><strong>West Wind of Change</strong></see> ↓ (All Classes) /// <para>Will be struck by a gust from the west when this effect expires.</para> /// </summary> WestWindOfChange = 4190, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4191"><strong>Rehabilitation</strong></see> ↑ (All Classes) /// <para>Regenerating HP over time.</para> /// </summary> Rehabilitation_4191 = 4191, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4192"><strong>Epic Hero</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle.</para> /// </summary> EpicHero = 4192, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4193"><strong>Epic Villain</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle. Damage from those who have not been dubbed Epic Hero is nullified.</para> /// </summary> EpicVillain = 4193, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4194"><strong>Fated Hero</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle.</para> /// </summary> FatedHero = 4194, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4195"><strong>Fated Villain</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle. Damage from those who have not been dubbed Fated Hero is nullified.</para> /// </summary> FatedVillain = 4195, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4196"><strong>Vaunted Hero</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle.</para> /// </summary> VauntedHero = 4196, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4197"><strong>Vaunted Villain</strong></see> ↓ (All Classes) /// <para>Dueling in a decisive battle. Damage from those who have not been dubbed Vaunted Hero is nullified.</para> /// </summary> VauntedVillain = 4197, + /// <summary> /// <see href="https://garlandtools.org/db/#status/4198"><strong>Mighty Strikes</strong></see> ↑ (All Classes) /// <para>While this effect is active, all melee attacks result in critical hits.</para> /// </summary> MightyStrikes = 4198, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4210"><strong>Amnesia</strong></see> ↓ (All Classes) -/// <para>Unable to use abilities.</para> +/// <para></para> /// </summary> -Amnesia_4210 = 4210, +UnnamedStatus_4199 = 4199, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4216"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) -/// <para>Able to execute Tsubame-gaeshi.</para> +/// <para></para> /// </summary> -Tsubamegaeshi = 4216, +UnnamedStatus_4200 = 4200, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4217"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) -/// <para>Able to execute Tsubame-gaeshi.</para> +/// <para></para> /// </summary> -Tsubamegaeshi_4217 = 4217, +UnnamedStatus_4201 = 4201, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4218"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) -/// <para>Able to execute Tsubame-gaeshi.</para> +/// <para></para> /// </summary> -Tsubamegaeshi_4218 = 4218, +UnnamedStatus_4202 = 4202, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4219"><strong>Levitation</strong></see> ↑ (All Classes) -/// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> +/// <para></para> /// </summary> -Levitation_4219 = 4219, +UnnamedStatus_4203 = 4203, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4281"><strong>Supplication Ready</strong></see> ↑ (PLD) -/// <para>Able to execute Supplication.</para> +/// <para></para> /// </summary> -SupplicationReady_4281 = 4281, +UnnamedStatus_4204 = 4204, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4282"><strong>Sepulchre Ready</strong></see> ↑ (PLD) -/// <para>Able to execute Sepulchre.</para> +/// <para></para> /// </summary> -SepulchreReady_4282 = 4282, +UnnamedStatus_4205 = 4205, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4283"><strong>Shield Smite</strong></see> ↓ (PLD) -/// <para>Damage taken is increased.</para> +/// <para></para> /// </summary> -ShieldSmite = 4283, +UnnamedStatus_4206 = 4206, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4284"><strong>Inner Chaos Ready</strong></see> ↑ (WAR) -/// <para>Able to execute Inner Chaos.</para> +/// <para></para> /// </summary> -InnerChaosReady = 4284, +UnnamedStatus_4207 = 4207, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4285"><strong>Primal Ruination Ready</strong></see> ↑ (WAR) -/// <para>Able to execute Primal Ruination.</para> +/// <para></para> /// </summary> -PrimalRuinationReady_4285 = 4285, +UnnamedStatus_4209 = 4209, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4286"><strong>Wrathful</strong></see> ↑ (WAR) -/// <para>Able to execute Primal Wrath.</para> +/// <see href="https://garlandtools.org/db/#status/4210"><strong>Amnesia</strong></see> ↓ (All Classes) +/// <para>Unable to use abilities.</para> /// </summary> -Wrathful_4286 = 4286, -/// <summary> +Amnesia_4210 = 4210, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4211 = 4211, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4212 = 4212, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4213 = 4213, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4214 = 4214, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4215 = 4215, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4216"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) +/// <para>Able to execute Tsubame-gaeshi.</para> +/// </summary> +Tsubamegaeshi = 4216, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4217"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) +/// <para>Able to execute Tsubame-gaeshi.</para> +/// </summary> +Tsubamegaeshi_4217 = 4217, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4218"><strong>Tsubame-gaeshi</strong></see> ↑ (SAM) +/// <para>Able to execute Tsubame-gaeshi.</para> +/// </summary> +Tsubamegaeshi_4218 = 4218, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4219"><strong>Levitation</strong></see> ↑ (All Classes) +/// <para>Floating several ilms off the ground, defying the universal laws of gravity.</para> +/// </summary> +Levitation_4219 = 4219, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4220 = 4220, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4221 = 4221, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4222 = 4222, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4223 = 4223, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4224 = 4224, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4225 = 4225, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4226 = 4226, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4227 = 4227, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4228 = 4228, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4229 = 4229, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4230 = 4230, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4231 = 4231, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4232 = 4232, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4233 = 4233, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4234 = 4234, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4235 = 4235, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4236 = 4236, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4237 = 4237, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4238 = 4238, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4239 = 4239, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4240 = 4240, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4241 = 4241, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4242 = 4242, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4243 = 4243, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4244 = 4244, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4245 = 4245, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4246 = 4246, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4247 = 4247, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4248 = 4248, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4249 = 4249, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4250 = 4250, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4251 = 4251, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4252 = 4252, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4253 = 4253, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4254 = 4254, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4255 = 4255, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4256 = 4256, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4257 = 4257, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4258 = 4258, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4259 = 4259, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4260 = 4260, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4261 = 4261, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4262 = 4262, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4263 = 4263, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4264 = 4264, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4265 = 4265, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4266 = 4266, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4267 = 4267, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4268 = 4268, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4269 = 4269, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4270 = 4270, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4271 = 4271, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4272 = 4272, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4273 = 4273, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4274 = 4274, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4275 = 4275, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4276 = 4276, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4277 = 4277, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4278 = 4278, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4279 = 4279, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4280 = 4280, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4281"><strong>Supplication Ready</strong></see> ↑ (PLD) +/// <para>Able to execute Supplication.</para> +/// </summary> +SupplicationReady_4281 = 4281, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4282"><strong>Sepulchre Ready</strong></see> ↑ (PLD) +/// <para>Able to execute Sepulchre.</para> +/// </summary> +SepulchreReady_4282 = 4282, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4283"><strong>Shield Smite</strong></see> ↓ (PLD) +/// <para>Damage taken is increased.</para> +/// </summary> +ShieldSmite = 4283, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4284"><strong>Inner Chaos Ready</strong></see> ↑ (WAR) +/// <para>Able to execute Inner Chaos.</para> +/// </summary> +InnerChaosReady = 4284, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4285"><strong>Primal Ruination Ready</strong></see> ↑ (WAR) +/// <para>Able to execute Primal Ruination.</para> +/// </summary> +PrimalRuinationReady_4285 = 4285, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4286"><strong>Wrathful</strong></see> ↑ (WAR) +/// <para>Able to execute Primal Wrath.</para> +/// </summary> +Wrathful_4286 = 4286, + +/// <summary> /// <see href="https://garlandtools.org/db/#status/4287"><strong>Burgeoning Fury</strong></see> ↑ (WAR) /// <para>Fury is building within you. At 3 stacks, effect changes to Wrathful, allowing you to execute Primal Wrath.</para> /// </summary> -BurgeoningFury_4287 = 4287, +BurgeoningFury_4287 = 4287, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4288"><strong>Comeuppance Ready</strong></see> ↑ (DRK) +/// <para>Able to execute Comeuppance while under the effect of Blackblood.</para> +/// </summary> +ComeuppanceReady = 4288, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4289"><strong>Torcleaver Ready</strong></see> ↑ (DRK) +/// <para>Able to execute Torcleaver while under the effect of Blackblood.</para> +/// </summary> +TorcleaverReady = 4289, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4290"><strong>Scorn</strong></see> ↑ (DRK) +/// <para>Able to execute Disesteem.</para> +/// </summary> +Scorn_4290 = 4290, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4293"><strong>Ready to Raze</strong></see> ↑ (GNB) +/// <para>Able to execute Fated Brand.</para> +/// </summary> +ReadyToRaze_4293 = 4293, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4294"><strong>Fated Brand</strong></see> ↑ (GNB) +/// <para>A magicked barrier is nullifying damage.</para> +/// </summary> +FatedBrand = 4294, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4295"><strong>Heart of Corundum</strong></see> ↑ (GNB) +/// <para>Damage taken is reduced.</para> +/// </summary> +HeartOfCorundum_4295 = 4295, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4296"><strong>Catharsis of Corundum</strong></see> ↑ (GNB) +/// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> +/// </summary> +CatharsisOfCorundum_4296 = 4296, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4301"><strong>Fire's Rumination</strong></see> ↑ (MNK) +/// <para>Able to execute Fire's Reply.</para> +/// </summary> +FiresRumination_4301 = 4301, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4302"><strong>Starcross Ready</strong></see> ↑ (DRG) +/// <para>Able to execute Starcross.</para> +/// </summary> +StarcrossReady_4302 = 4302, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4303"><strong>Dokumori</strong></see> ↓ (NIN) +/// <para>Damage taken is increased.</para> +/// </summary> +Dokumori_4303 = 4303, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4304"><strong>Doton</strong></see> ↑ (NIN) +/// <para>Damage taken is reduced.</para> +/// </summary> +Doton_4304 = 4304, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4305"><strong>Zesho Meppo Ready</strong></see> ↑ (NIN) +/// <para>Able to execute Zesho Meppo.</para> +/// </summary> +ZeshoMeppoReady = 4305, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4306"><strong>Debana</strong></see> ↓ (SAM) +/// <para>Damage taken from the samurai who applied this effect is increased.</para> +/// </summary> +Debana = 4306, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4307"><strong>Executioner's Guillotine Ready</strong></see> ↑ (RPR) +/// <para>Able to execute Executioner's Guillotine.</para> +/// </summary> +ExecutionersGuillotineReady = 4307, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4308"><strong>Death Warrant</strong></see> ↑ (RPR) +/// <para>Currently afflicting an enemy with Death Warrant.</para> +/// </summary> +DeathWarrant_4308 = 4308, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4309"><strong>Perfectio Parata</strong></see> ↑ (RPR) +/// <para>Able to execute Perfectio.</para> +/// </summary> +PerfectioParata_4309 = 4309, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4310 = 4310, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4311 = 4311, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4312"><strong>Encore of Light Ready</strong></see> ↑ (BRD) +/// <para>Able to execute Encore of Light.</para> +/// </summary> +EncoreOfLightReady = 4312, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4313"><strong>Solo Step</strong></see> ↑ (DNC) +/// <para>Next Saber Dance will be upgraded to Dance of the Dawn.</para> +/// </summary> +SoloStep = 4313, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4314"><strong>Dance of the Dawn</strong></see> ↑ (DNC) +/// <para>Limit gauge is gradually filling.</para> +/// </summary> +DanceOfTheDawn = 4314, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4315"><strong>Wreath of Fire</strong></see> ↑ (BLM) +/// <para>Certain actions are dealing additional damage to target and nearby enemies.</para> +/// </summary> +WreathOfFire = 4315, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4316"><strong>Wreath of Ice</strong></see> ↑ (BLM) +/// <para>Damage taken is reduced while countering attacks.</para> +/// </summary> +WreathOfIce = 4316, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4317"><strong>Elemental Star</strong></see> ↑ (BLM) +/// <para>Able to execute Flare Star and Frost Star.</para> +/// </summary> +ElementalStar = 4317, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4319"><strong>Scorch</strong></see> ↓ (RDM) +/// <para>Sustaining damage over time.</para> +/// </summary> +Scorch = 4319, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4320"><strong>Forte</strong></see> ↑ (RDM) +/// <para>Damage taken is reduced, and a magicked barrier is nullifying damage.</para> +/// </summary> +Forte = 4320, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4321"><strong>Thorned Flourish</strong></see> ↑ (RDM) +/// <para>Able to execute Vice of Thorns.</para> +/// </summary> +ThornedFlourish_4321 = 4321, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4322"><strong>Prefulgence Ready</strong></see> ↑ (RDM) +/// <para>Able to execute Prefulgence.</para> +/// </summary> +PrefulgenceReady_4322 = 4322, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4324"><strong>Quick Sketch</strong></see> ↑ (PCT) +/// <para>Next motif is rendered instantly.</para> +/// </summary> +QuickSketch = 4324, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4326"><strong>Sacred Sight</strong></see> ↑ (WHM) +/// <para>Able to execute Glare IV.</para> +/// </summary> +SacredSight_4326 = 4326, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4327"><strong>Seraphism</strong></see> ↑ (SCH) +/// <para>Broil IV is upgraded to Seraphic Halo.</para> +/// </summary> +Seraphism_4327 = 4327, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4328"><strong>Lady of Crowns</strong></see> ↑ (AST) +/// <para>The Lady of Crowns card is drawn.</para> +/// </summary> +LadyOfCrowns_4328 = 4328, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4329"><strong>Lord of Crowns</strong></see> ↑ (AST) +/// <para>The Lord of Crowns card is drawn.</para> +/// </summary> +LordOfCrowns_4329 = 4329, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4330"><strong>Epicycle</strong></see> ↑ (AST) +/// <para>A magicked barrier is nullifying damage.</para> +/// </summary> +Epicycle = 4330, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4331"><strong>Retrograde Ready</strong></see> ↑ (AST) +/// <para>Able to execute Retrograde.</para> +/// </summary> +RetrogradeReady = 4331, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4332"><strong>Divining</strong></see> ↑ (AST) +/// <para>Able to execute Oracle.</para> +/// </summary> +Divining_4332 = 4332, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4333"><strong>Lethargy</strong></see> ↓ (BLM) +/// <para>Damage dealt is reduced.</para> +/// </summary> +Lethargy_4333 = 4333, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4334 = 4334, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4335 = 4335, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4336 = 4336, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4337 = 4337, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4338 = 4338, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4339 = 4339, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4340"><strong>Bind</strong></see> ↓ (All Classes) +/// <para>Unable to move.</para> +/// </summary> +Bind_4340 = 4340, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4341"><strong>Heavy</strong></see> ↓ (All Classes) +/// <para>Movement speed is reduced.</para> +/// </summary> +Heavy_4341 = 4341, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4342 = 4342, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4343 = 4343, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4344 = 4344, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4345 = 4345, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4346 = 4346, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4347 = 4347, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4348 = 4348, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4349 = 4349, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4350"><strong>Down for the Count</strong></see> ↓ (All Classes) +/// <para>Unable to move or execute actions.</para> +/// </summary> +DownForTheCount_4350 = 4350, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4351"><strong>Lord Unshadowed</strong></see> ↑ (All Classes) +/// <para>Unleashing true power. Damage dealt is increased.</para> +/// </summary> +LordUnshadowed = 4351, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4352"><strong>Covered</strong></see> ↑ (PLD) +/// <para>Under the protection of an ally.</para> +/// </summary> +Covered_4352 = 4352, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4353 = 4353, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4354 = 4354, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4355 = 4355, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4356 = 4356, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4357"><strong>Redrawn Domain</strong></see> ↑ (All Classes) +/// <para>Action area of effect has been altered.</para> +/// </summary> +RedrawnDomain = 4357, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4358 = 4358, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4359 = 4359, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4360 = 4360, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4361 = 4361, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4362 = 4362, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4363 = 4363, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4364 = 4364, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4365 = 4365, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4366 = 4366, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4367 = 4367, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4368 = 4368, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4369 = 4369, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4370"><strong>Damage Down</strong></see> ↓ (All Classes) +/// <para>Damage dealt is reduced.</para> +/// </summary> +DamageDown_4370 = 4370, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4371"><strong>Damage Down</strong></see> ↓ (All Classes) +/// <para>Damage dealt is reduced.</para> +/// </summary> +DamageDown_4371 = 4371, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4372"><strong>Mark of Mortality</strong></see> ↓ (All Classes) +/// <para>Branded with a mark of mortality. Damage dealt is reduced. Too many stacks will result in KO.</para> +/// </summary> +MarkOfMortality_4372 = 4372, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4374"><strong>Stun</strong></see> ↓ (All Classes) +/// <para>Unable to execute actions.</para> +/// </summary> +Stun_4374 = 4374, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4375"><strong>Vulnerability Up</strong></see> ↓ (All Classes) +/// <para>Damage taken is increased.</para> +/// </summary> +VulnerabilityUp_4375 = 4375, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4376 = 4376, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4377"><strong>Liftoff</strong></see> ↓ (All Classes) +/// <para>Cast into the air.</para> +/// </summary> +Liftoff_4377 = 4377, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4378"><strong>Stun</strong></see> ↓ (All Classes) +/// <para>Unable to execute actions.</para> +/// </summary> +Stun_4378 = 4378, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4379"><strong>Toxicosis</strong></see> ↓ (All Classes) +/// <para>Toxins are causing damage over time.</para> +/// </summary> +Toxicosis_4379 = 4379, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4380"><strong>Life Drain</strong></see> ↓ (All Classes) +/// <para>Life force is being drained, causing damage over time.</para> +/// </summary> +LifeDrain_4380 = 4380, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4382 = 4382, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4383"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) +/// <para>Fire resistance is significantly reduced.</para> +/// </summary> +FireResistanceDownIi_4383 = 4383, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4384 = 4384, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4385"><strong>Swift Sprint</strong></see> ↑ (All Classes) +/// <para>Movement speed is greatly increased.</para> +/// </summary> +SwiftSprint_4385 = 4385, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4386"><strong>Lightning Resistance Down</strong></see> ↓ (All Classes) +/// <para>Lightning resistance is reduced.</para> +/// </summary> +LightningResistanceDown_4386 = 4386, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4387 = 4387, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4388 = 4388, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4389 = 4389, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4390 = 4390, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4391 = 4391, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4392 = 4392, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4393 = 4393, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4394 = 4394, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4395 = 4395, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4396 = 4396, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4397 = 4397, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4398 = 4398, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4399"><strong>Further Ruin</strong></see> ↑ (SMN) +/// <para>Able to execute Ruin IV.</para> +/// </summary> +FurtherRuin_4399 = 4399, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4400"><strong>Crimson Strike Ready</strong></see> ↑ (SMN) +/// <para>Able to execute Crimson Strike.</para> +/// </summary> +CrimsonStrikeReady = 4400, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4401 = 4401, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4402"><strong>Seraphic Illumination</strong></see> ↑ (SCH) +/// <para>HP recovery via healing actions is increased.</para> +/// </summary> +SeraphicIllumination_4402 = 4402, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4288"><strong>Comeuppance Ready</strong></see> ↑ (DRK) -/// <para>Able to execute Comeuppance while under the effect of Blackblood.</para> +/// <see href="https://garlandtools.org/db/#status/4403"><strong>Crimson Strike Ready</strong></see> ↑ (SMN) +/// <para>Able to execute Crimson Strike.</para> /// </summary> -ComeuppanceReady = 4288, +CrimsonStrikeReady_4403 = 4403, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4289"><strong>Torcleaver Ready</strong></see> ↑ (DRK) -/// <para>Able to execute Torcleaver while under the effect of Blackblood.</para> +/// <see href="https://garlandtools.org/db/#status/4404"><strong>Nastrond Ready</strong></see> ↑ (DRG) +/// <para>Able to execute Nastrond.</para> /// </summary> -TorcleaverReady = 4289, +NastrondReady_4404 = 4404, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4290"><strong>Scorn</strong></see> ↑ (DRK) -/// <para>Able to execute Disesteem.</para> +/// <para></para> /// </summary> -Scorn_4290 = 4290, +UnnamedStatus_4405 = 4405, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4293"><strong>Ready to Raze</strong></see> ↑ (GNB) -/// <para>Able to execute Fated Brand.</para> +/// <para></para> /// </summary> -ReadyToRaze_4293 = 4293, +UnnamedStatus_4406 = 4406, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4294"><strong>Fated Brand</strong></see> ↑ (GNB) -/// <para>A magicked barrier is nullifying damage.</para> +/// <see href="https://garlandtools.org/db/#status/4407"><strong>Damage Up</strong></see> ↑ (All Classes) +/// <para>Damage dealt is increased.</para> /// </summary> -FatedBrand = 4294, +DamageUp_4407 = 4407, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4295"><strong>Heart of Corundum</strong></see> ↑ (GNB) -/// <para>Damage taken is reduced.</para> +/// <para></para> /// </summary> -HeartOfCorundum_4295 = 4295, +UnnamedStatus_4408 = 4408, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4296"><strong>Catharsis of Corundum</strong></see> ↑ (GNB) -/// <para>HP will be restored automatically upon falling below a certain level or expiration of effect duration.</para> +/// <para></para> /// </summary> -CatharsisOfCorundum_4296 = 4296, +UnnamedStatus_4409 = 4409, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4301"><strong>Fire's Rumination</strong></see> ↑ (MNK) -/// <para>Able to execute Fire's Reply.</para> +/// <see href="https://garlandtools.org/db/#status/4410"><strong>Invincibility</strong></see> ↑ (All Classes) +/// <para>Invulnerable to all damage.</para> /// </summary> -FiresRumination_4301 = 4301, +Invincibility_4410 = 4410, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4302"><strong>Starcross Ready</strong></see> ↑ (DRG) -/// <para>Able to execute Starcross.</para> +/// <para></para> /// </summary> -StarcrossReady_4302 = 4302, +UnnamedStatus_4411 = 4411, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4303"><strong>Dokumori</strong></see> ↓ (NIN) -/// <para>Damage taken is increased.</para> +/// <para></para> /// </summary> -Dokumori_4303 = 4303, +UnnamedStatus_4412 = 4412, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4304"><strong>Doton</strong></see> ↑ (NIN) -/// <para>Damage taken is reduced.</para> +/// <para></para> /// </summary> -Doton_4304 = 4304, +UnnamedStatus_4413 = 4413, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4305"><strong>Zesho Meppo Ready</strong></see> ↑ (NIN) -/// <para>Able to execute Zesho Meppo.</para> +/// <para></para> /// </summary> -ZeshoMeppoReady = 4305, +UnnamedStatus_4414 = 4414, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4306"><strong>Debana</strong></see> ↓ (SAM) -/// <para>Damage taken from the samurai who applied this effect is increased.</para> +/// <para></para> /// </summary> -Debana = 4306, +UnnamedStatus_4415 = 4415, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4307"><strong>Executioner's Guillotine Ready</strong></see> ↑ (RPR) -/// <para>Able to execute Executioner's Guillotine.</para> +/// <see href="https://garlandtools.org/db/#status/4416"><strong>Uninterrupted</strong></see> ↑ (All Classes) +/// <para>Actions cannot be interrupted.</para> /// </summary> -ExecutionersGuillotineReady = 4307, +Uninterrupted = 4416, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4308"><strong>Death Warrant</strong></see> ↑ (RPR) -/// <para>Currently afflicting an enemy with Death Warrant.</para> +/// <see href="https://garlandtools.org/db/#status/4417"><strong>Forward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the front.</para> /// </summary> -DeathWarrant_4308 = 4308, +ForwardOmen_4417 = 4417, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4309"><strong>Perfectio Parata</strong></see> ↑ (RPR) -/// <para>Able to execute Perfectio.</para> +/// <see href="https://garlandtools.org/db/#status/4418"><strong>Rearward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the rear.</para> /// </summary> -PerfectioParata_4309 = 4309, +RearwardOmen_4418 = 4418, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4312"><strong>Encore of Light Ready</strong></see> ↑ (BRD) -/// <para>Able to execute Encore of Light.</para> +/// <see href="https://garlandtools.org/db/#status/4419"><strong>Leftward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the left.</para> /// </summary> -EncoreOfLightReady = 4312, +LeftwardOmen_4419 = 4419, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4313"><strong>Solo Step</strong></see> ↑ (DNC) -/// <para>Next Saber Dance will be upgraded to Dance of the Dawn.</para> +/// <see href="https://garlandtools.org/db/#status/4420"><strong>Rightward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the right.</para> /// </summary> -SoloStep = 4313, +RightwardOmen_4420 = 4420, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4314"><strong>Dance of the Dawn</strong></see> ↑ (DNC) -/// <para>Limit gauge is gradually filling.</para> +/// <see href="https://garlandtools.org/db/#status/4421"><strong>Forward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the front.</para> /// </summary> -DanceOfTheDawn = 4314, +ForwardOmen_4421 = 4421, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4315"><strong>Wreath of Fire</strong></see> ↑ (BLM) -/// <para>Certain actions are dealing additional damage to target and nearby enemies.</para> +/// <see href="https://garlandtools.org/db/#status/4422"><strong>Rearward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the rear.</para> /// </summary> -WreathOfFire = 4315, +RearwardOmen_4422 = 4422, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4316"><strong>Wreath of Ice</strong></see> ↑ (BLM) -/// <para>Damage taken is reduced while countering attacks.</para> +/// <see href="https://garlandtools.org/db/#status/4423"><strong>Leftward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the left.</para> /// </summary> -WreathOfIce = 4316, +LeftwardOmen_4423 = 4423, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4317"><strong>Elemental Star</strong></see> ↑ (BLM) -/// <para>Able to execute Flare Star and Frost Star.</para> +/// <para></para> /// </summary> -ElementalStar = 4317, +UnnamedStatus_4424 = 4424, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4319"><strong>Scorch</strong></see> ↓ (RDM) -/// <para>Sustaining damage over time.</para> +/// <see href="https://garlandtools.org/db/#status/4425"><strong>Rightward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the right.</para> /// </summary> -Scorch = 4319, +RightwardOmen_4425 = 4425, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4320"><strong>Forte</strong></see> ↑ (RDM) -/// <para>Damage taken is reduced, and a magicked barrier is nullifying damage.</para> +/// <see href="https://garlandtools.org/db/#status/4426"><strong>Forward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the front.</para> /// </summary> -Forte = 4320, +ForwardOmen_4426 = 4426, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4321"><strong>Thorned Flourish</strong></see> ↑ (RDM) -/// <para>Able to execute Vice of Thorns.</para> +/// <see href="https://garlandtools.org/db/#status/4427"><strong>Rearward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the rear.</para> +/// </summary> +RearwardOmen_4427 = 4427, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4428"><strong>Leftward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the left.</para> +/// </summary> +LeftwardOmen_4428 = 4428, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4429"><strong>Rightward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the right.</para> +/// </summary> +RightwardOmen_4429 = 4429, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4430"><strong>Leftward Omen</strong></see> ↑ (All Classes) +/// <para>The next attack will be executed from the left.</para> +/// </summary> +LeftwardOmen_4430 = 4430, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4431 = 4431, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4432 = 4432, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4433"><strong>Stun</strong></see> ↓ (All Classes) +/// <para>Unable to execute actions.</para> +/// </summary> +Stun_4433 = 4433, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4434 = 4434, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4435 = 4435, + +/// <summary> +/// <see href="https://garlandtools.org/db/#status/4436"><strong>Vulnerability Down</strong></see> ↑ (All Classes) +/// <para>Damage taken is reduced.</para> +/// </summary> +VulnerabilityDown_4436 = 4436, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4437 = 4437, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4438 = 4438, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4439 = 4439, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4440 = 4440, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4441 = 4441, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4442 = 4442, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4443 = 4443, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4444 = 4444, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4445 = 4445, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4446 = 4446, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4447 = 4447, + +/// <summary> +/// <para></para> +/// </summary> +UnnamedStatus_4448 = 4448, + +/// <summary> +/// <para></para> /// </summary> -ThornedFlourish_4321 = 4321, +UnnamedStatus_4449 = 4449, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4322"><strong>Prefulgence Ready</strong></see> ↑ (RDM) -/// <para>Able to execute Prefulgence.</para> +/// <para></para> /// </summary> -PrefulgenceReady_4322 = 4322, +UnnamedStatus_4450 = 4450, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4324"><strong>Quick Sketch</strong></see> ↑ (PCT) -/// <para>Next motif is rendered instantly.</para> +/// <para></para> /// </summary> -QuickSketch = 4324, +UnnamedStatus_4451 = 4451, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4326"><strong>Sacred Sight</strong></see> ↑ (WHM) -/// <para>Able to execute Glare IV.</para> +/// <para></para> /// </summary> -SacredSight_4326 = 4326, +UnnamedStatus_4452 = 4452, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4327"><strong>Seraphism</strong></see> ↑ (SCH) -/// <para>Broil IV is upgraded to Seraphic Halo.</para> +/// <para></para> /// </summary> -Seraphism_4327 = 4327, +UnnamedStatus_4453 = 4453, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4328"><strong>Lady of Crowns</strong></see> ↑ (AST) -/// <para>The Lady of Crowns card is drawn.</para> +/// <para></para> /// </summary> -LadyOfCrowns_4328 = 4328, +UnnamedStatus_4454 = 4454, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4329"><strong>Lord of Crowns</strong></see> ↑ (AST) -/// <para>The Lord of Crowns card is drawn.</para> +/// <para></para> /// </summary> -LordOfCrowns_4329 = 4329, +UnnamedStatus_4455 = 4455, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4330"><strong>Epicycle</strong></see> ↑ (AST) -/// <para>A magicked barrier is nullifying damage.</para> +/// <para></para> /// </summary> -Epicycle = 4330, +UnnamedStatus_4456 = 4456, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4331"><strong>Retrograde Ready</strong></see> ↑ (AST) -/// <para>Able to execute Retrograde.</para> +/// <para></para> /// </summary> -RetrogradeReady = 4331, +UnnamedStatus_4457 = 4457, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4332"><strong>Divining</strong></see> ↑ (AST) -/// <para>Able to execute Oracle.</para> +/// <para></para> /// </summary> -Divining_4332 = 4332, +UnnamedStatus_4458 = 4458, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4333"><strong>Lethargy</strong></see> ↓ (BLM) -/// <para>Damage dealt is reduced.</para> +/// <para></para> /// </summary> -Lethargy_4333 = 4333, +UnnamedStatus_4459 = 4459, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4340"><strong>Bind</strong></see> ↓ (All Classes) -/// <para>Unable to move.</para> +/// <para></para> /// </summary> -Bind_4340 = 4340, +UnnamedStatus_4460 = 4460, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4341"><strong>Heavy</strong></see> ↓ (All Classes) -/// <para>Movement speed is reduced.</para> +/// <para></para> /// </summary> -Heavy_4341 = 4341, +UnnamedStatus_4461 = 4461, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4350"><strong>Down for the Count</strong></see> ↓ (All Classes) -/// <para>Unable to move or execute actions.</para> +/// <para></para> /// </summary> -DownForTheCount_4350 = 4350, +UnnamedStatus_4462 = 4462, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4351"><strong>Lord Unshadowed</strong></see> ↑ (All Classes) -/// <para>Unleashing true power. Damage dealt is increased.</para> +/// <para></para> /// </summary> -LordUnshadowed = 4351, +UnnamedStatus_4463 = 4463, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4352"><strong>Covered</strong></see> ↑ (PLD) -/// <para>Under the protection of an ally.</para> +/// <para></para> /// </summary> -Covered_4352 = 4352, +UnnamedStatus_4464 = 4464, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4357"><strong>Redrawn Domain</strong></see> ↑ (All Classes) -/// <para>Action area of effect has been altered.</para> +/// <para></para> /// </summary> -RedrawnDomain = 4357, +UnnamedStatus_4465 = 4465, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4370"><strong>Damage Down</strong></see> ↓ (All Classes) -/// <para>Damage dealt is reduced.</para> +/// <para></para> /// </summary> -DamageDown_4370 = 4370, +UnnamedStatus_4466 = 4466, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4371"><strong>Damage Down</strong></see> ↓ (All Classes) -/// <para>Damage dealt is reduced.</para> +/// <para></para> /// </summary> -DamageDown_4371 = 4371, +UnnamedStatus_4467 = 4467, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4372"><strong>Mark of Mortality</strong></see> ↓ (All Classes) -/// <para>Branded with a mark of mortality. Damage dealt is reduced. Too many stacks will result in KO.</para> +/// <para></para> /// </summary> -MarkOfMortality_4372 = 4372, +UnnamedStatus_4468 = 4468, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4374"><strong>Stun</strong></see> ↓ (All Classes) -/// <para>Unable to execute actions.</para> +/// <para></para> /// </summary> -Stun_4374 = 4374, +UnnamedStatus_4469 = 4469, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4375"><strong>Vulnerability Up</strong></see> ↓ (All Classes) -/// <para>Damage taken is increased.</para> +/// <para></para> /// </summary> -VulnerabilityUp_4375 = 4375, +UnnamedStatus_4470 = 4470, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4377"><strong>Liftoff</strong></see> ↓ (All Classes) -/// <para>Cast into the air.</para> +/// <para></para> /// </summary> -Liftoff_4377 = 4377, +UnnamedStatus_4471 = 4471, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4378"><strong>Stun</strong></see> ↓ (All Classes) -/// <para>Unable to execute actions.</para> +/// <para></para> /// </summary> -Stun_4378 = 4378, +UnnamedStatus_4472 = 4472, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4379"><strong>Toxicosis</strong></see> ↓ (All Classes) -/// <para>Toxins are causing damage over time.</para> +/// <para></para> /// </summary> -Toxicosis_4379 = 4379, +UnnamedStatus_4473 = 4473, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4380"><strong>Life Drain</strong></see> ↓ (All Classes) -/// <para>Life force is being drained, causing damage over time.</para> +/// <para></para> /// </summary> -LifeDrain_4380 = 4380, +UnnamedStatus_4474 = 4474, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4383"><strong>Fire Resistance Down II</strong></see> ↓ (All Classes) -/// <para>Fire resistance is significantly reduced.</para> +/// <para></para> /// </summary> -FireResistanceDownIi_4383 = 4383, +UnnamedStatus_4475 = 4475, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4385"><strong>Swift Sprint</strong></see> ↑ (All Classes) -/// <para>Movement speed is greatly increased.</para> +/// <para></para> /// </summary> -SwiftSprint_4385 = 4385, +UnnamedStatus_4476 = 4476, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4386"><strong>Lightning Resistance Down</strong></see> ↓ (All Classes) -/// <para>Lightning resistance is reduced.</para> +/// <para></para> /// </summary> -LightningResistanceDown_4386 = 4386, +UnnamedStatus_4477 = 4477, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4399"><strong>Further Ruin</strong></see> ↑ (SMN) -/// <para>Able to execute Ruin IV.</para> +/// <para></para> /// </summary> -FurtherRuin_4399 = 4399, +UnnamedStatus_4478 = 4478, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4400"><strong>Crimson Strike Ready</strong></see> ↑ (SMN) -/// <para>Able to execute Crimson Strike.</para> +/// <para></para> /// </summary> -CrimsonStrikeReady = 4400, +UnnamedStatus_4479 = 4479, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4402"><strong>Seraphic Illumination</strong></see> ↑ (SCH) -/// <para>HP recovery via healing actions is increased.</para> +/// <para></para> /// </summary> -SeraphicIllumination_4402 = 4402, +UnnamedStatus_4480 = 4480, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4403"><strong>Crimson Strike Ready</strong></see> ↑ (SMN) -/// <para>Able to execute Crimson Strike.</para> +/// <para></para> /// </summary> -CrimsonStrikeReady_4403 = 4403, +UnnamedStatus_4481 = 4481, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4404"><strong>Nastrond Ready</strong></see> ↑ (DRG) -/// <para>Able to execute Nastrond.</para> +/// <para></para> /// </summary> -NastrondReady_4404 = 4404, +UnnamedStatus_4482 = 4482, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4407"><strong>Damage Up</strong></see> ↑ (All Classes) -/// <para>Damage dealt is increased.</para> +/// <para></para> /// </summary> -DamageUp_4407 = 4407, +UnnamedStatus_4483 = 4483, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4410"><strong>Invincibility</strong></see> ↑ (All Classes) -/// <para>Invulnerable to all damage.</para> +/// <para></para> /// </summary> -Invincibility_4410 = 4410, +UnnamedStatus_4484 = 4484, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4416"><strong>Uninterrupted</strong></see> ↑ (All Classes) -/// <para>Actions cannot be interrupted.</para> +/// <para></para> /// </summary> -Uninterrupted = 4416, +UnnamedStatus_4485 = 4485, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4417"><strong>Forward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the front.</para> +/// <para></para> /// </summary> -ForwardOmen_4417 = 4417, +UnnamedStatus_4486 = 4486, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4418"><strong>Rearward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the rear.</para> +/// <para></para> /// </summary> -RearwardOmen_4418 = 4418, +UnnamedStatus_4487 = 4487, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4419"><strong>Leftward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the left.</para> +/// <para></para> /// </summary> -LeftwardOmen_4419 = 4419, +UnnamedStatus_4488 = 4488, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4420"><strong>Rightward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the right.</para> +/// <para></para> /// </summary> -RightwardOmen_4420 = 4420, +UnnamedStatus_4489 = 4489, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4421"><strong>Forward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the front.</para> +/// <para></para> /// </summary> -ForwardOmen_4421 = 4421, +UnnamedStatus_4490 = 4490, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4422"><strong>Rearward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the rear.</para> +/// <para></para> /// </summary> -RearwardOmen_4422 = 4422, +UnnamedStatus_4491 = 4491, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4423"><strong>Leftward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the left.</para> +/// <para></para> /// </summary> -LeftwardOmen_4423 = 4423, +UnnamedStatus_4492 = 4492, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4425"><strong>Rightward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the right.</para> +/// <para></para> /// </summary> -RightwardOmen_4425 = 4425, +UnnamedStatus_4493 = 4493, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4426"><strong>Forward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the front.</para> +/// <para></para> /// </summary> -ForwardOmen_4426 = 4426, +UnnamedStatus_4494 = 4494, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4427"><strong>Rearward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the rear.</para> +/// <para></para> /// </summary> -RearwardOmen_4427 = 4427, +UnnamedStatus_4495 = 4495, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4428"><strong>Leftward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the left.</para> +/// <para></para> /// </summary> -LeftwardOmen_4428 = 4428, +UnnamedStatus_4496 = 4496, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4429"><strong>Rightward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the right.</para> +/// <para></para> /// </summary> -RightwardOmen_4429 = 4429, +UnnamedStatus_4497 = 4497, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4430"><strong>Leftward Omen</strong></see> ↑ (All Classes) -/// <para>The next attack will be executed from the left.</para> +/// <para></para> /// </summary> -LeftwardOmen_4430 = 4430, +UnnamedStatus_4498 = 4498, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4433"><strong>Stun</strong></see> ↓ (All Classes) -/// <para>Unable to execute actions.</para> +/// <para></para> /// </summary> -Stun_4433 = 4433, +UnnamedStatus_4499 = 4499, + /// <summary> -/// <see href="https://garlandtools.org/db/#status/4436"><strong>Vulnerability Down</strong></see> ↑ (All Classes) -/// <para>Damage taken is reduced.</para> +/// <para></para> /// </summary> -VulnerabilityDown_4436 = 4436, +UnnamedStatus_4500 = 4500, + /// <summary> diff --git a/RotationSolver.SourceGenerators/StaticCodeGenerator.cs b/RotationSolver.SourceGenerators/StaticCodeGenerator.cs index a95a604b9..79cfc52b3 100644 --- a/RotationSolver.SourceGenerators/StaticCodeGenerator.cs +++ b/RotationSolver.SourceGenerators/StaticCodeGenerator.cs @@ -1,11 +1,19 @@ using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; +using System; namespace RotationSolver.SourceGenerators; +/// +/// A source generator that generates static code for various enums and classes. +/// [Generator(LanguageNames.CSharp)] public class StaticCodeGenerator : IIncrementalGenerator { + /// + /// Initializes the generator with the provided context. + /// + /// The initialization context. public void Initialize(IncrementalGeneratorInitializationContext context) { var provider = context.SyntaxProvider.CreateSyntaxProvider( @@ -17,17 +25,38 @@ public void Initialize(IncrementalGeneratorInitializationContext context) context.RegisterSourceOutput(compilation, (spc, source) => Execute(spc)); } + /// + /// Executes the source generation process. + /// + /// The source production context. private static void Execute(SourceProductionContext context) { - GenerateStatus(context); - GenerateActionID(context); - GenerateContentType(context); - GenerateActionCate(context); - GenerateBaseRotation(context); - GenerateRotations(context); - GenerateOpCode(context); + try + { + GenerateStatus(context); + GenerateActionID(context); + GenerateContentType(context); + GenerateActionCate(context); + GenerateBaseRotation(context); + GenerateRotations(context); + GenerateOpCode(context); + } + catch (Exception ex) + { + context.ReportDiagnostic(Diagnostic.Create(new DiagnosticDescriptor( + "SG0001", + "Source Generation Error", + $"An error occurred during source generation: {ex.Message}", + "SourceGenerator", + DiagnosticSeverity.Error, + isEnabledByDefault: true), Location.None)); + } } + /// + /// Generates the OpCode enum source code. + /// + /// The source production context. private static void GenerateOpCode(SourceProductionContext context) { var code = $$""" @@ -49,6 +78,10 @@ public enum OpCode : ushort context.AddSource("OpCode.g.cs", code); } + /// + /// Generates the StatusID enum source code. + /// + /// The source production context. private static void GenerateStatus(SourceProductionContext context) { var code = $$""" @@ -70,6 +103,10 @@ public enum StatusID : ushort context.AddSource("StatusID.g.cs", code); } + /// + /// Generates the TerritoryContentType enum source code. + /// + /// The source production context. private static void GenerateContentType(SourceProductionContext context) { var code = $$""" @@ -91,6 +128,10 @@ public enum TerritoryContentType : byte context.AddSource("TerritoryContentType.g.cs", code); } + /// + /// Generates the ActionCate enum source code. + /// + /// The source production context. private static void GenerateActionCate(SourceProductionContext context) { var code = $$""" @@ -112,6 +153,10 @@ public enum ActionCate : byte context.AddSource("ActionCate.g.cs", code); } + /// + /// Generates the ActionID enum source code. + /// + /// The source production context. private static void GenerateActionID(SourceProductionContext context) { var code = $$""" @@ -133,14 +178,22 @@ public enum ActionID : uint context.AddSource("ActionID.g.cs", code); } + /// + /// Generates the base rotation source code. + /// + /// The source production context. private static void GenerateBaseRotation(SourceProductionContext context) { context.AddSource("CustomRotation.g.cs", Properties.Resources.Action); context.AddSource("DutyRotation.g.cs", Properties.Resources.DutyAction); } + /// + /// Generates the rotations source code. + /// + /// The source production context. private static void GenerateRotations(SourceProductionContext context) { - context.AddSource($"BaseRotations.g.cs", Properties.Resources.Rotation); + context.AddSource("BaseRotations.g.cs", Properties.Resources.Rotation); } -} +} \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/Util.cs b/RotationSolver.SourceGenerators/Util.cs index 38baa57f2..32bf2d0b6 100644 --- a/RotationSolver.SourceGenerators/Util.cs +++ b/RotationSolver.SourceGenerators/Util.cs @@ -2,100 +2,131 @@ using System.Text; using System.Text.RegularExpressions; -namespace RotationSolver.SourceGenerators; -internal static class Util +namespace RotationSolver.SourceGenerators { - public static TS? GetParent(this SyntaxNode? node) where TS : SyntaxNode + /// + /// Utility class for various helper methods. + /// + internal static class Util { - if (node == null) return null; - if (node is TS result) return result; - return GetParent(node.Parent); - } - - public static string GetFullMetadataName(this ISymbol s) - { - if (s == null || s is INamespaceSymbol) + /// + /// Gets the parent node of the specified type. + /// + /// The type of the parent node. + /// The starting syntax node. + /// The parent node of the specified type, or null if not found. + public static TS? GetParent(this SyntaxNode? node) where TS : SyntaxNode { - return string.Empty; + if (node == null) return null; + if (node is TS result) return result; + return GetParent(node.Parent); } - while (s != null && s is not ITypeSymbol) + /// + /// Gets the full metadata name of the specified symbol. + /// + /// The symbol. + /// The full metadata name of the symbol. + public static string GetFullMetadataName(this ISymbol s) { - s = s.ContainingSymbol; - } - - if (s == null) - { - return string.Empty; - } - - var sb = new StringBuilder(s.GetTypeSymbolName()); + if (s == null || s is INamespaceSymbol) + { + return string.Empty; + } - s = s.ContainingSymbol; - while (!IsRootNamespace(s)) - { - try + while (s is not ITypeSymbol) { - sb.Insert(0, s.OriginalDefinition.ToDisplayString(SymbolDisplayFormat.MinimallyQualifiedFormat) + '.'); + s = s.ContainingSymbol; } - catch + + if (s == null) { - break; + return string.Empty; } + var sb = new StringBuilder(s.GetTypeSymbolName()); + s = s.ContainingSymbol; - } + while (!IsRootNamespace(s)) + { + try + { + sb.Insert(0, s.OriginalDefinition.ToDisplayString(SymbolDisplayFormat.MinimallyQualifiedFormat) + '.'); + } + catch + { + break; + } + + s = s.ContainingSymbol; + } - return sb.ToString(); + return sb.ToString(); - static bool IsRootNamespace(ISymbol symbol) - { - return symbol is INamespaceSymbol s && s.IsGlobalNamespace; + static bool IsRootNamespace(ISymbol symbol) + { + return symbol is INamespaceSymbol s && s.IsGlobalNamespace; + } } - } - private static string GetTypeSymbolName(this ISymbol symbol) - { - if (symbol is IArrayTypeSymbol arrayTypeSymbol) //Array + /// + /// Gets the type symbol name of the specified symbol. + /// + /// The symbol. + /// The type symbol name. + private static string GetTypeSymbolName(this ISymbol symbol) { - return arrayTypeSymbol.ElementType.GetFullMetadataName() + "[]"; - } + if (symbol is IArrayTypeSymbol arrayTypeSymbol) // Array + { + return arrayTypeSymbol.ElementType.GetFullMetadataName() + "[]"; + } - var str = symbol.MetadataName; - if (symbol is INamedTypeSymbol symbolType)//Generic - { - var strs = str.Split('`'); - if (strs.Length < 2) return str; - str = strs[0]; + var str = symbol.MetadataName; + if (symbol is INamedTypeSymbol symbolType) // Generic + { + var strs = str.Split('`'); + if (strs.Length < 2) return str; + str = strs[0]; - str += "<" + string.Join(", ", symbolType.TypeArguments.Select(p => p.GetFullMetadataName())) + ">"; + str += "<" + string.Join(", ", symbolType.TypeArguments.Select(p => p.GetFullMetadataName())) + ">"; + } + return str; } - return str; - } - - public static string Table(this string str) => " " + str.Replace("\n", "\n "); - - public static string ToPascalCase(this string input) - { - return string.Join(".", input.Split('.').Select(ConvertToPascalCase)); - static string ConvertToPascalCase(string input) + /// + /// Indents each line of the string with four spaces. + /// + /// The input string. + /// The indented string. + public static string Table(this string str) => " " + str.Replace("\n", "\n "); + + /// + /// Converts the input string to PascalCase. + /// + /// The input string. + /// The PascalCase string. + public static string ToPascalCase(this string input) { - Regex invalidCharsRgx = new(@"[^_a-zA-Z0-9]"); - Regex whiteSpace = new(@"(?<=\s)"); - Regex startsWithLowerCaseChar = new("^[a-z]"); - Regex firstCharFollowedByUpperCasesOnly = new("(?<=[A-Z])[A-Z0-9]+$"); - Regex lowerCaseNextToNumber = new("(?<=[0-9])[a-z]"); - Regex upperCaseInside = new("(?<=[A-Z])[A-Z]+?((?=[A-Z][a-z])|(?=[0-9]))"); - - var pascalCase = invalidCharsRgx.Replace(whiteSpace.Replace(input, "_"), string.Empty) - .Split(new char[] { '_' }, StringSplitOptions.RemoveEmptyEntries) - .Select(w => startsWithLowerCaseChar.Replace(w, m => m.Value.ToUpper())) - .Select(w => firstCharFollowedByUpperCasesOnly.Replace(w, m => m.Value.ToLower())) - .Select(w => lowerCaseNextToNumber.Replace(w, m => m.Value.ToUpper())) - .Select(w => upperCaseInside.Replace(w, m => m.Value.ToLower())); - - return string.Concat(pascalCase); + return string.Join(".", input.Split('.').Select(ConvertToPascalCase)); + + static string ConvertToPascalCase(string input) + { + Regex invalidCharsRgx = new(@"[^_a-zA-Z0-9]"); + Regex whiteSpace = new(@"(?<=\s)"); + Regex startsWithLowerCaseChar = new("^[a-z]"); + Regex firstCharFollowedByUpperCasesOnly = new("(?<=[A-Z])[A-Z0-9]+$"); + Regex lowerCaseNextToNumber = new("(?<=[0-9])[a-z]"); + Regex upperCaseInside = new("(?<=[A-Z])[A-Z]+?((?=[A-Z][a-z])|(?=[0-9]))"); + + var pascalCase = invalidCharsRgx.Replace(whiteSpace.Replace(input, "_"), string.Empty) + .Split(new char[] { '_' }, StringSplitOptions.RemoveEmptyEntries) + .Select(w => startsWithLowerCaseChar.Replace(w, m => m.Value.ToUpper())) + .Select(w => firstCharFollowedByUpperCasesOnly.Replace(w, m => m.Value.ToLower())) + .Select(w => lowerCaseNextToNumber.Replace(w, m => m.Value.ToUpper())) + .Select(w => upperCaseInside.Replace(w, m => m.Value.ToLower())); + + return string.Concat(pascalCase); + } } } -} +} \ No newline at end of file diff --git a/RotationSolver/Commands/RSCommands_Actions.cs b/RotationSolver/Commands/RSCommands_Actions.cs index 187249820..49e51fd38 100644 --- a/RotationSolver/Commands/RSCommands_Actions.cs +++ b/RotationSolver/Commands/RSCommands_Actions.cs @@ -184,7 +184,7 @@ internal static void UpdateRotationState() } var target = DataCenter.AllHostileTargets - .FirstOrDefault(t => t != null && t.TargetObjectId == playerObject.GameObjectId); + .FirstOrDefault(t => t != null && t is IBattleChara battleChara && battleChara.TargetObjectId == playerObject.GameObjectId); if (Svc.Condition[ConditionFlag.LoggingOut] || (Service.Config.AutoOffWhenDead && DataCenter.Territory?.IsPvP == false && Player.Available && playerObject.CurrentHp == 0) || @@ -256,5 +256,6 @@ internal static void UpdateRotationState() } } + } } diff --git a/RotationSolver/Updaters/TargetUpdater.cs b/RotationSolver/Updaters/TargetUpdater.cs index 2b717f889..4cc752210 100644 --- a/RotationSolver/Updaters/TargetUpdater.cs +++ b/RotationSolver/Updaters/TargetUpdater.cs @@ -142,8 +142,6 @@ private static List GetFriendlyNPCs() private static List GetAllHostileTargets() { var hostileTargets = new List(); - var strongOfShieldPositional = EnemyPositional.Front; - try { foreach (var target in DataCenter.AllTargets) @@ -152,7 +150,6 @@ private static List GetAllHostileTargets() if (!target.IsEnemy() || !target.IsTargetable) continue; if (target.StatusList != null && target.StatusList.Any(StatusHelper.IsInvincible) && (DataCenter.IsPvP && !Service.Config.IgnorePvPInvincibility || !DataCenter.IsPvP)) continue; - if (target.HasStatus(true, StatusID.StrongOfShield) && strongOfShieldPositional != target.FindEnemyPositional()) continue; hostileTargets.Add(target); }